├── .gitignore ├── .travis.yml ├── FIRMWARE ├── 1.7.1 │ ├── DEBUG.hex │ ├── EEPROM.CLEAR.hex │ ├── FONT.BOLD.hex │ ├── FONT.DEFAULT.hex │ ├── FONT.LARGE.hex │ ├── aeromax.baseflight.aero.hex │ ├── aeromax.betaflight.hex │ ├── aeromax.cleanflight.hex │ ├── aeromax.inav.aero.hex │ ├── aeromax.inav.hex │ ├── aeromax.mavlink.hex │ ├── aeromax.naza.hex │ ├── aeromax.ublox.hex │ ├── andromeda.betaflight.hex │ ├── andromeda.inav.aero.hex │ ├── andromeda.inav.hex │ ├── andromeda.mavlink.hex │ ├── minim.baseflight.aero.hex │ ├── minim.betaflight.hex │ ├── minim.cleanflight.hex │ ├── minim.dronin.hex │ ├── minim.inav.aero.hex │ ├── minim.inav.hex │ ├── minim.kiss.hex │ ├── minim.librepilot.hex │ ├── minim.mavlink.aero.hex │ ├── minim.mavlink.hex │ ├── minim.multiwii.hex │ ├── minim.naza.hex │ ├── minim.nocontroller.hex │ ├── minim.raceflight.hex │ ├── minim.ublox.hex │ ├── test.mavlink.aero.hex │ ├── test.mavlink.hex │ └── test.ublox.hex └── fw-list.json ├── MW_OSD ├── AudioVario.ino ├── CUSTOM.ino ├── Config.h ├── Def.h ├── ESC.ino ├── GPS.ino ├── GlobalVariables.h ├── KISS.h ├── LTM.h ├── MS5837.cpp ├── MS5837.h ├── MW_OSD.ino ├── Max7456.ino ├── Naza.ino ├── NazaDecoderLib.cpp ├── NazaDecoderLib.h ├── RTC6705.ino ├── SKYTRACK.h ├── Screen.ino ├── Serial.ino ├── SerialMAVLINK.ino ├── WireUB.cpp ├── WireUB.h ├── bitarray.h ├── fontB.h ├── fontD.h ├── fontL.h ├── fontS.h ├── sbus.cpp ├── sbus.h ├── sc16is7x0.h ├── symbols.h ├── twislave.c ├── twislave.h ├── ubreg.h └── wireMacro.h ├── MW_OSD_GUI ├── README.md └── version.html ├── OTHER ├── 3D │ └── 3Dildo.stl ├── ADSB2.png ├── ADSBINAV.png ├── ADSBINAV2.png ├── ADSBSTATION.png ├── BUDDYFLIGHT.png ├── DOCUMENTATION │ ├── Credits.md │ ├── DEPRECATED │ │ ├── Frsky_SPort.md │ │ ├── Frsky_SPort_Host.md │ │ └── GPSTime.md │ ├── DIAGRAMS │ │ ├── LM35.png │ │ ├── MINIM schematic.png │ │ ├── MWOSD NAZA connection.png │ │ ├── MWOSD NAZE32 connection.PNG │ │ ├── MWOSD audio vario circuit.PNG │ │ ├── MWOSD video telemetry module.png │ │ └── mpxv7002dp.png │ ├── MW OSD R1.8 Current and RSSI calibration.xlsx │ └── VIRTUALPILOT AEROMAX │ │ ├── VP AEROMAX - ICSP.jpg │ │ ├── VP AEROMAX - LM35 pinout.jpg │ │ ├── VP AEROMAX MINIM for APM PIXHAWK pinout.jpg │ │ ├── VP AEROMAX MINIM for MWOSD pinout.jpg │ │ ├── VP AEROMAX OSD - APM PIXHAWK connection example.jpg │ │ ├── VP AEROMAX OSD - GPS ONLY connection example.jpg │ │ ├── VP AEROMAX OSD - GPS.jpg │ │ ├── VP AEROMAX OSD - NAZA connection example.jpg │ │ ├── VP AEROMAX OSD - full system connection example 3s.JPG │ │ ├── VP AEROMAX for GPS OSD pinout.jpg │ │ ├── VP AEROMAX for NAZA pinout.jpg │ │ ├── VP AEROMAX manual.pdf │ │ ├── VP AEROMAX with I2C BARO VARIO.jpg │ │ ├── VP AEROMAX with LM35 temerature sensor.jpg │ │ └── VP AEROMAX.jpg ├── FONT _EDITOR │ ├── Font code generator.xlsm │ ├── MAX7456Charwizard.jar │ ├── bold.mcm │ ├── default.mcm │ ├── fontB.h │ ├── fontD.h │ ├── fontL.h │ └── large.mcm └── STEELEPDB_KISS │ └── SteelePDB.zip ├── README.md └── platformio.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/.travis.yml -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/DEBUG.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/DEBUG.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/EEPROM.CLEAR.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/EEPROM.CLEAR.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/FONT.BOLD.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/FONT.BOLD.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/FONT.DEFAULT.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/FONT.DEFAULT.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/FONT.LARGE.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/FONT.LARGE.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/aeromax.baseflight.aero.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/aeromax.baseflight.aero.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/aeromax.betaflight.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/aeromax.betaflight.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/aeromax.cleanflight.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/aeromax.cleanflight.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/aeromax.inav.aero.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/aeromax.inav.aero.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/aeromax.inav.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/aeromax.inav.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/aeromax.mavlink.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/aeromax.mavlink.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/aeromax.naza.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/aeromax.naza.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/aeromax.ublox.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/aeromax.ublox.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/andromeda.betaflight.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/andromeda.betaflight.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/andromeda.inav.aero.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/andromeda.inav.aero.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/andromeda.inav.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/andromeda.inav.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/andromeda.mavlink.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/andromeda.mavlink.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.baseflight.aero.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.baseflight.aero.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.betaflight.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.betaflight.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.cleanflight.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.cleanflight.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.dronin.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.dronin.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.inav.aero.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.inav.aero.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.inav.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.inav.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.kiss.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.kiss.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.librepilot.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.librepilot.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.mavlink.aero.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.mavlink.aero.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.mavlink.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.mavlink.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.multiwii.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.multiwii.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.naza.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.naza.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.nocontroller.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.nocontroller.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.raceflight.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.raceflight.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/minim.ublox.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/minim.ublox.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/test.mavlink.aero.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/test.mavlink.aero.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/test.mavlink.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/test.mavlink.hex -------------------------------------------------------------------------------- /FIRMWARE/1.7.1/test.ublox.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/1.7.1/test.ublox.hex -------------------------------------------------------------------------------- /FIRMWARE/fw-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/FIRMWARE/fw-list.json -------------------------------------------------------------------------------- /MW_OSD/AudioVario.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/AudioVario.ino -------------------------------------------------------------------------------- /MW_OSD/CUSTOM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/CUSTOM.ino -------------------------------------------------------------------------------- /MW_OSD/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/Config.h -------------------------------------------------------------------------------- /MW_OSD/Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/Def.h -------------------------------------------------------------------------------- /MW_OSD/ESC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/ESC.ino -------------------------------------------------------------------------------- /MW_OSD/GPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/GPS.ino -------------------------------------------------------------------------------- /MW_OSD/GlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/GlobalVariables.h -------------------------------------------------------------------------------- /MW_OSD/KISS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/KISS.h -------------------------------------------------------------------------------- /MW_OSD/LTM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/LTM.h -------------------------------------------------------------------------------- /MW_OSD/MS5837.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/MS5837.cpp -------------------------------------------------------------------------------- /MW_OSD/MS5837.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/MS5837.h -------------------------------------------------------------------------------- /MW_OSD/MW_OSD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/MW_OSD.ino -------------------------------------------------------------------------------- /MW_OSD/Max7456.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/Max7456.ino -------------------------------------------------------------------------------- /MW_OSD/Naza.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/Naza.ino -------------------------------------------------------------------------------- /MW_OSD/NazaDecoderLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/NazaDecoderLib.cpp -------------------------------------------------------------------------------- /MW_OSD/NazaDecoderLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/NazaDecoderLib.h -------------------------------------------------------------------------------- /MW_OSD/RTC6705.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/RTC6705.ino -------------------------------------------------------------------------------- /MW_OSD/SKYTRACK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/SKYTRACK.h -------------------------------------------------------------------------------- /MW_OSD/Screen.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/Screen.ino -------------------------------------------------------------------------------- /MW_OSD/Serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/Serial.ino -------------------------------------------------------------------------------- /MW_OSD/SerialMAVLINK.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/SerialMAVLINK.ino -------------------------------------------------------------------------------- /MW_OSD/WireUB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/WireUB.cpp -------------------------------------------------------------------------------- /MW_OSD/WireUB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/WireUB.h -------------------------------------------------------------------------------- /MW_OSD/bitarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/bitarray.h -------------------------------------------------------------------------------- /MW_OSD/fontB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/fontB.h -------------------------------------------------------------------------------- /MW_OSD/fontD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/fontD.h -------------------------------------------------------------------------------- /MW_OSD/fontL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/fontL.h -------------------------------------------------------------------------------- /MW_OSD/fontS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/fontS.h -------------------------------------------------------------------------------- /MW_OSD/sbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/sbus.cpp -------------------------------------------------------------------------------- /MW_OSD/sbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/sbus.h -------------------------------------------------------------------------------- /MW_OSD/sc16is7x0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/sc16is7x0.h -------------------------------------------------------------------------------- /MW_OSD/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/symbols.h -------------------------------------------------------------------------------- /MW_OSD/twislave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/twislave.c -------------------------------------------------------------------------------- /MW_OSD/twislave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/twislave.h -------------------------------------------------------------------------------- /MW_OSD/ubreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/ubreg.h -------------------------------------------------------------------------------- /MW_OSD/wireMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD/wireMacro.h -------------------------------------------------------------------------------- /MW_OSD_GUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/MW_OSD_GUI/README.md -------------------------------------------------------------------------------- /MW_OSD_GUI/version.html: -------------------------------------------------------------------------------- 1 | { 2 | "version" : "2.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /OTHER/3D/3Dildo.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/3D/3Dildo.stl -------------------------------------------------------------------------------- /OTHER/ADSB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/ADSB2.png -------------------------------------------------------------------------------- /OTHER/ADSBINAV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/ADSBINAV.png -------------------------------------------------------------------------------- /OTHER/ADSBINAV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/ADSBINAV2.png -------------------------------------------------------------------------------- /OTHER/ADSBSTATION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/ADSBSTATION.png -------------------------------------------------------------------------------- /OTHER/BUDDYFLIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/BUDDYFLIGHT.png -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/Credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/Credits.md -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DEPRECATED/Frsky_SPort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DEPRECATED/Frsky_SPort.md -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DEPRECATED/Frsky_SPort_Host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DEPRECATED/Frsky_SPort_Host.md -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DEPRECATED/GPSTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DEPRECATED/GPSTime.md -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DIAGRAMS/LM35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DIAGRAMS/LM35.png -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DIAGRAMS/MINIM schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DIAGRAMS/MINIM schematic.png -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DIAGRAMS/MWOSD NAZA connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DIAGRAMS/MWOSD NAZA connection.png -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DIAGRAMS/MWOSD NAZE32 connection.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DIAGRAMS/MWOSD NAZE32 connection.PNG -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DIAGRAMS/MWOSD audio vario circuit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DIAGRAMS/MWOSD audio vario circuit.PNG -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DIAGRAMS/MWOSD video telemetry module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DIAGRAMS/MWOSD video telemetry module.png -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/DIAGRAMS/mpxv7002dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/DIAGRAMS/mpxv7002dp.png -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/MW OSD R1.8 Current and RSSI calibration.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/MW OSD R1.8 Current and RSSI calibration.xlsx -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX - ICSP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX - ICSP.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX - LM35 pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX - LM35 pinout.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX MINIM for APM PIXHAWK pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX MINIM for APM PIXHAWK pinout.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX MINIM for MWOSD pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX MINIM for MWOSD pinout.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - APM PIXHAWK connection example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - APM PIXHAWK connection example.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - GPS ONLY connection example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - GPS ONLY connection example.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - GPS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - GPS.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - NAZA connection example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - NAZA connection example.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - full system connection example 3s.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX OSD - full system connection example 3s.JPG -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX for GPS OSD pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX for GPS OSD pinout.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX for NAZA pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX for NAZA pinout.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX manual.pdf -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX with I2C BARO VARIO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX with I2C BARO VARIO.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX with LM35 temerature sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX with LM35 temerature sensor.jpg -------------------------------------------------------------------------------- /OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/DOCUMENTATION/VIRTUALPILOT AEROMAX/VP AEROMAX.jpg -------------------------------------------------------------------------------- /OTHER/FONT _EDITOR/Font code generator.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/FONT _EDITOR/Font code generator.xlsm -------------------------------------------------------------------------------- /OTHER/FONT _EDITOR/MAX7456Charwizard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/FONT _EDITOR/MAX7456Charwizard.jar -------------------------------------------------------------------------------- /OTHER/FONT _EDITOR/bold.mcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/FONT _EDITOR/bold.mcm -------------------------------------------------------------------------------- /OTHER/FONT _EDITOR/default.mcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/FONT _EDITOR/default.mcm -------------------------------------------------------------------------------- /OTHER/FONT _EDITOR/fontB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/FONT _EDITOR/fontB.h -------------------------------------------------------------------------------- /OTHER/FONT _EDITOR/fontD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/FONT _EDITOR/fontD.h -------------------------------------------------------------------------------- /OTHER/FONT _EDITOR/fontL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/FONT _EDITOR/fontL.h -------------------------------------------------------------------------------- /OTHER/FONT _EDITOR/large.mcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/FONT _EDITOR/large.mcm -------------------------------------------------------------------------------- /OTHER/STEELEPDB_KISS/SteelePDB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/OTHER/STEELEPDB_KISS/SteelePDB.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/README.md -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShikOfTheRa/scarab-osd/HEAD/platformio.ini --------------------------------------------------------------------------------