├── ESP32_BaseStation_LoRa ├── ESP32_BaseStation_LoRa.ino ├── debug.cfg ├── debug_custom.json ├── esp32c3.svd ├── gnss.h ├── homepage.h ├── inputs.h ├── map.h ├── rtk.h └── tinkercharge.h ├── ESP32_Rover_LoRa ├── ESP32_Rover_LoRa.ino ├── debug.cfg ├── debug_custom.json ├── esp32c3.svd ├── gnss.h ├── homepage.h ├── inputs.h ├── map.h ├── rtk.h ├── satellite_data.h └── tinkercharge.h ├── LICENSE ├── README.md ├── RP2040_BaseStation_Lora ├── RP2040_BaseStation_Lora.ino ├── TBR_Logo.h ├── User_Setup.h └── data │ ├── NotoSansKannadaBold10.vlw │ ├── NotoSansKannadaBold20.vlw │ └── NotoSansKannadaBold40.vlw ├── RP2040_BaseStation_LoraRadio_Display ├── RP2040_BaseStation_LoraRadio_Display.ino ├── TBR_Logo.h ├── User_Setup.h └── data │ ├── NotoSansKannadaBold10.vlw │ ├── NotoSansKannadaBold20.vlw │ └── NotoSansKannadaBold40.vlw ├── RP2040_Rover_LoRaRadio └── RP2040_Rover_LoRaRadio.ino └── RP2040_Rover_LoRaRadio_Display ├── RP2040_Rover_LoRaRadio_Display.ino ├── TBR_Logo.h ├── User_Setup.h └── data ├── NotoSansKannadaBold10.vlw ├── NotoSansKannadaBold20.vlw └── NotoSansKannadaBold40.vlw /ESP32_BaseStation_LoRa/ESP32_BaseStation_LoRa.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/ESP32_BaseStation_LoRa.ino -------------------------------------------------------------------------------- /ESP32_BaseStation_LoRa/debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/debug.cfg -------------------------------------------------------------------------------- /ESP32_BaseStation_LoRa/debug_custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/debug_custom.json -------------------------------------------------------------------------------- /ESP32_BaseStation_LoRa/esp32c3.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/esp32c3.svd -------------------------------------------------------------------------------- /ESP32_BaseStation_LoRa/gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/gnss.h -------------------------------------------------------------------------------- /ESP32_BaseStation_LoRa/homepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/homepage.h -------------------------------------------------------------------------------- /ESP32_BaseStation_LoRa/inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/inputs.h -------------------------------------------------------------------------------- /ESP32_BaseStation_LoRa/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/map.h -------------------------------------------------------------------------------- /ESP32_BaseStation_LoRa/rtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/rtk.h -------------------------------------------------------------------------------- /ESP32_BaseStation_LoRa/tinkercharge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_BaseStation_LoRa/tinkercharge.h -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/ESP32_Rover_LoRa.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/ESP32_Rover_LoRa.ino -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/debug.cfg -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/debug_custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/debug_custom.json -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/esp32c3.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/esp32c3.svd -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/gnss.h -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/homepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/homepage.h -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/inputs.h -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/map.h -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/rtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/rtk.h -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/satellite_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/satellite_data.h -------------------------------------------------------------------------------- /ESP32_Rover_LoRa/tinkercharge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/ESP32_Rover_LoRa/tinkercharge.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/README.md -------------------------------------------------------------------------------- /RP2040_BaseStation_Lora/RP2040_BaseStation_Lora.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_Lora/RP2040_BaseStation_Lora.ino -------------------------------------------------------------------------------- /RP2040_BaseStation_Lora/TBR_Logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_Lora/TBR_Logo.h -------------------------------------------------------------------------------- /RP2040_BaseStation_Lora/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_Lora/User_Setup.h -------------------------------------------------------------------------------- /RP2040_BaseStation_Lora/data/NotoSansKannadaBold10.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_Lora/data/NotoSansKannadaBold10.vlw -------------------------------------------------------------------------------- /RP2040_BaseStation_Lora/data/NotoSansKannadaBold20.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_Lora/data/NotoSansKannadaBold20.vlw -------------------------------------------------------------------------------- /RP2040_BaseStation_Lora/data/NotoSansKannadaBold40.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_Lora/data/NotoSansKannadaBold40.vlw -------------------------------------------------------------------------------- /RP2040_BaseStation_LoraRadio_Display/RP2040_BaseStation_LoraRadio_Display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_LoraRadio_Display/RP2040_BaseStation_LoraRadio_Display.ino -------------------------------------------------------------------------------- /RP2040_BaseStation_LoraRadio_Display/TBR_Logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_LoraRadio_Display/TBR_Logo.h -------------------------------------------------------------------------------- /RP2040_BaseStation_LoraRadio_Display/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_LoraRadio_Display/User_Setup.h -------------------------------------------------------------------------------- /RP2040_BaseStation_LoraRadio_Display/data/NotoSansKannadaBold10.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_LoraRadio_Display/data/NotoSansKannadaBold10.vlw -------------------------------------------------------------------------------- /RP2040_BaseStation_LoraRadio_Display/data/NotoSansKannadaBold20.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_LoraRadio_Display/data/NotoSansKannadaBold20.vlw -------------------------------------------------------------------------------- /RP2040_BaseStation_LoraRadio_Display/data/NotoSansKannadaBold40.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_BaseStation_LoraRadio_Display/data/NotoSansKannadaBold40.vlw -------------------------------------------------------------------------------- /RP2040_Rover_LoRaRadio/RP2040_Rover_LoRaRadio.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_Rover_LoRaRadio/RP2040_Rover_LoRaRadio.ino -------------------------------------------------------------------------------- /RP2040_Rover_LoRaRadio_Display/RP2040_Rover_LoRaRadio_Display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_Rover_LoRaRadio_Display/RP2040_Rover_LoRaRadio_Display.ino -------------------------------------------------------------------------------- /RP2040_Rover_LoRaRadio_Display/TBR_Logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_Rover_LoRaRadio_Display/TBR_Logo.h -------------------------------------------------------------------------------- /RP2040_Rover_LoRaRadio_Display/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_Rover_LoRaRadio_Display/User_Setup.h -------------------------------------------------------------------------------- /RP2040_Rover_LoRaRadio_Display/data/NotoSansKannadaBold10.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_Rover_LoRaRadio_Display/data/NotoSansKannadaBold10.vlw -------------------------------------------------------------------------------- /RP2040_Rover_LoRaRadio_Display/data/NotoSansKannadaBold20.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_Rover_LoRaRadio_Display/data/NotoSansKannadaBold20.vlw -------------------------------------------------------------------------------- /RP2040_Rover_LoRaRadio_Display/data/NotoSansKannadaBold40.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkerbug-Robotics/TinkerRTKLoRa/HEAD/RP2040_Rover_LoRaRadio_Display/data/NotoSansKannadaBold40.vlw --------------------------------------------------------------------------------