├── Digispark-LCD ├── Arduino │ └── libraries │ │ └── DigisparkUSB │ │ ├── DigiUSB.h │ │ └── usbconfig.h ├── EventGhost │ └── plugins │ │ └── Digispark-LCD │ │ ├── __init__.py │ │ └── arduino │ │ ├── __init__.py │ │ ├── libusb-1.0.dll │ │ └── usbdevice.py ├── Readme.md ├── fritzing │ ├── Digispark-LCD.fzz │ └── Digispark-LCD.png └── sketch │ └── Digispark-LCD.ino ├── Digispark-RC5 ├── Arduino │ └── libraries │ │ └── RC5USB │ │ ├── LICENSE │ │ ├── RC5USB.cpp │ │ ├── RC5USB.h │ │ ├── README.md │ │ └── examples │ │ └── Digispark-RC5 │ │ └── Digispark-RC5.ino ├── EventGhost │ └── plugins │ │ └── Digispark-RC5 │ │ ├── __init__.py │ │ └── arduino │ │ ├── __init__.py │ │ ├── libusb-1.0.dll │ │ └── usbdevice.py ├── Readme.md └── fritzing │ ├── RC5 Sketch.fzz │ └── RC5 Sketch.png ├── ESP-IO-BBT ├── Arduino │ ├── ESP-IO-BBT.ino │ ├── data │ │ ├── auth │ │ │ ├── control.htm │ │ │ ├── control.js │ │ │ ├── set.js │ │ │ └── settings.htm │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── glyph.eot │ │ │ ├── glyph.svg │ │ │ ├── glyph.ttf │ │ │ ├── glyph.woff │ │ │ └── glyph.woff2 │ │ ├── index.htm │ │ ├── load.gif │ │ └── required.css.gz │ └── demo │ │ ├── BeebotteChannel.png │ │ ├── Control_htm-1184x465.png │ │ ├── DeviceStatus-1184x580.png │ │ ├── EventGhostLog.png │ │ ├── PluginDialog.png │ │ ├── SetPinStateDialog.png │ │ ├── Settings_htm-1184x1669.png │ │ └── index_htm-1184x216.png ├── EventGhost │ └── plugins │ │ └── ESP-IO-BBT │ │ ├── NodeMcu700x525.png │ │ ├── WeMos403x345.png │ │ ├── __init__.py │ │ └── lib │ │ └── beebotte_050 │ │ └── __init__.py └── README.md ├── ESP-IO ├── Arduino │ ├── ESP-IO.ino │ ├── data │ │ ├── auth │ │ │ ├── control.htm │ │ │ ├── control.js │ │ │ ├── set.js │ │ │ └── settings.htm │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── glyph.eot │ │ │ ├── glyph.svg │ │ │ ├── glyph.ttf │ │ │ ├── glyph.woff │ │ │ └── glyph.woff2 │ │ ├── index.htm │ │ ├── load.gif │ │ └── required.css.gz │ └── demo │ │ ├── actiondialog.png │ │ ├── control.png │ │ ├── devicestatus.png │ │ ├── eventgostlog.png │ │ ├── index.png │ │ ├── plugindialog.png │ │ └── settings.png ├── Eventghost │ └── plugins │ │ └── ESP-IO │ │ ├── NodeMcu700x525.png │ │ ├── WeMos403x345.png │ │ ├── __init__.py │ │ └── lib │ │ └── websocket_0440 │ │ ├── __init__.py │ │ ├── _abnf.py │ │ ├── _app.py │ │ ├── _cookiejar.py │ │ ├── _core.py │ │ ├── _exceptions.py │ │ ├── _handshake.py │ │ ├── _http.py │ │ ├── _logging.py │ │ ├── _socket.py │ │ ├── _ssl_compat.py │ │ ├── _url.py │ │ ├── _utils.py │ │ └── cacert.pem └── README.md ├── ESP-OLED ├── Arduino │ ├── demo │ │ ├── BeebotteChannel.jpg │ │ ├── DeviceStatus-1192x498.jpg │ │ ├── EventGhostLog.jpg │ │ ├── Index_htm-1192x220.jpg │ │ ├── PluginDialog.jpg │ │ ├── SendMessageDialog.jpg │ │ └── Settings_htm-1192x1665.jpg │ ├── libraries │ │ ├── esp8266-oled-ssd1306 │ │ │ └── OLEDDisplay.cpp │ │ └── pubsubclient │ │ │ └── src │ │ │ └── PubSubClient.h │ └── sketch │ │ ├── ESP-OLED.ino │ │ ├── data │ │ ├── auth │ │ │ ├── set.js │ │ │ └── settings.htm │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── glyph.eot │ │ │ ├── glyph.svg │ │ │ ├── glyph.ttf │ │ │ ├── glyph.woff │ │ │ └── glyph.woff2 │ │ ├── index.htm │ │ ├── load.gif │ │ └── required.css.gz │ │ ├── fonts.h │ │ └── pitches.h ├── Eagle │ ├── esp-oled-eagle.pdf │ ├── esp-oled.brd │ └── esp-oled.sch ├── EventGhost │ └── plugins │ │ └── ESP-OLED │ │ ├── Display700x700.png │ │ ├── NodeMcu700x525.png │ │ ├── WeMos403x345.png │ │ ├── __init__.py │ │ └── lib │ │ └── beebotte_050 │ │ ├── __init__.py │ │ └── mqtt.beebotte.com.pem ├── Fritzing │ ├── ESP-OLED-Fritzing.png │ └── ESP-OLED.fzz └── README.md ├── ESP-PROG ├── Eagle │ ├── esp-prog-SMD-BOTTOM.pdf │ ├── esp-prog-SMD-BRD.pdf │ ├── esp-prog-SMD-BRD.png │ ├── esp-prog-SMD-SCH.pdf │ ├── esp-prog-SMD-SCH.png │ ├── esp-prog-SMD-TOP.pdf │ ├── esp-prog-SMD.brd │ └── esp-prog-SMD.sch ├── Images │ ├── CP2102-bottom.jpg │ ├── CP2102-top.jpg │ ├── at_work.png │ ├── esp_prog.png │ ├── flasher.jpg │ └── test.jpg └── Readme.md ├── ESP-SENSOR ├── Arduino │ ├── demo │ │ ├── EG_Events.png │ │ ├── EG_OFF.png │ │ ├── EG_ON.png │ │ ├── EG_Plugin.png │ │ ├── OFF_1184x630.png │ │ ├── ON_1184x630.png │ │ ├── bottom.png │ │ ├── development_process.png │ │ └── top.png │ ├── libraries │ │ └── pubsubclient │ │ │ └── src │ │ │ └── PubSubClient.h │ └── sketch │ │ ├── ESP-SENSOR.ino │ │ └── data │ │ ├── auth │ │ ├── control.htm │ │ ├── control.js │ │ ├── set.js │ │ └── settings.htm │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyph.eot │ │ ├── glyph.svg │ │ ├── glyph.ttf │ │ ├── glyph.woff │ │ └── glyph.woff2 │ │ ├── images │ │ ├── OFF256-72.png │ │ ├── OFF34-72.png │ │ ├── ON256-72.png │ │ ├── ON34-72.png │ │ └── load.gif │ │ ├── index.htm │ │ └── required.css.gz ├── Eagle │ ├── esp-sensor_01-BOTTOM.pdf │ ├── esp-sensor_01-BOTTOM.png │ ├── esp-sensor_01-BRD-INV.png │ ├── esp-sensor_01-BRD.pdf │ ├── esp-sensor_01-BRD.png │ ├── esp-sensor_01-SCH.pdf │ ├── esp-sensor_01-SCH.png │ ├── esp-sensor_01-TOP.pdf │ ├── esp-sensor_01-TOP.png │ ├── esp-sensor_01.brd │ └── esp-sensor_01.sch ├── Eventghost │ └── plugins │ │ └── ESP-SENSOR │ │ ├── ESP-12F_1.png │ │ ├── ESP-12F_2.png │ │ ├── __init__.py │ │ └── lib │ │ ├── ObjectListView_12SE │ │ ├── CellEditor.py │ │ ├── Filter.py │ │ ├── ListCtrlPrinter.py │ │ ├── OLVEvent.py │ │ ├── ObjectListView.py │ │ ├── WordWrapRenderer.py │ │ ├── __init__.py │ │ └── t.py │ │ ├── beebotte_050SE │ │ ├── __init__.py │ │ └── mqtt.beebotte.com.pem │ │ └── websocket_0440SE │ │ ├── __init__.py │ │ ├── _abnf.py │ │ ├── _app.py │ │ ├── _cookiejar.py │ │ ├── _core.py │ │ ├── _exceptions.py │ │ ├── _handshake.py │ │ ├── _http.py │ │ ├── _logging.py │ │ ├── _socket.py │ │ ├── _ssl_compat.py │ │ ├── _url.py │ │ ├── _utils.py │ │ └── cacert.pem └── README.md ├── ESP-SOCKET ├── Arduino │ ├── demo │ │ ├── Action.png │ │ ├── BeebotteChannel.png │ │ ├── Control_htm_A-1184x520.png │ │ ├── Control_htm_B-1184x520.png │ │ ├── DeviceStatus-1184x503.png │ │ ├── Index_htm-1184x226.png │ │ ├── Original_PCB.png │ │ ├── Plugin_A.png │ │ ├── Plugin_B.png │ │ ├── RC-710.png │ │ ├── Settings_htm-1184x1476.png │ │ ├── bottom.png │ │ ├── development_process.png │ │ └── top.png │ ├── libraries │ │ └── pubsubclient │ │ │ └── src │ │ │ └── PubSubClient.h │ └── sketch │ │ ├── ESP-SOCKET.ino │ │ └── data │ │ ├── auth │ │ ├── control.htm │ │ ├── control.js │ │ ├── set.js │ │ └── settings.htm │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glypg.svg │ │ ├── glyph.eot │ │ ├── glyph.ttf │ │ ├── glyph.woff │ │ └── glyph.woff2 │ │ ├── images │ │ ├── OFF256-72.png │ │ ├── OFF34-72.png │ │ ├── ON256-72.png │ │ ├── ON34-72.png │ │ └── load.gif │ │ ├── index.htm │ │ └── required.css.gz ├── Eagle │ ├── esp-socket-4-BOTTOM.pdf │ ├── esp-socket-4-BRD.pdf │ ├── esp-socket-4-BRD.png │ ├── esp-socket-4-SCH.pdf │ ├── esp-socket-4-SCH.png │ ├── esp-socket-4-TOP.pdf │ ├── esp-socket-4.brd │ └── esp-socket-4.sch ├── EventGhost │ └── plugins │ │ └── ESP-SOCKET │ │ ├── NodeMcu700x525.png │ │ ├── WeMos403x345.png │ │ ├── __init__.py │ │ └── lib │ │ ├── beebotte_050S │ │ ├── __init__.py │ │ └── mqtt.beebotte.com.pem │ │ └── websocket_0440S │ │ ├── __init__.py │ │ ├── _abnf.py │ │ ├── _app.py │ │ ├── _cookiejar.py │ │ ├── _core.py │ │ ├── _exceptions.py │ │ ├── _handshake.py │ │ ├── _http.py │ │ ├── _logging.py │ │ ├── _socket.py │ │ ├── _ssl_compat.py │ │ ├── _url.py │ │ ├── _utils.py │ │ └── cacert.pem └── README.md ├── Gmail ├── EventGhost │ └── plugins │ │ └── Gmail │ │ ├── Gmail.egplugin │ │ ├── __init__.py │ │ └── lib │ │ ├── apiclient │ │ └── __init__.py │ │ ├── argparse.py │ │ ├── googleapiclient │ │ ├── __init__.py │ │ ├── _auth.py │ │ ├── channel.py │ │ ├── discovery.py │ │ ├── discovery_cache │ │ │ ├── __init__.py │ │ │ ├── appengine_memcache.py │ │ │ ├── base.py │ │ │ └── file_cache.py │ │ ├── errors.py │ │ ├── http.py │ │ ├── mimeparse.py │ │ ├── model.py │ │ ├── sample_tools.py │ │ └── schema.py │ │ ├── httplib2 │ │ ├── __init__.py │ │ ├── cacerts.txt │ │ ├── iri2uri.py │ │ └── socks.py │ │ ├── oauth2client │ │ ├── __init__.py │ │ ├── _openssl_crypt.py │ │ ├── _pkce.py │ │ ├── _pure_python_crypt.py │ │ ├── _pycrypto_crypt.py │ │ ├── client.py │ │ ├── clientsecrets.py │ │ ├── crypt.py │ │ ├── file.py │ │ ├── service_account.py │ │ ├── tools.py │ │ ├── transport.py │ │ └── util.py │ │ └── uritemplate │ │ ├── __init__.py │ │ ├── api.py │ │ ├── template.py │ │ └── variable.py ├── README.md └── Screenshots │ ├── flow1.png │ ├── flow2.png │ └── flow3.png ├── RDM6300 ├── EventGhost │ └── plugins │ │ └── RDM6300 │ │ ├── RDM6300.egplugin │ │ └── __init__.py ├── Readme.md └── fritzing │ ├── RDM6300-ANT.fzpz │ ├── RDM6300.fzpz │ ├── RF125-PS.fzpz │ ├── RFID_reader_RDM6300.fzz │ ├── RFID_reader_RDM6300.png │ └── USB converter CP2102.fzpz └── README.md /Digispark-LCD/Arduino/libraries/DigisparkUSB/DigiUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-LCD/Arduino/libraries/DigisparkUSB/DigiUSB.h -------------------------------------------------------------------------------- /Digispark-LCD/Arduino/libraries/DigisparkUSB/usbconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-LCD/Arduino/libraries/DigisparkUSB/usbconfig.h -------------------------------------------------------------------------------- /Digispark-LCD/EventGhost/plugins/Digispark-LCD/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-LCD/EventGhost/plugins/Digispark-LCD/__init__.py -------------------------------------------------------------------------------- /Digispark-LCD/EventGhost/plugins/Digispark-LCD/arduino/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Digispark-LCD/EventGhost/plugins/Digispark-LCD/arduino/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-LCD/EventGhost/plugins/Digispark-LCD/arduino/libusb-1.0.dll -------------------------------------------------------------------------------- /Digispark-LCD/EventGhost/plugins/Digispark-LCD/arduino/usbdevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-LCD/EventGhost/plugins/Digispark-LCD/arduino/usbdevice.py -------------------------------------------------------------------------------- /Digispark-LCD/Readme.md: -------------------------------------------------------------------------------- 1 | Alphanumeric LCD display connected to a PC using the Digispark. 2 | -------------------------------------------------------------------------------- /Digispark-LCD/fritzing/Digispark-LCD.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-LCD/fritzing/Digispark-LCD.fzz -------------------------------------------------------------------------------- /Digispark-LCD/fritzing/Digispark-LCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-LCD/fritzing/Digispark-LCD.png -------------------------------------------------------------------------------- /Digispark-LCD/sketch/Digispark-LCD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-LCD/sketch/Digispark-LCD.ino -------------------------------------------------------------------------------- /Digispark-RC5/Arduino/libraries/RC5USB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/Arduino/libraries/RC5USB/LICENSE -------------------------------------------------------------------------------- /Digispark-RC5/Arduino/libraries/RC5USB/RC5USB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/Arduino/libraries/RC5USB/RC5USB.cpp -------------------------------------------------------------------------------- /Digispark-RC5/Arduino/libraries/RC5USB/RC5USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/Arduino/libraries/RC5USB/RC5USB.h -------------------------------------------------------------------------------- /Digispark-RC5/Arduino/libraries/RC5USB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/Arduino/libraries/RC5USB/README.md -------------------------------------------------------------------------------- /Digispark-RC5/Arduino/libraries/RC5USB/examples/Digispark-RC5/Digispark-RC5.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/Arduino/libraries/RC5USB/examples/Digispark-RC5/Digispark-RC5.ino -------------------------------------------------------------------------------- /Digispark-RC5/EventGhost/plugins/Digispark-RC5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/EventGhost/plugins/Digispark-RC5/__init__.py -------------------------------------------------------------------------------- /Digispark-RC5/EventGhost/plugins/Digispark-RC5/arduino/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Digispark-RC5/EventGhost/plugins/Digispark-RC5/arduino/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/EventGhost/plugins/Digispark-RC5/arduino/libusb-1.0.dll -------------------------------------------------------------------------------- /Digispark-RC5/EventGhost/plugins/Digispark-RC5/arduino/usbdevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/EventGhost/plugins/Digispark-RC5/arduino/usbdevice.py -------------------------------------------------------------------------------- /Digispark-RC5/Readme.md: -------------------------------------------------------------------------------- 1 | Digispark used as RC-5 receiver. 2 | -------------------------------------------------------------------------------- /Digispark-RC5/fritzing/RC5 Sketch.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/fritzing/RC5 Sketch.fzz -------------------------------------------------------------------------------- /Digispark-RC5/fritzing/RC5 Sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Digispark-RC5/fritzing/RC5 Sketch.png -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/ESP-IO-BBT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/ESP-IO-BBT.ino -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/auth/control.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/auth/control.htm -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/auth/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/auth/control.js -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/auth/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/auth/set.js -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/auth/settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/auth/settings.htm -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/favicon.ico -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/fonts/glyph.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/fonts/glyph.eot -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/fonts/glyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/fonts/glyph.svg -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/fonts/glyph.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/fonts/glyph.ttf -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/fonts/glyph.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/fonts/glyph.woff -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/fonts/glyph.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/fonts/glyph.woff2 -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/index.htm -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/load.gif -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/data/required.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/data/required.css.gz -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/demo/BeebotteChannel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/demo/BeebotteChannel.png -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/demo/Control_htm-1184x465.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/demo/Control_htm-1184x465.png -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/demo/DeviceStatus-1184x580.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/demo/DeviceStatus-1184x580.png -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/demo/EventGhostLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/demo/EventGhostLog.png -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/demo/PluginDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/demo/PluginDialog.png -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/demo/SetPinStateDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/demo/SetPinStateDialog.png -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/demo/Settings_htm-1184x1669.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/demo/Settings_htm-1184x1669.png -------------------------------------------------------------------------------- /ESP-IO-BBT/Arduino/demo/index_htm-1184x216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/Arduino/demo/index_htm-1184x216.png -------------------------------------------------------------------------------- /ESP-IO-BBT/EventGhost/plugins/ESP-IO-BBT/NodeMcu700x525.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/EventGhost/plugins/ESP-IO-BBT/NodeMcu700x525.png -------------------------------------------------------------------------------- /ESP-IO-BBT/EventGhost/plugins/ESP-IO-BBT/WeMos403x345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/EventGhost/plugins/ESP-IO-BBT/WeMos403x345.png -------------------------------------------------------------------------------- /ESP-IO-BBT/EventGhost/plugins/ESP-IO-BBT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/EventGhost/plugins/ESP-IO-BBT/__init__.py -------------------------------------------------------------------------------- /ESP-IO-BBT/EventGhost/plugins/ESP-IO-BBT/lib/beebotte_050/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/EventGhost/plugins/ESP-IO-BBT/lib/beebotte_050/__init__.py -------------------------------------------------------------------------------- /ESP-IO-BBT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO-BBT/README.md -------------------------------------------------------------------------------- /ESP-IO/Arduino/ESP-IO.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/ESP-IO.ino -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/auth/control.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/auth/control.htm -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/auth/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/auth/control.js -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/auth/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/auth/set.js -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/auth/settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/auth/settings.htm -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/favicon.ico -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/fonts/glyph.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/fonts/glyph.eot -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/fonts/glyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/fonts/glyph.svg -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/fonts/glyph.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/fonts/glyph.ttf -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/fonts/glyph.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/fonts/glyph.woff -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/fonts/glyph.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/fonts/glyph.woff2 -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/index.htm -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/load.gif -------------------------------------------------------------------------------- /ESP-IO/Arduino/data/required.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/data/required.css.gz -------------------------------------------------------------------------------- /ESP-IO/Arduino/demo/actiondialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/demo/actiondialog.png -------------------------------------------------------------------------------- /ESP-IO/Arduino/demo/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/demo/control.png -------------------------------------------------------------------------------- /ESP-IO/Arduino/demo/devicestatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/demo/devicestatus.png -------------------------------------------------------------------------------- /ESP-IO/Arduino/demo/eventgostlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/demo/eventgostlog.png -------------------------------------------------------------------------------- /ESP-IO/Arduino/demo/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/demo/index.png -------------------------------------------------------------------------------- /ESP-IO/Arduino/demo/plugindialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/demo/plugindialog.png -------------------------------------------------------------------------------- /ESP-IO/Arduino/demo/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Arduino/demo/settings.png -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/NodeMcu700x525.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/NodeMcu700x525.png -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/WeMos403x345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/WeMos403x345.png -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/__init__.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/__init__.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_abnf.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_app.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_cookiejar.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_core.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_exceptions.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_handshake.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_http.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_logging.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_socket.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_ssl_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_ssl_compat.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_url.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/_utils.py -------------------------------------------------------------------------------- /ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/Eventghost/plugins/ESP-IO/lib/websocket_0440/cacert.pem -------------------------------------------------------------------------------- /ESP-IO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-IO/README.md -------------------------------------------------------------------------------- /ESP-OLED/Arduino/demo/BeebotteChannel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/demo/BeebotteChannel.jpg -------------------------------------------------------------------------------- /ESP-OLED/Arduino/demo/DeviceStatus-1192x498.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/demo/DeviceStatus-1192x498.jpg -------------------------------------------------------------------------------- /ESP-OLED/Arduino/demo/EventGhostLog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/demo/EventGhostLog.jpg -------------------------------------------------------------------------------- /ESP-OLED/Arduino/demo/Index_htm-1192x220.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/demo/Index_htm-1192x220.jpg -------------------------------------------------------------------------------- /ESP-OLED/Arduino/demo/PluginDialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/demo/PluginDialog.jpg -------------------------------------------------------------------------------- /ESP-OLED/Arduino/demo/SendMessageDialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/demo/SendMessageDialog.jpg -------------------------------------------------------------------------------- /ESP-OLED/Arduino/demo/Settings_htm-1192x1665.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/demo/Settings_htm-1192x1665.jpg -------------------------------------------------------------------------------- /ESP-OLED/Arduino/libraries/esp8266-oled-ssd1306/OLEDDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/libraries/esp8266-oled-ssd1306/OLEDDisplay.cpp -------------------------------------------------------------------------------- /ESP-OLED/Arduino/libraries/pubsubclient/src/PubSubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/libraries/pubsubclient/src/PubSubClient.h -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/ESP-OLED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/ESP-OLED.ino -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/auth/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/auth/set.js -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/auth/settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/auth/settings.htm -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/favicon.ico -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/fonts/glyph.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/fonts/glyph.eot -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/fonts/glyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/fonts/glyph.svg -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/fonts/glyph.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/fonts/glyph.ttf -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/fonts/glyph.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/fonts/glyph.woff -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/fonts/glyph.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/fonts/glyph.woff2 -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/index.htm -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/load.gif -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/data/required.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/data/required.css.gz -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/fonts.h -------------------------------------------------------------------------------- /ESP-OLED/Arduino/sketch/pitches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Arduino/sketch/pitches.h -------------------------------------------------------------------------------- /ESP-OLED/Eagle/esp-oled-eagle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Eagle/esp-oled-eagle.pdf -------------------------------------------------------------------------------- /ESP-OLED/Eagle/esp-oled.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Eagle/esp-oled.brd -------------------------------------------------------------------------------- /ESP-OLED/Eagle/esp-oled.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Eagle/esp-oled.sch -------------------------------------------------------------------------------- /ESP-OLED/EventGhost/plugins/ESP-OLED/Display700x700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/EventGhost/plugins/ESP-OLED/Display700x700.png -------------------------------------------------------------------------------- /ESP-OLED/EventGhost/plugins/ESP-OLED/NodeMcu700x525.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/EventGhost/plugins/ESP-OLED/NodeMcu700x525.png -------------------------------------------------------------------------------- /ESP-OLED/EventGhost/plugins/ESP-OLED/WeMos403x345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/EventGhost/plugins/ESP-OLED/WeMos403x345.png -------------------------------------------------------------------------------- /ESP-OLED/EventGhost/plugins/ESP-OLED/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/EventGhost/plugins/ESP-OLED/__init__.py -------------------------------------------------------------------------------- /ESP-OLED/EventGhost/plugins/ESP-OLED/lib/beebotte_050/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/EventGhost/plugins/ESP-OLED/lib/beebotte_050/__init__.py -------------------------------------------------------------------------------- /ESP-OLED/EventGhost/plugins/ESP-OLED/lib/beebotte_050/mqtt.beebotte.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/EventGhost/plugins/ESP-OLED/lib/beebotte_050/mqtt.beebotte.com.pem -------------------------------------------------------------------------------- /ESP-OLED/Fritzing/ESP-OLED-Fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Fritzing/ESP-OLED-Fritzing.png -------------------------------------------------------------------------------- /ESP-OLED/Fritzing/ESP-OLED.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/Fritzing/ESP-OLED.fzz -------------------------------------------------------------------------------- /ESP-OLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-OLED/README.md -------------------------------------------------------------------------------- /ESP-PROG/Eagle/esp-prog-SMD-BOTTOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Eagle/esp-prog-SMD-BOTTOM.pdf -------------------------------------------------------------------------------- /ESP-PROG/Eagle/esp-prog-SMD-BRD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Eagle/esp-prog-SMD-BRD.pdf -------------------------------------------------------------------------------- /ESP-PROG/Eagle/esp-prog-SMD-BRD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Eagle/esp-prog-SMD-BRD.png -------------------------------------------------------------------------------- /ESP-PROG/Eagle/esp-prog-SMD-SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Eagle/esp-prog-SMD-SCH.pdf -------------------------------------------------------------------------------- /ESP-PROG/Eagle/esp-prog-SMD-SCH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Eagle/esp-prog-SMD-SCH.png -------------------------------------------------------------------------------- /ESP-PROG/Eagle/esp-prog-SMD-TOP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Eagle/esp-prog-SMD-TOP.pdf -------------------------------------------------------------------------------- /ESP-PROG/Eagle/esp-prog-SMD.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Eagle/esp-prog-SMD.brd -------------------------------------------------------------------------------- /ESP-PROG/Eagle/esp-prog-SMD.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Eagle/esp-prog-SMD.sch -------------------------------------------------------------------------------- /ESP-PROG/Images/CP2102-bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Images/CP2102-bottom.jpg -------------------------------------------------------------------------------- /ESP-PROG/Images/CP2102-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Images/CP2102-top.jpg -------------------------------------------------------------------------------- /ESP-PROG/Images/at_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Images/at_work.png -------------------------------------------------------------------------------- /ESP-PROG/Images/esp_prog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Images/esp_prog.png -------------------------------------------------------------------------------- /ESP-PROG/Images/flasher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Images/flasher.jpg -------------------------------------------------------------------------------- /ESP-PROG/Images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Images/test.jpg -------------------------------------------------------------------------------- /ESP-PROG/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-PROG/Readme.md -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/demo/EG_Events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/demo/EG_Events.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/demo/EG_OFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/demo/EG_OFF.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/demo/EG_ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/demo/EG_ON.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/demo/EG_Plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/demo/EG_Plugin.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/demo/OFF_1184x630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/demo/OFF_1184x630.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/demo/ON_1184x630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/demo/ON_1184x630.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/demo/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/demo/bottom.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/demo/development_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/demo/development_process.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/demo/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/demo/top.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/libraries/pubsubclient/src/PubSubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/libraries/pubsubclient/src/PubSubClient.h -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/ESP-SENSOR.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/ESP-SENSOR.ino -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/auth/control.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/auth/control.htm -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/auth/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/auth/control.js -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/auth/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/auth/set.js -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/auth/settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/auth/settings.htm -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/favicon.ico -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/fonts/glyph.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/fonts/glyph.eot -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/fonts/glyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/fonts/glyph.svg -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/fonts/glyph.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/fonts/glyph.ttf -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/fonts/glyph.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/fonts/glyph.woff -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/fonts/glyph.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/fonts/glyph.woff2 -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/images/OFF256-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/images/OFF256-72.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/images/OFF34-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/images/OFF34-72.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/images/ON256-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/images/ON256-72.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/images/ON34-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/images/ON34-72.png -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/images/load.gif -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/index.htm -------------------------------------------------------------------------------- /ESP-SENSOR/Arduino/sketch/data/required.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Arduino/sketch/data/required.css.gz -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01-BOTTOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01-BOTTOM.pdf -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01-BOTTOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01-BOTTOM.png -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01-BRD-INV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01-BRD-INV.png -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01-BRD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01-BRD.pdf -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01-BRD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01-BRD.png -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01-SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01-SCH.pdf -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01-SCH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01-SCH.png -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01-TOP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01-TOP.pdf -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01-TOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01-TOP.png -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01.brd -------------------------------------------------------------------------------- /ESP-SENSOR/Eagle/esp-sensor_01.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eagle/esp-sensor_01.sch -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/ESP-12F_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/ESP-12F_1.png -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/ESP-12F_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/ESP-12F_2.png -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/__init__.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/CellEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/CellEditor.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/Filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/Filter.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/ListCtrlPrinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/ListCtrlPrinter.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/OLVEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/OLVEvent.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/ObjectListView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/ObjectListView.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/WordWrapRenderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/WordWrapRenderer.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/__init__.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/ObjectListView_12SE/t.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/beebotte_050SE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/beebotte_050SE/__init__.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/beebotte_050SE/mqtt.beebotte.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/beebotte_050SE/mqtt.beebotte.com.pem -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/__init__.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_abnf.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_app.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_cookiejar.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_core.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_exceptions.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_handshake.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_http.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_logging.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_socket.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_ssl_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_ssl_compat.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_url.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/_utils.py -------------------------------------------------------------------------------- /ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/Eventghost/plugins/ESP-SENSOR/lib/websocket_0440SE/cacert.pem -------------------------------------------------------------------------------- /ESP-SENSOR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SENSOR/README.md -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/Action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/Action.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/BeebotteChannel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/BeebotteChannel.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/Control_htm_A-1184x520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/Control_htm_A-1184x520.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/Control_htm_B-1184x520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/Control_htm_B-1184x520.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/DeviceStatus-1184x503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/DeviceStatus-1184x503.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/Index_htm-1184x226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/Index_htm-1184x226.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/Original_PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/Original_PCB.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/Plugin_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/Plugin_A.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/Plugin_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/Plugin_B.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/RC-710.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/RC-710.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/Settings_htm-1184x1476.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/Settings_htm-1184x1476.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/bottom.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/development_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/development_process.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/demo/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/demo/top.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/libraries/pubsubclient/src/PubSubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/libraries/pubsubclient/src/PubSubClient.h -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/ESP-SOCKET.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/ESP-SOCKET.ino -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/auth/control.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/auth/control.htm -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/auth/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/auth/control.js -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/auth/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/auth/set.js -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/auth/settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/auth/settings.htm -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/favicon.ico -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/fonts/glypg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/fonts/glypg.svg -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/fonts/glyph.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/fonts/glyph.eot -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/fonts/glyph.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/fonts/glyph.ttf -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/fonts/glyph.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/fonts/glyph.woff -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/fonts/glyph.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/fonts/glyph.woff2 -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/images/OFF256-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/images/OFF256-72.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/images/OFF34-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/images/OFF34-72.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/images/ON256-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/images/ON256-72.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/images/ON34-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/images/ON34-72.png -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/images/load.gif -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/index.htm -------------------------------------------------------------------------------- /ESP-SOCKET/Arduino/sketch/data/required.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Arduino/sketch/data/required.css.gz -------------------------------------------------------------------------------- /ESP-SOCKET/Eagle/esp-socket-4-BOTTOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Eagle/esp-socket-4-BOTTOM.pdf -------------------------------------------------------------------------------- /ESP-SOCKET/Eagle/esp-socket-4-BRD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Eagle/esp-socket-4-BRD.pdf -------------------------------------------------------------------------------- /ESP-SOCKET/Eagle/esp-socket-4-BRD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Eagle/esp-socket-4-BRD.png -------------------------------------------------------------------------------- /ESP-SOCKET/Eagle/esp-socket-4-SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Eagle/esp-socket-4-SCH.pdf -------------------------------------------------------------------------------- /ESP-SOCKET/Eagle/esp-socket-4-SCH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Eagle/esp-socket-4-SCH.png -------------------------------------------------------------------------------- /ESP-SOCKET/Eagle/esp-socket-4-TOP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Eagle/esp-socket-4-TOP.pdf -------------------------------------------------------------------------------- /ESP-SOCKET/Eagle/esp-socket-4.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Eagle/esp-socket-4.brd -------------------------------------------------------------------------------- /ESP-SOCKET/Eagle/esp-socket-4.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/Eagle/esp-socket-4.sch -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/NodeMcu700x525.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/NodeMcu700x525.png -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/WeMos403x345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/WeMos403x345.png -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/__init__.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/beebotte_050S/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/beebotte_050S/__init__.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/beebotte_050S/mqtt.beebotte.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/beebotte_050S/mqtt.beebotte.com.pem -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/__init__.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_abnf.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_app.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_cookiejar.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_core.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_exceptions.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_handshake.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_http.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_logging.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_socket.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_ssl_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_ssl_compat.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_url.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/_utils.py -------------------------------------------------------------------------------- /ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/EventGhost/plugins/ESP-SOCKET/lib/websocket_0440S/cacert.pem -------------------------------------------------------------------------------- /ESP-SOCKET/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/ESP-SOCKET/README.md -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/Gmail.egplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/Gmail.egplugin -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/__init__.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/apiclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/apiclient/__init__.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/argparse.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/__init__.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/_auth.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/channel.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery_cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery_cache/__init__.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery_cache/appengine_memcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery_cache/appengine_memcache.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery_cache/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery_cache/base.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery_cache/file_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/discovery_cache/file_cache.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/errors.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/http.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/mimeparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/mimeparse.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/model.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/sample_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/sample_tools.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/googleapiclient/schema.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/httplib2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/httplib2/__init__.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/httplib2/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/httplib2/cacerts.txt -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/httplib2/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/httplib2/iri2uri.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/httplib2/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/httplib2/socks.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/__init__.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/_openssl_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/_openssl_crypt.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/_pkce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/_pkce.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/_pure_python_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/_pure_python_crypt.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/_pycrypto_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/_pycrypto_crypt.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/client.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/clientsecrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/clientsecrets.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/crypt.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/file.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/service_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/service_account.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/tools.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/transport.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/oauth2client/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/oauth2client/util.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/uritemplate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/uritemplate/__init__.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/uritemplate/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/uritemplate/api.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/uritemplate/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/uritemplate/template.py -------------------------------------------------------------------------------- /Gmail/EventGhost/plugins/Gmail/lib/uritemplate/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/EventGhost/plugins/Gmail/lib/uritemplate/variable.py -------------------------------------------------------------------------------- /Gmail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/README.md -------------------------------------------------------------------------------- /Gmail/Screenshots/flow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/Screenshots/flow1.png -------------------------------------------------------------------------------- /Gmail/Screenshots/flow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/Screenshots/flow2.png -------------------------------------------------------------------------------- /Gmail/Screenshots/flow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/Gmail/Screenshots/flow3.png -------------------------------------------------------------------------------- /RDM6300/EventGhost/plugins/RDM6300/RDM6300.egplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/RDM6300/EventGhost/plugins/RDM6300/RDM6300.egplugin -------------------------------------------------------------------------------- /RDM6300/EventGhost/plugins/RDM6300/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/RDM6300/EventGhost/plugins/RDM6300/__init__.py -------------------------------------------------------------------------------- /RDM6300/Readme.md: -------------------------------------------------------------------------------- 1 | Hardware plugin for the 125kHz RFID module RDM6300. 2 | -------------------------------------------------------------------------------- /RDM6300/fritzing/RDM6300-ANT.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/RDM6300/fritzing/RDM6300-ANT.fzpz -------------------------------------------------------------------------------- /RDM6300/fritzing/RDM6300.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/RDM6300/fritzing/RDM6300.fzpz -------------------------------------------------------------------------------- /RDM6300/fritzing/RF125-PS.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/RDM6300/fritzing/RF125-PS.fzpz -------------------------------------------------------------------------------- /RDM6300/fritzing/RFID_reader_RDM6300.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/RDM6300/fritzing/RFID_reader_RDM6300.fzz -------------------------------------------------------------------------------- /RDM6300/fritzing/RFID_reader_RDM6300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/RDM6300/fritzing/RFID_reader_RDM6300.png -------------------------------------------------------------------------------- /RDM6300/fritzing/USB converter CP2102.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/RDM6300/fritzing/USB converter CP2102.fzpz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pako2/EventGhostPlugins/HEAD/README.md --------------------------------------------------------------------------------