├── .gitignore ├── Heltec-v3 ├── GENERIC_S3-20230426-v1.20.0.bin ├── README.md ├── SETUP └── node │ ├── _sx126x.py │ ├── boot.py │ ├── chrono.py │ ├── ids │ ├── main.py │ ├── ssd1306.py │ ├── sx1262.py │ └── sx126x.py ├── LICENSE ├── README.md ├── TTGO ├── CHANGELOG ├── README.md ├── SETUP ├── TODO ├── gateway-data │ ├── boot.py │ ├── chrono.py │ ├── lora.py │ ├── main.py │ └── ssd1306.py ├── gateway-req │ ├── boot.py │ ├── lora.py │ ├── main.py │ └── ssd1306.py ├── node │ ├── boot.py │ ├── chrono.py │ ├── ids │ ├── lora.py │ ├── main.py │ └── ssd1306.py └── rasp │ ├── init_exp.py │ └── net-server.py └── pycom ├── CHANGELOG ├── README.md ├── SETUP ├── gateway-data ├── boot.py └── main.py ├── gateway-req ├── boot.py └── main.py ├── node ├── boot.py ├── ids ├── lib │ ├── OTA.py │ ├── pycoproc.py │ └── pytrack.py └── main.py ├── node_f1.20x ├── boot.py ├── ids └── main.py └── rasp ├── init_exp.py └── net-server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/.gitignore -------------------------------------------------------------------------------- /Heltec-v3/GENERIC_S3-20230426-v1.20.0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/GENERIC_S3-20230426-v1.20.0.bin -------------------------------------------------------------------------------- /Heltec-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/README.md -------------------------------------------------------------------------------- /Heltec-v3/SETUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/SETUP -------------------------------------------------------------------------------- /Heltec-v3/node/_sx126x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/node/_sx126x.py -------------------------------------------------------------------------------- /Heltec-v3/node/boot.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Heltec-v3/node/chrono.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/node/chrono.py -------------------------------------------------------------------------------- /Heltec-v3/node/ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/node/ids -------------------------------------------------------------------------------- /Heltec-v3/node/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/node/main.py -------------------------------------------------------------------------------- /Heltec-v3/node/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/node/ssd1306.py -------------------------------------------------------------------------------- /Heltec-v3/node/sx1262.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/node/sx1262.py -------------------------------------------------------------------------------- /Heltec-v3/node/sx126x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/Heltec-v3/node/sx126x.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/README.md -------------------------------------------------------------------------------- /TTGO/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/CHANGELOG -------------------------------------------------------------------------------- /TTGO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/README.md -------------------------------------------------------------------------------- /TTGO/SETUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/SETUP -------------------------------------------------------------------------------- /TTGO/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/TODO -------------------------------------------------------------------------------- /TTGO/gateway-data/boot.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TTGO/gateway-data/chrono.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/gateway-data/chrono.py -------------------------------------------------------------------------------- /TTGO/gateway-data/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/gateway-data/lora.py -------------------------------------------------------------------------------- /TTGO/gateway-data/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/gateway-data/main.py -------------------------------------------------------------------------------- /TTGO/gateway-data/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/gateway-data/ssd1306.py -------------------------------------------------------------------------------- /TTGO/gateway-req/boot.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TTGO/gateway-req/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/gateway-req/lora.py -------------------------------------------------------------------------------- /TTGO/gateway-req/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/gateway-req/main.py -------------------------------------------------------------------------------- /TTGO/gateway-req/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/gateway-req/ssd1306.py -------------------------------------------------------------------------------- /TTGO/node/boot.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TTGO/node/chrono.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/node/chrono.py -------------------------------------------------------------------------------- /TTGO/node/ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/node/ids -------------------------------------------------------------------------------- /TTGO/node/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/node/lora.py -------------------------------------------------------------------------------- /TTGO/node/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/node/main.py -------------------------------------------------------------------------------- /TTGO/node/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/node/ssd1306.py -------------------------------------------------------------------------------- /TTGO/rasp/init_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/rasp/init_exp.py -------------------------------------------------------------------------------- /TTGO/rasp/net-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/TTGO/rasp/net-server.py -------------------------------------------------------------------------------- /pycom/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/CHANGELOG -------------------------------------------------------------------------------- /pycom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/README.md -------------------------------------------------------------------------------- /pycom/SETUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/SETUP -------------------------------------------------------------------------------- /pycom/gateway-data/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/gateway-data/boot.py -------------------------------------------------------------------------------- /pycom/gateway-data/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/gateway-data/main.py -------------------------------------------------------------------------------- /pycom/gateway-req/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/gateway-req/boot.py -------------------------------------------------------------------------------- /pycom/gateway-req/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/gateway-req/main.py -------------------------------------------------------------------------------- /pycom/node/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/node/boot.py -------------------------------------------------------------------------------- /pycom/node/ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/node/ids -------------------------------------------------------------------------------- /pycom/node/lib/OTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/node/lib/OTA.py -------------------------------------------------------------------------------- /pycom/node/lib/pycoproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/node/lib/pycoproc.py -------------------------------------------------------------------------------- /pycom/node/lib/pytrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/node/lib/pytrack.py -------------------------------------------------------------------------------- /pycom/node/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/node/main.py -------------------------------------------------------------------------------- /pycom/node_f1.20x/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/node_f1.20x/boot.py -------------------------------------------------------------------------------- /pycom/node_f1.20x/ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/node_f1.20x/ids -------------------------------------------------------------------------------- /pycom/node_f1.20x/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/node_f1.20x/main.py -------------------------------------------------------------------------------- /pycom/rasp/init_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/rasp/init_exp.py -------------------------------------------------------------------------------- /pycom/rasp/net-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltazita/ts-lora/HEAD/pycom/rasp/net-server.py --------------------------------------------------------------------------------