Skip to content

Instantly share code, notes, and snippets.

View Xplorer001's full-sized avatar

Sandeep Patil Xplorer001

  • ExploreEmbedded
  • Bangalore, India
View GitHub Profile
/*
* This sketch demonstrates how to scan WiFi networks.
* The API is almost the same as with the WiFi Shield library,
* the most obvious difference being the different file you need to include:
*/
#include "ESP8266WiFi.h"
void setup() {
Serial.begin(115200);
#include "glcd.h" //User defined LCD library which conatins the lcd routines
/* start the main program */
void main()
{
GLCD_Init();
GLCD_Printf("Hello World!");
GLCD_GoToLine(4);
GLCD_Printf("*&^%$#@!~");
GLCD_GoToLine(7);
GLCD_DisplayString("Well this is the end!");
#include"adc.h"
#include"delay.h"
/***************************************************************************************************