├── README.md ├── arduino_examples ├── DeviceWithOled │ ├── GreenhouseDeviceWithOled.ino │ └── u8x8_fonts.c ├── WaterPumpSwitch │ └── LowPower_switch_v1.ino └── WireFenceSenderForLawnMower │ └── Sender_Station_BTS7960_Lora_v2.ino ├── img ├── greenhouse.png └── greenhouse2.png ├── install ├── loraflow.py ├── loraflow.sh └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/README.md -------------------------------------------------------------------------------- /arduino_examples/DeviceWithOled/GreenhouseDeviceWithOled.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/arduino_examples/DeviceWithOled/GreenhouseDeviceWithOled.ino -------------------------------------------------------------------------------- /arduino_examples/DeviceWithOled/u8x8_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/arduino_examples/DeviceWithOled/u8x8_fonts.c -------------------------------------------------------------------------------- /arduino_examples/WaterPumpSwitch/LowPower_switch_v1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/arduino_examples/WaterPumpSwitch/LowPower_switch_v1.ino -------------------------------------------------------------------------------- /arduino_examples/WireFenceSenderForLawnMower/Sender_Station_BTS7960_Lora_v2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/arduino_examples/WireFenceSenderForLawnMower/Sender_Station_BTS7960_Lora_v2.ino -------------------------------------------------------------------------------- /img/greenhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/img/greenhouse.png -------------------------------------------------------------------------------- /img/greenhouse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/img/greenhouse2.png -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/install -------------------------------------------------------------------------------- /loraflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/loraflow.py -------------------------------------------------------------------------------- /loraflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loraflow-net/loraflow/HEAD/loraflow.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | RPi.GPIO==0.7.0 2 | pyserial==3.4 3 | websocket-client==0.58.0 --------------------------------------------------------------------------------