├── .gitignore ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── examples ├── Girs │ ├── Girs.cpp │ ├── Girs.ino │ ├── GirsFat.config.h │ ├── GirsLite.config.h │ ├── README.md │ └── config.h ├── Listener │ ├── Listener.cpp │ ├── Listener.ino │ ├── README.md │ └── config.h ├── Opponator │ ├── Opponator.cpp │ ├── Opponator.ino │ ├── README.md │ └── config.h └── Translator │ ├── README.md │ ├── Translator.cpp │ ├── Translator.ino │ └── config.h ├── keywords.txt ├── library.properties ├── src ├── GirsLib │ ├── GirsUtils.cpp │ ├── GirsUtils.h │ ├── IrNamedRemoteSet.h │ ├── LedLcdManager.cpp │ ├── LedLcdManager.h │ ├── LiquidCrystal_I2C_bm.cpp │ ├── LiquidCrystal_I2C_bm.h │ ├── README.md │ ├── StreamParser.cpp │ ├── StreamParser.h │ ├── defineMissingStuff.h │ └── version.h ├── girs_hw_config.h └── hardware-config │ ├── README.txt │ ├── girs_pins.h │ ├── girs_pins_combi_shield.h │ ├── girs_pins_default.h │ ├── girs_pins_leonardo.h │ ├── girs_pins_mega2560.h │ ├── girs_pins_mega2560_rear.h │ ├── girs_pins_micro.h │ ├── girs_pins_nano.h │ ├── girs_pins_nano_shield.h │ ├── lcd_0x27_16_2.h │ ├── lcd_0x27_20_4.h │ └── lcd_0x3F_20_4.h └── tools ├── mkflasher.sh ├── nanoflasher.bat └── nanoflasher.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/README.md -------------------------------------------------------------------------------- /examples/Girs/Girs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Girs/Girs.cpp -------------------------------------------------------------------------------- /examples/Girs/Girs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Girs/Girs.ino -------------------------------------------------------------------------------- /examples/Girs/GirsFat.config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Girs/GirsFat.config.h -------------------------------------------------------------------------------- /examples/Girs/GirsLite.config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Girs/GirsLite.config.h -------------------------------------------------------------------------------- /examples/Girs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Girs/README.md -------------------------------------------------------------------------------- /examples/Girs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Girs/config.h -------------------------------------------------------------------------------- /examples/Listener/Listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Listener/Listener.cpp -------------------------------------------------------------------------------- /examples/Listener/Listener.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Listener/Listener.ino -------------------------------------------------------------------------------- /examples/Listener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Listener/README.md -------------------------------------------------------------------------------- /examples/Listener/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Listener/config.h -------------------------------------------------------------------------------- /examples/Opponator/Opponator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Opponator/Opponator.cpp -------------------------------------------------------------------------------- /examples/Opponator/Opponator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Opponator/Opponator.ino -------------------------------------------------------------------------------- /examples/Opponator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Opponator/README.md -------------------------------------------------------------------------------- /examples/Opponator/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Opponator/config.h -------------------------------------------------------------------------------- /examples/Translator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Translator/README.md -------------------------------------------------------------------------------- /examples/Translator/Translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Translator/Translator.cpp -------------------------------------------------------------------------------- /examples/Translator/Translator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Translator/Translator.ino -------------------------------------------------------------------------------- /examples/Translator/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/examples/Translator/config.h -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/library.properties -------------------------------------------------------------------------------- /src/GirsLib/GirsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/GirsUtils.cpp -------------------------------------------------------------------------------- /src/GirsLib/GirsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/GirsUtils.h -------------------------------------------------------------------------------- /src/GirsLib/IrNamedRemoteSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/IrNamedRemoteSet.h -------------------------------------------------------------------------------- /src/GirsLib/LedLcdManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/LedLcdManager.cpp -------------------------------------------------------------------------------- /src/GirsLib/LedLcdManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/LedLcdManager.h -------------------------------------------------------------------------------- /src/GirsLib/LiquidCrystal_I2C_bm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/LiquidCrystal_I2C_bm.cpp -------------------------------------------------------------------------------- /src/GirsLib/LiquidCrystal_I2C_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/LiquidCrystal_I2C_bm.h -------------------------------------------------------------------------------- /src/GirsLib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/README.md -------------------------------------------------------------------------------- /src/GirsLib/StreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/StreamParser.cpp -------------------------------------------------------------------------------- /src/GirsLib/StreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/StreamParser.h -------------------------------------------------------------------------------- /src/GirsLib/defineMissingStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/defineMissingStuff.h -------------------------------------------------------------------------------- /src/GirsLib/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/GirsLib/version.h -------------------------------------------------------------------------------- /src/girs_hw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/girs_hw_config.h -------------------------------------------------------------------------------- /src/hardware-config/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/README.txt -------------------------------------------------------------------------------- /src/hardware-config/girs_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/girs_pins.h -------------------------------------------------------------------------------- /src/hardware-config/girs_pins_combi_shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/girs_pins_combi_shield.h -------------------------------------------------------------------------------- /src/hardware-config/girs_pins_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/girs_pins_default.h -------------------------------------------------------------------------------- /src/hardware-config/girs_pins_leonardo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/girs_pins_leonardo.h -------------------------------------------------------------------------------- /src/hardware-config/girs_pins_mega2560.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/girs_pins_mega2560.h -------------------------------------------------------------------------------- /src/hardware-config/girs_pins_mega2560_rear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/girs_pins_mega2560_rear.h -------------------------------------------------------------------------------- /src/hardware-config/girs_pins_micro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/girs_pins_micro.h -------------------------------------------------------------------------------- /src/hardware-config/girs_pins_nano.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/girs_pins_nano.h -------------------------------------------------------------------------------- /src/hardware-config/girs_pins_nano_shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/girs_pins_nano_shield.h -------------------------------------------------------------------------------- /src/hardware-config/lcd_0x27_16_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/lcd_0x27_16_2.h -------------------------------------------------------------------------------- /src/hardware-config/lcd_0x27_20_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/lcd_0x27_20_4.h -------------------------------------------------------------------------------- /src/hardware-config/lcd_0x3F_20_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/src/hardware-config/lcd_0x3F_20_4.h -------------------------------------------------------------------------------- /tools/mkflasher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/tools/mkflasher.sh -------------------------------------------------------------------------------- /tools/nanoflasher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/tools/nanoflasher.bat -------------------------------------------------------------------------------- /tools/nanoflasher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/AGirs/HEAD/tools/nanoflasher.sh --------------------------------------------------------------------------------