├── .gitignore ├── .project ├── CmakeLists.txt ├── LICENSE ├── MID ├── MID.h ├── MID.ino ├── conf.h ├── glob.h └── lib │ ├── AmpTime.h │ ├── AptService.h │ ├── CarCollect.h │ ├── CarGames.h │ ├── CarSens.h │ ├── CarState.h │ ├── CmdSerial.h │ ├── Debug.h │ ├── EepRom.h │ ├── InitLcd.h │ ├── InitObj.h │ ├── LcdPwr.h │ ├── LogCard.h │ ├── LpgSens.h │ ├── LpgSerial.h │ ├── MainFunc.h │ ├── Melody.h │ ├── MenuBack.h │ ├── MenuBase.h │ ├── MenuBtn.h │ ├── ShutDw.h │ ├── WhlSens.h │ └── ui │ ├── ComChar.h │ ├── Lcd16x2.h │ ├── Lcd240x64.h │ ├── Menu16x2.h │ ├── Menu240x64.h │ ├── fonts │ ├── .gitignore │ ├── OpelFontU8g.h │ ├── OpelSansBold-13.bdf │ ├── OpelSansBold-13.sfd │ ├── OpelSansMedium-12.bdf │ ├── OpelSansReg-12.sfd │ ├── README.md │ ├── bdfconv.exe │ └── bdfconv_2_22.exe │ ├── graphics │ ├── 240x64-logo.h │ ├── LcdChar.h │ └── gLcd-icons.h │ └── language │ ├── bg.h │ ├── de.h │ ├── en.h │ ├── hr.h │ ├── lt.h │ ├── ru.h │ ├── sr.h │ └── tr.h ├── README.md ├── cmake ├── ArduinoToolchain.cmake ├── Platform │ └── Arduino.cmake └── configure.bat ├── compiled ├── MID-old.ino.hex └── MID.ino.hex ├── libraries ├── DS3231.zip ├── DallasTemperature.zip ├── EnableInterrupt.zip ├── I2C_EEPROM.zip ├── LiquidCrystal.zip ├── MenuBackend.zip ├── OneWire.zip ├── README.md ├── RTClib.zip ├── SPI.zip ├── U8g2.zip └── Wire.zip ├── logo.png ├── package.json ├── resources ├── PCB │ ├── README.md │ ├── amid-b.pdf │ ├── amid-e.pdf │ ├── amid-pcb.pdf │ └── amid-t.pdf ├── gerber │ └── MID_PCB_V1.4.5.zip ├── holders │ ├── 3D-printer │ │ ├── bottom.SLDPRT │ │ ├── bottom.STL │ │ ├── top.SLDPRT │ │ └── top.STL │ └── README.md └── icons │ ├── 100km-16.gif │ ├── car-ins-18x10.gif │ ├── car-out-18x10.gif │ ├── gage-18.gif │ ├── gas-18.gif │ ├── graph-18.gif │ ├── mark-100-10x8.gif │ ├── mark-cels-4x8.gif │ ├── mark-km-9x8.gif │ ├── mark-liter-4x8.gif │ ├── mark-liter-per-8x8.gif │ ├── phi-5x8.gif │ ├── tmp-18.gif │ ├── train-18.gif │ └── way-18.gif └── tests ├── GmPong ├── GmPong.ino └── screen.h ├── LogCard └── LogCard.ino ├── LpgDump ├── CmakeLists.txt ├── LpgDump.ino └── LpgSerial.ino ├── LpgSerial ├── CmakeLists.txt ├── LpgSerial.h.h ├── LpgSerial.ino ├── backup2.h └── log.txt ├── LpgSignal ├── CmakeLists.txt └── LpgSignal.ino ├── Melody ├── AmpTime.h └── Melody.ino ├── PolyLine └── PolyLine.ino └── _logs └── lpg-europe_gas ├── log-on-run-bnz-1.log ├── log-on-run-bnz-2.log ├── log-serial-245-multiswitch.txt └── log-serial-246-single.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/.project -------------------------------------------------------------------------------- /CmakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/CmakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/LICENSE -------------------------------------------------------------------------------- /MID/MID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/MID.h -------------------------------------------------------------------------------- /MID/MID.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/MID.ino -------------------------------------------------------------------------------- /MID/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/conf.h -------------------------------------------------------------------------------- /MID/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/glob.h -------------------------------------------------------------------------------- /MID/lib/AmpTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/AmpTime.h -------------------------------------------------------------------------------- /MID/lib/AptService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/AptService.h -------------------------------------------------------------------------------- /MID/lib/CarCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/CarCollect.h -------------------------------------------------------------------------------- /MID/lib/CarGames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/CarGames.h -------------------------------------------------------------------------------- /MID/lib/CarSens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/CarSens.h -------------------------------------------------------------------------------- /MID/lib/CarState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/CarState.h -------------------------------------------------------------------------------- /MID/lib/CmdSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/CmdSerial.h -------------------------------------------------------------------------------- /MID/lib/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/Debug.h -------------------------------------------------------------------------------- /MID/lib/EepRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/EepRom.h -------------------------------------------------------------------------------- /MID/lib/InitLcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/InitLcd.h -------------------------------------------------------------------------------- /MID/lib/InitObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/InitObj.h -------------------------------------------------------------------------------- /MID/lib/LcdPwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/LcdPwr.h -------------------------------------------------------------------------------- /MID/lib/LogCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/LogCard.h -------------------------------------------------------------------------------- /MID/lib/LpgSens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/LpgSens.h -------------------------------------------------------------------------------- /MID/lib/LpgSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/LpgSerial.h -------------------------------------------------------------------------------- /MID/lib/MainFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/MainFunc.h -------------------------------------------------------------------------------- /MID/lib/Melody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/Melody.h -------------------------------------------------------------------------------- /MID/lib/MenuBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/MenuBack.h -------------------------------------------------------------------------------- /MID/lib/MenuBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/MenuBase.h -------------------------------------------------------------------------------- /MID/lib/MenuBtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/MenuBtn.h -------------------------------------------------------------------------------- /MID/lib/ShutDw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ShutDw.h -------------------------------------------------------------------------------- /MID/lib/WhlSens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/WhlSens.h -------------------------------------------------------------------------------- /MID/lib/ui/ComChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/ComChar.h -------------------------------------------------------------------------------- /MID/lib/ui/Lcd16x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/Lcd16x2.h -------------------------------------------------------------------------------- /MID/lib/ui/Lcd240x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/Lcd240x64.h -------------------------------------------------------------------------------- /MID/lib/ui/Menu16x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/Menu16x2.h -------------------------------------------------------------------------------- /MID/lib/ui/Menu240x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/Menu240x64.h -------------------------------------------------------------------------------- /MID/lib/ui/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | 3 | *.c 4 | -------------------------------------------------------------------------------- /MID/lib/ui/fonts/OpelFontU8g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/fonts/OpelFontU8g.h -------------------------------------------------------------------------------- /MID/lib/ui/fonts/OpelSansBold-13.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/fonts/OpelSansBold-13.bdf -------------------------------------------------------------------------------- /MID/lib/ui/fonts/OpelSansBold-13.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/fonts/OpelSansBold-13.sfd -------------------------------------------------------------------------------- /MID/lib/ui/fonts/OpelSansMedium-12.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/fonts/OpelSansMedium-12.bdf -------------------------------------------------------------------------------- /MID/lib/ui/fonts/OpelSansReg-12.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/fonts/OpelSansReg-12.sfd -------------------------------------------------------------------------------- /MID/lib/ui/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/fonts/README.md -------------------------------------------------------------------------------- /MID/lib/ui/fonts/bdfconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/fonts/bdfconv.exe -------------------------------------------------------------------------------- /MID/lib/ui/fonts/bdfconv_2_22.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/fonts/bdfconv_2_22.exe -------------------------------------------------------------------------------- /MID/lib/ui/graphics/240x64-logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/graphics/240x64-logo.h -------------------------------------------------------------------------------- /MID/lib/ui/graphics/LcdChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/graphics/LcdChar.h -------------------------------------------------------------------------------- /MID/lib/ui/graphics/gLcd-icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/graphics/gLcd-icons.h -------------------------------------------------------------------------------- /MID/lib/ui/language/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/language/bg.h -------------------------------------------------------------------------------- /MID/lib/ui/language/de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/language/de.h -------------------------------------------------------------------------------- /MID/lib/ui/language/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/language/en.h -------------------------------------------------------------------------------- /MID/lib/ui/language/hr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/language/hr.h -------------------------------------------------------------------------------- /MID/lib/ui/language/lt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/language/lt.h -------------------------------------------------------------------------------- /MID/lib/ui/language/ru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/language/ru.h -------------------------------------------------------------------------------- /MID/lib/ui/language/sr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/language/sr.h -------------------------------------------------------------------------------- /MID/lib/ui/language/tr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/MID/lib/ui/language/tr.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/README.md -------------------------------------------------------------------------------- /cmake/ArduinoToolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/cmake/ArduinoToolchain.cmake -------------------------------------------------------------------------------- /cmake/Platform/Arduino.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/cmake/Platform/Arduino.cmake -------------------------------------------------------------------------------- /cmake/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/cmake/configure.bat -------------------------------------------------------------------------------- /compiled/MID-old.ino.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/compiled/MID-old.ino.hex -------------------------------------------------------------------------------- /compiled/MID.ino.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/compiled/MID.ino.hex -------------------------------------------------------------------------------- /libraries/DS3231.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/DS3231.zip -------------------------------------------------------------------------------- /libraries/DallasTemperature.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/DallasTemperature.zip -------------------------------------------------------------------------------- /libraries/EnableInterrupt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/EnableInterrupt.zip -------------------------------------------------------------------------------- /libraries/I2C_EEPROM.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/I2C_EEPROM.zip -------------------------------------------------------------------------------- /libraries/LiquidCrystal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/LiquidCrystal.zip -------------------------------------------------------------------------------- /libraries/MenuBackend.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/MenuBackend.zip -------------------------------------------------------------------------------- /libraries/OneWire.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/OneWire.zip -------------------------------------------------------------------------------- /libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/README.md -------------------------------------------------------------------------------- /libraries/RTClib.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/RTClib.zip -------------------------------------------------------------------------------- /libraries/SPI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/SPI.zip -------------------------------------------------------------------------------- /libraries/U8g2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/U8g2.zip -------------------------------------------------------------------------------- /libraries/Wire.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/libraries/Wire.zip -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/package.json -------------------------------------------------------------------------------- /resources/PCB/README.md: -------------------------------------------------------------------------------- 1 | # Develop PCB at home 2 | 3 | -------------------------------------------------------------------------------- /resources/PCB/amid-b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/PCB/amid-b.pdf -------------------------------------------------------------------------------- /resources/PCB/amid-e.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/PCB/amid-e.pdf -------------------------------------------------------------------------------- /resources/PCB/amid-pcb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/PCB/amid-pcb.pdf -------------------------------------------------------------------------------- /resources/PCB/amid-t.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/PCB/amid-t.pdf -------------------------------------------------------------------------------- /resources/gerber/MID_PCB_V1.4.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/gerber/MID_PCB_V1.4.5.zip -------------------------------------------------------------------------------- /resources/holders/3D-printer/bottom.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/holders/3D-printer/bottom.SLDPRT -------------------------------------------------------------------------------- /resources/holders/3D-printer/bottom.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/holders/3D-printer/bottom.STL -------------------------------------------------------------------------------- /resources/holders/3D-printer/top.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/holders/3D-printer/top.SLDPRT -------------------------------------------------------------------------------- /resources/holders/3D-printer/top.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/holders/3D-printer/top.STL -------------------------------------------------------------------------------- /resources/holders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/holders/README.md -------------------------------------------------------------------------------- /resources/icons/100km-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/100km-16.gif -------------------------------------------------------------------------------- /resources/icons/car-ins-18x10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/car-ins-18x10.gif -------------------------------------------------------------------------------- /resources/icons/car-out-18x10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/car-out-18x10.gif -------------------------------------------------------------------------------- /resources/icons/gage-18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/gage-18.gif -------------------------------------------------------------------------------- /resources/icons/gas-18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/gas-18.gif -------------------------------------------------------------------------------- /resources/icons/graph-18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/graph-18.gif -------------------------------------------------------------------------------- /resources/icons/mark-100-10x8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/mark-100-10x8.gif -------------------------------------------------------------------------------- /resources/icons/mark-cels-4x8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/mark-cels-4x8.gif -------------------------------------------------------------------------------- /resources/icons/mark-km-9x8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/mark-km-9x8.gif -------------------------------------------------------------------------------- /resources/icons/mark-liter-4x8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/mark-liter-4x8.gif -------------------------------------------------------------------------------- /resources/icons/mark-liter-per-8x8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/mark-liter-per-8x8.gif -------------------------------------------------------------------------------- /resources/icons/phi-5x8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/phi-5x8.gif -------------------------------------------------------------------------------- /resources/icons/tmp-18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/tmp-18.gif -------------------------------------------------------------------------------- /resources/icons/train-18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/train-18.gif -------------------------------------------------------------------------------- /resources/icons/way-18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/resources/icons/way-18.gif -------------------------------------------------------------------------------- /tests/GmPong/GmPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/GmPong/GmPong.ino -------------------------------------------------------------------------------- /tests/GmPong/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/GmPong/screen.h -------------------------------------------------------------------------------- /tests/LogCard/LogCard.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LogCard/LogCard.ino -------------------------------------------------------------------------------- /tests/LpgDump/CmakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgDump/CmakeLists.txt -------------------------------------------------------------------------------- /tests/LpgDump/LpgDump.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgDump/LpgDump.ino -------------------------------------------------------------------------------- /tests/LpgDump/LpgSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgDump/LpgSerial.ino -------------------------------------------------------------------------------- /tests/LpgSerial/CmakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgSerial/CmakeLists.txt -------------------------------------------------------------------------------- /tests/LpgSerial/LpgSerial.h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgSerial/LpgSerial.h.h -------------------------------------------------------------------------------- /tests/LpgSerial/LpgSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgSerial/LpgSerial.ino -------------------------------------------------------------------------------- /tests/LpgSerial/backup2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgSerial/backup2.h -------------------------------------------------------------------------------- /tests/LpgSerial/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgSerial/log.txt -------------------------------------------------------------------------------- /tests/LpgSignal/CmakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgSignal/CmakeLists.txt -------------------------------------------------------------------------------- /tests/LpgSignal/LpgSignal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/LpgSignal/LpgSignal.ino -------------------------------------------------------------------------------- /tests/Melody/AmpTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/Melody/AmpTime.h -------------------------------------------------------------------------------- /tests/Melody/Melody.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/Melody/Melody.ino -------------------------------------------------------------------------------- /tests/PolyLine/PolyLine.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/PolyLine/PolyLine.ino -------------------------------------------------------------------------------- /tests/_logs/lpg-europe_gas/log-on-run-bnz-1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/_logs/lpg-europe_gas/log-on-run-bnz-1.log -------------------------------------------------------------------------------- /tests/_logs/lpg-europe_gas/log-on-run-bnz-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/_logs/lpg-europe_gas/log-on-run-bnz-2.log -------------------------------------------------------------------------------- /tests/_logs/lpg-europe_gas/log-serial-245-multiswitch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/_logs/lpg-europe_gas/log-serial-245-multiswitch.txt -------------------------------------------------------------------------------- /tests/_logs/lpg-europe_gas/log-serial-246-single.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire1/ArduinoMid/HEAD/tests/_logs/lpg-europe_gas/log-serial-246-single.txt --------------------------------------------------------------------------------