├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── data └── wxStation_conf.json ├── images └── Wx_Station_Side.jpeg ├── include └── README ├── lib └── README ├── platformio.ini ├── src ├── LoRa_APRS_WX_Station.cpp ├── bh1750_utils.cpp ├── bh1750_utils.h ├── bme280_utils.cpp ├── bme280_utils.h ├── boards_pinout.h ├── configuration.cpp ├── configuration.h ├── display.cpp ├── display.h ├── gps_utils.cpp ├── gps_utils.h ├── lora_utils.cpp ├── lora_utils.h ├── rain_utils.cpp ├── rain_utils.h ├── utils.cpp ├── utils.h ├── wind_rs485_utils.cpp ├── wind_rs485_utils.h ├── wx_utils.cpp └── wx_utils.h └── test └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/README.md -------------------------------------------------------------------------------- /data/wxStation_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/data/wxStation_conf.json -------------------------------------------------------------------------------- /images/Wx_Station_Side.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/images/Wx_Station_Side.jpeg -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/include/README -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/LoRa_APRS_WX_Station.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/LoRa_APRS_WX_Station.cpp -------------------------------------------------------------------------------- /src/bh1750_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/bh1750_utils.cpp -------------------------------------------------------------------------------- /src/bh1750_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/bh1750_utils.h -------------------------------------------------------------------------------- /src/bme280_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/bme280_utils.cpp -------------------------------------------------------------------------------- /src/bme280_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/bme280_utils.h -------------------------------------------------------------------------------- /src/boards_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/boards_pinout.h -------------------------------------------------------------------------------- /src/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/configuration.cpp -------------------------------------------------------------------------------- /src/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/configuration.h -------------------------------------------------------------------------------- /src/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/display.cpp -------------------------------------------------------------------------------- /src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/display.h -------------------------------------------------------------------------------- /src/gps_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/gps_utils.cpp -------------------------------------------------------------------------------- /src/gps_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/gps_utils.h -------------------------------------------------------------------------------- /src/lora_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/lora_utils.cpp -------------------------------------------------------------------------------- /src/lora_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/lora_utils.h -------------------------------------------------------------------------------- /src/rain_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/rain_utils.cpp -------------------------------------------------------------------------------- /src/rain_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/rain_utils.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/wind_rs485_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/wind_rs485_utils.cpp -------------------------------------------------------------------------------- /src/wind_rs485_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/wind_rs485_utils.h -------------------------------------------------------------------------------- /src/wx_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/wx_utils.cpp -------------------------------------------------------------------------------- /src/wx_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/src/wx_utils.h -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Wx_Station/HEAD/test/README --------------------------------------------------------------------------------