├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── ROADMAP.md ├── changelog.md ├── env └── linux.env ├── examples ├── DefaultWifiShield │ └── DefaultWifiShield.ino ├── WifiShieldJSON │ └── WifiShieldJSON.ino └── WifiShieldMQTTSecure │ └── WifiShieldMQTTSecure.ino ├── extras ├── applications │ └── web │ │ ├── package.json │ │ ├── server.js │ │ ├── socket.io-client.html │ │ └── socket.io.js └── python │ └── simple.py ├── functionalTest.sh ├── hardwareAndFlashTest.sh ├── images ├── WiFi_front_product.jpg ├── wifi_flow_softap.png └── wifi_flow_station.png ├── keywords.txt ├── library.properties ├── src ├── OpenBCI_Wifi.cpp ├── OpenBCI_Wifi.h ├── OpenBCI_Wifi_Definitions.h ├── WiFiClientPrint.h └── WiFiClientPrintSmall.h ├── test └── js │ ├── debug.js │ ├── index.js │ ├── package.json │ ├── qc.js │ └── ssdpQC.js └── tests-ptw-assert ├── OpenBCI_Wifi_Definitions_Test └── OpenBCI_Wifi_Definitions_Test.ino ├── OpenBCI_Wifi_Test_General └── OpenBCI_Wifi_Test_General.ino ├── OpenBCI_Wifi_Test_MQTT └── OpenBCI_Wifi_Test_MQTT.ino ├── OpenBCI_Wifi_Test_RAW_TO_JSON └── OpenBCI_Wifi_Test.ino └── OpenBCI_Wifi_Test_TCP_UDP └── OpenBCI_Wifi_Test_TCP_UDP.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/changelog.md -------------------------------------------------------------------------------- /env/linux.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/env/linux.env -------------------------------------------------------------------------------- /examples/DefaultWifiShield/DefaultWifiShield.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/examples/DefaultWifiShield/DefaultWifiShield.ino -------------------------------------------------------------------------------- /examples/WifiShieldJSON/WifiShieldJSON.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/examples/WifiShieldJSON/WifiShieldJSON.ino -------------------------------------------------------------------------------- /examples/WifiShieldMQTTSecure/WifiShieldMQTTSecure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/examples/WifiShieldMQTTSecure/WifiShieldMQTTSecure.ino -------------------------------------------------------------------------------- /extras/applications/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/extras/applications/web/package.json -------------------------------------------------------------------------------- /extras/applications/web/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/extras/applications/web/server.js -------------------------------------------------------------------------------- /extras/applications/web/socket.io-client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/extras/applications/web/socket.io-client.html -------------------------------------------------------------------------------- /extras/applications/web/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/extras/applications/web/socket.io.js -------------------------------------------------------------------------------- /extras/python/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/extras/python/simple.py -------------------------------------------------------------------------------- /functionalTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/functionalTest.sh -------------------------------------------------------------------------------- /hardwareAndFlashTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/hardwareAndFlashTest.sh -------------------------------------------------------------------------------- /images/WiFi_front_product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/images/WiFi_front_product.jpg -------------------------------------------------------------------------------- /images/wifi_flow_softap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/images/wifi_flow_softap.png -------------------------------------------------------------------------------- /images/wifi_flow_station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/images/wifi_flow_station.png -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/library.properties -------------------------------------------------------------------------------- /src/OpenBCI_Wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/src/OpenBCI_Wifi.cpp -------------------------------------------------------------------------------- /src/OpenBCI_Wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/src/OpenBCI_Wifi.h -------------------------------------------------------------------------------- /src/OpenBCI_Wifi_Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/src/OpenBCI_Wifi_Definitions.h -------------------------------------------------------------------------------- /src/WiFiClientPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/src/WiFiClientPrint.h -------------------------------------------------------------------------------- /src/WiFiClientPrintSmall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/src/WiFiClientPrintSmall.h -------------------------------------------------------------------------------- /test/js/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/test/js/debug.js -------------------------------------------------------------------------------- /test/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/test/js/index.js -------------------------------------------------------------------------------- /test/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/test/js/package.json -------------------------------------------------------------------------------- /test/js/qc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/test/js/qc.js -------------------------------------------------------------------------------- /test/js/ssdpQC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/test/js/ssdpQC.js -------------------------------------------------------------------------------- /tests-ptw-assert/OpenBCI_Wifi_Definitions_Test/OpenBCI_Wifi_Definitions_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/tests-ptw-assert/OpenBCI_Wifi_Definitions_Test/OpenBCI_Wifi_Definitions_Test.ino -------------------------------------------------------------------------------- /tests-ptw-assert/OpenBCI_Wifi_Test_General/OpenBCI_Wifi_Test_General.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/tests-ptw-assert/OpenBCI_Wifi_Test_General/OpenBCI_Wifi_Test_General.ino -------------------------------------------------------------------------------- /tests-ptw-assert/OpenBCI_Wifi_Test_MQTT/OpenBCI_Wifi_Test_MQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/tests-ptw-assert/OpenBCI_Wifi_Test_MQTT/OpenBCI_Wifi_Test_MQTT.ino -------------------------------------------------------------------------------- /tests-ptw-assert/OpenBCI_Wifi_Test_RAW_TO_JSON/OpenBCI_Wifi_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/tests-ptw-assert/OpenBCI_Wifi_Test_RAW_TO_JSON/OpenBCI_Wifi_Test.ino -------------------------------------------------------------------------------- /tests-ptw-assert/OpenBCI_Wifi_Test_TCP_UDP/OpenBCI_Wifi_Test_TCP_UDP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBCI/OpenBCI_WIFI/HEAD/tests-ptw-assert/OpenBCI_Wifi_Test_TCP_UDP/OpenBCI_Wifi_Test_TCP_UDP.ino --------------------------------------------------------------------------------