ugfx/drivers/multiple/uGFXnetESP8266
inmarket 81505c8be2 New uGFXnetESP8266 driver. A gdisp driver for the ESP8266.
Not tested yet.
2016-08-30 19:12:46 +10:00
..
driver.mk New uGFXnetESP8266 driver. A gdisp driver for the ESP8266. 2016-08-30 19:12:46 +10:00
gdisp_lld_config.h New uGFXnetESP8266 driver. A gdisp driver for the ESP8266. 2016-08-30 19:12:46 +10:00
gdisp_lld_uGFXnetESP8266.cpp New uGFXnetESP8266 driver. A gdisp driver for the ESP8266. 2016-08-30 19:12:46 +10:00
ginput_lld_mouse_config.h New uGFXnetESP8266 driver. A gdisp driver for the ESP8266. 2016-08-30 19:12:46 +10:00
readme.txt New uGFXnetESP8266 driver. A gdisp driver for the ESP8266. 2016-08-30 19:12:46 +10:00
uGFXnetProtocol.h New uGFXnetESP8266 driver. A gdisp driver for the ESP8266. 2016-08-30 19:12:46 +10:00

readme.txt

To use this driver:

This driver is special in that it implements both the gdisp low level driver
and a touchscreen driver.

1. Add in your gfxconf.h:
	a) #define GFX_USE_GDISP		TRUE
	b) Optionally #define GFX_USE_GINPUT			TRUE
					#define GINPUT_USE_MOUSE		TRUE
	c) Any optional high level driver defines (see gdisp.h) eg: GDISP_NEED_MULTITHREAD
	d) Optionally the following (with appropriate values):
		#define GDISP_SCREEN_WIDTH					640			// Virtual display width
		#define GDISP_SCREEN_HEIGHT					480			// Virtual display height
		#define GDISP_GFXNET_WIFI_INIT_FUNCTION		MyWifiStart	// Optionally specify if you want to
																//  use your own wifi startup routine.
																// Prototype...
																//    extern "C" void MyWifiStart(WifiServer *ws);
		#define GDISP_GFXNET_WIFI_SSID				"ssid"		// Your wifi SSID.
																//  Not required if GDISP_GFXNET_WIFI_INIT_FUNCTION
																//  is specified.
		#define GDISP_GFXNET_WIFI_PASSWORD			"password"	// Your wifi password.
																//  Not required if GDISP_GFXNET_WIFI_INIT_FUNCTION
																//  is specified.
		#define GDISP_DONT_WAIT_FOR_NET_DISPLAY		FALSE		// Don't halt waiting for the first connection
		$define GDISP_GFXNET_PORT					13001		// The TCP port the display sits on


2. To your makefile (or Library) add the following lines:
	include $(GFXLIB)/gfx.mk
	include $(GFXLIB)/drivers/multiple/uGFXnetESP8266/driver.mk