├── EasyLoRaGateway ├── 00_utils.ino ├── 01_filesystem.ino ├── 02_preferences.ino ├── 03_serial.ino ├── 04_ethernet.ino ├── 05_sd.ino ├── 06_wifi.ino ├── 07_mqtt.ino ├── 09_lora.ino ├── 15_ota.ino ├── 16_rota.ino ├── 20_webserver.ino ├── 50_led.ino ├── 60_speaker.ino ├── EasyLoRaGateway.h ├── EasyLoRaGateway.ino └── data │ └── index.html ├── External libraries └── esp32-http-fota-master │ ├── HttpFOTA.zip │ └── esp32-http-fota-master.zip ├── LICENSE.md └── README.md /EasyLoRaGateway/00_utils.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/00_utils.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/01_filesystem.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/01_filesystem.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/02_preferences.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/02_preferences.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/03_serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/03_serial.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/04_ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/04_ethernet.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/05_sd.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/05_sd.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/06_wifi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/06_wifi.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/07_mqtt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/07_mqtt.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/09_lora.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/09_lora.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/15_ota.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/15_ota.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/16_rota.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/16_rota.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/20_webserver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/20_webserver.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/50_led.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/50_led.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/60_speaker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/60_speaker.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/EasyLoRaGateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/EasyLoRaGateway.h -------------------------------------------------------------------------------- /EasyLoRaGateway/EasyLoRaGateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/EasyLoRaGateway/EasyLoRaGateway.ino -------------------------------------------------------------------------------- /EasyLoRaGateway/data/index.html: -------------------------------------------------------------------------------- 1 | Hello Easy LoRa gateway!!! 2 | To support cool web GUI with css 3 | -------------------------------------------------------------------------------- /External libraries/esp32-http-fota-master/HttpFOTA.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/External libraries/esp32-http-fota-master/HttpFOTA.zip -------------------------------------------------------------------------------- /External libraries/esp32-http-fota-master/esp32-http-fota-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/External libraries/esp32-http-fota-master/esp32-http-fota-master.zip -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTThinks/EasyLoRaGateway_v2/HEAD/README.md --------------------------------------------------------------------------------