├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Feature_request.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── config.yml ├── issue-close-app.yml ├── stale.yml └── workflows │ ├── CI_github.yml │ ├── CI_github_ESP32.yml │ └── Tasmota_build.yml ├── .gitignore ├── .gitpod.yml ├── .travis.yml.off ├── API.md ├── BUILDS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Doxyfile ├── FIRMWARE.md ├── I2CDEVICES.md ├── LICENSE.txt ├── MODULES.md ├── README.md ├── RELEASENOTES.md ├── TEMPLATES.md ├── api └── upload-arduino.php ├── arduino ├── espupload.py └── version 2.7.1 │ ├── boards.txt │ └── platform.txt ├── esp32_partition_app1572k_ffat983k.csv ├── esp32_partition_app1984k_ffat12M.csv ├── esp32_partition_app1984k_spiffs60k.csv ├── esp32_partition_app1984k_spiffs64k.csv ├── include └── dummy.txt ├── lib ├── A4988_Stepper │ ├── README.adoc │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── A4988_Stepper.cpp │ │ └── A4988_Stepper.h ├── AT24C256 │ ├── Eeprom24C128_256.cpp │ └── Eeprom24C128_256.h ├── Adafruit-GFX-Library-1.5.6-gemu-1.0 │ ├── .gitignore │ ├── .travis.yml │ ├── Adafruit_GFX.cpp │ ├── Adafruit_GFX.h │ ├── Adafruit_SPITFT.cpp │ ├── Adafruit_SPITFT.h │ ├── Adafruit_SPITFT_Macros.h │ ├── Fonts │ │ ├── FreeMono12pt7b.h │ │ ├── FreeMono18pt7b.h │ │ ├── FreeMono24pt7b.h │ │ ├── FreeMono9pt7b.h │ │ ├── FreeMonoBold12pt7b.h │ │ ├── FreeMonoBold18pt7b.h │ │ ├── FreeMonoBold24pt7b.h │ │ ├── FreeMonoBold9pt7b.h │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ ├── FreeMonoOblique12pt7b.h │ │ ├── FreeMonoOblique18pt7b.h │ │ ├── FreeMonoOblique24pt7b.h │ │ ├── FreeMonoOblique9pt7b.h │ │ ├── FreeSans12pt7b.h │ │ ├── FreeSans18pt7b.h │ │ ├── FreeSans24pt7b.h │ │ ├── FreeSans9pt7b.h │ │ ├── FreeSansBold12pt7b.h │ │ ├── FreeSansBold18pt7b.h │ │ ├── FreeSansBold24pt7b.h │ │ ├── FreeSansBold9pt7b.h │ │ ├── FreeSansBoldOblique12pt7b.h │ │ ├── FreeSansBoldOblique18pt7b.h │ │ ├── FreeSansBoldOblique24pt7b.h │ │ ├── FreeSansBoldOblique9pt7b.h │ │ ├── FreeSansOblique12pt7b.h │ │ ├── FreeSansOblique18pt7b.h │ │ ├── FreeSansOblique24pt7b.h │ │ ├── FreeSansOblique9pt7b.h │ │ ├── FreeSerif12pt7b.h │ │ ├── FreeSerif18pt7b.h │ │ ├── FreeSerif24pt7b.h │ │ ├── FreeSerif9pt7b.h │ │ ├── FreeSerifBold12pt7b.h │ │ ├── FreeSerifBold18pt7b.h │ │ ├── FreeSerifBold24pt7b.h │ │ ├── FreeSerifBold9pt7b.h │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ ├── FreeSerifItalic12pt7b.h │ │ ├── FreeSerifItalic18pt7b.h │ │ ├── FreeSerifItalic24pt7b.h │ │ ├── FreeSerifItalic9pt7b.h │ │ ├── Org_01.h │ │ ├── Picopixel.h │ │ ├── Tiny3x3a2pt7b.h │ │ └── TomThumb.h │ ├── README.md │ ├── examples │ │ └── mock_ili9341 │ │ │ └── mock_ili9341.ino │ ├── fontconvert │ │ ├── Makefile │ │ ├── fontconvert.c │ │ ├── fontconvert_win.md │ │ └── makefonts.sh │ ├── gfxfont.h │ ├── glcdfont.c │ ├── library.properties │ └── license.txt ├── Adafruit_BusIO │ ├── .travis.yml │ ├── Adafruit_BusIO_Register.cpp │ ├── Adafruit_BusIO_Register.h │ ├── Adafruit_I2CDevice.cpp │ ├── Adafruit_I2CDevice.h │ ├── Adafruit_I2CRegister.h │ ├── Adafruit_SPIDevice.cpp │ ├── Adafruit_SPIDevice.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── i2c_address_detect │ │ │ └── i2c_address_detect.ino │ │ ├── i2c_readwrite │ │ │ └── i2c_readwrite.ino │ │ ├── i2c_registers │ │ │ └── i2c_registers.ino │ │ ├── i2corspi_register │ │ │ └── i2corspi_register.ino │ │ ├── spi_modetest │ │ │ └── spi_modetest.ino │ │ ├── spi_readwrite │ │ │ └── spi_readwrite.ino │ │ └── spi_registers │ │ │ └── spi_registers.ino │ └── library.properties ├── Adafruit_CCS811-1.0.0.14 │ ├── .travis.yml │ ├── Adafruit_CCS811.cpp │ ├── Adafruit_CCS811.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── CCS811_OLED_Demo │ │ │ └── CCS811_OLED_Demo.ino │ │ └── CCS811_test │ │ │ └── CCS811_test.ino │ └── library.properties ├── Adafruit_ILI9341-1.2.0-Tasmota-1.0 │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .travis.yml │ ├── Adafruit_ILI9341.cpp │ ├── Adafruit_ILI9341.h │ ├── README.md │ ├── examples │ │ ├── breakouttouchpaint │ │ │ ├── .esp8266.test.skip │ │ │ └── breakouttouchpaint.ino │ │ ├── fulltest_featherwing │ │ │ ├── .mega2560.test.skip │ │ │ └── fulltest_featherwing.ino │ │ ├── graphicstest │ │ │ └── graphicstest.ino │ │ ├── graphicstest_featherwing │ │ │ ├── .mega2560.test.skip │ │ │ └── graphicstest_featherwing.ino │ │ ├── onoffbutton │ │ │ └── onoffbutton.ino │ │ ├── onoffbutton_breakout │ │ │ ├── .esp8266.test.skip │ │ │ └── onoffbutton_breakout.ino │ │ ├── pictureEmbed │ │ │ ├── dragon.h │ │ │ └── pictureEmbed.ino │ │ ├── spitftbitmap │ │ │ └── spitftbitmap.ino │ │ ├── touchpaint │ │ │ └── touchpaint.ino │ │ └── touchpaint_featherwing │ │ │ ├── .mega2560.test.skip │ │ │ └── touchpaint_featherwing.ino │ └── library.properties ├── Adafruit_LED_Backpack-1.1.6 │ ├── Adafruit_LEDBackpack.cpp │ ├── Adafruit_LEDBackpack.h │ ├── README.md │ ├── README.txt │ ├── examples │ │ ├── HT16K33 │ │ │ └── HT16K33.ino │ │ ├── bargraph24 │ │ │ └── bargraph24.ino │ │ ├── bicolor8x8 │ │ │ └── bicolor8x8.pde │ │ ├── clock_sevenseg_ds1307 │ │ │ └── clock_sevenseg_ds1307.ino │ │ ├── clock_sevenseg_gps │ │ │ └── clock_sevenseg_gps.ino │ │ ├── matrix16x8 │ │ │ └── matrix16x8.ino │ │ ├── matrix8x8 │ │ │ └── matrix8x8.ino │ │ ├── minimatrix16x8 │ │ │ └── minimatrix16x8.ino │ │ ├── quadalphanum │ │ │ └── quadalphanum.ino │ │ ├── quadalphanum_mini │ │ │ └── quadalphanum_mini.ino │ │ ├── roboface │ │ │ └── roboface.pde │ │ ├── sevenseg │ │ │ └── sevenseg.ino │ │ └── wavface │ │ │ ├── wavface.pde │ │ │ └── wavs │ │ │ ├── beware_i.wav │ │ │ ├── ihunger.wav │ │ │ └── run_cowd.wav │ ├── library.properties │ └── license.txt ├── Adafruit_MAX31865-1.1.0-custom │ ├── Adafruit_MAX31865.cpp │ ├── Adafruit_MAX31865.h │ ├── README.md │ ├── README.txt │ ├── examples │ │ └── max31865 │ │ │ └── max31865.ino │ └── library.properties ├── Adafruit_MCP9808_Tasmota │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── .gitignore │ ├── Adafruit_MCP9808.cpp │ ├── Adafruit_MCP9808.h │ ├── README.md │ ├── assets │ │ └── board.jpg │ ├── code-of-conduct.md │ ├── examples │ │ └── mcp9808test │ │ │ └── mcp9808test.ino │ ├── library.properties │ └── license.txt ├── Adafruit_SGP30-1.2.0 │ ├── Adafruit_SGP30.cpp │ ├── Adafruit_SGP30.h │ ├── README.md │ ├── examples │ │ └── sgp30test │ │ │ └── sgp30test.ino │ ├── library.properties │ ├── license.txt │ └── travis.yml ├── Adafruit_SH1106-gemu-1.0 │ ├── Adafruit_SH1106.cpp │ ├── Adafruit_SH1106.h │ ├── LICENSE.txt │ ├── README.md │ └── examples │ │ ├── sh1106_128x64_i2c │ │ └── sh1106_128x64_i2c.ino │ │ └── sh1106_128x64_spi │ │ └── sh1106_128x64_spi.ino ├── Adafruit_SSD1306-1.3.0-gemu-1.1 │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .travis.yml │ ├── Adafruit_SSD1306.cpp │ ├── Adafruit_SSD1306.h │ ├── README.md │ ├── examples │ │ ├── OLED_featherwing │ │ │ └── OLED_featherwing.ino │ │ ├── ssd1306_128x32_i2c │ │ │ └── ssd1306_128x32_i2c.ino │ │ ├── ssd1306_128x32_spi │ │ │ └── ssd1306_128x32_spi.ino │ │ ├── ssd1306_128x64_i2c │ │ │ └── ssd1306_128x64_i2c.ino │ │ └── ssd1306_128x64_spi │ │ │ └── ssd1306_128x64_spi.ino │ ├── library.properties │ ├── license.txt │ └── splash.h ├── Adafruit_SSD1351-gemu-1.0 │ ├── README.md │ ├── SSD1351.cpp │ ├── SSD1351.h │ ├── Tiger.c │ ├── Tiger.rgb │ ├── keywords.txt │ ├── library.properties │ └── spi_register.h ├── Adafruit_TSL2591_Library │ ├── Adafruit_TSL2591.cpp │ └── Adafruit_TSL2591.h ├── Adafruit_VEML7700 │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .travis.yml │ ├── Adafruit_VEML7700.cpp │ ├── Adafruit_VEML7700.h │ ├── README.md │ ├── examples │ │ └── veml7700_test │ │ │ └── veml7700_test.ino │ ├── library.properties │ └── license.txt ├── ArduinoJson-5.13.4 │ ├── ArduinoJson.h │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── examples │ │ ├── JsonConfigFile │ │ │ └── JsonConfigFile.ino │ │ ├── JsonGeneratorExample │ │ │ └── JsonGeneratorExample.ino │ │ ├── JsonHttpClient │ │ │ └── JsonHttpClient.ino │ │ ├── JsonParserExample │ │ │ └── JsonParserExample.ino │ │ ├── JsonServer │ │ │ └── JsonServer.ino │ │ ├── JsonUdpBeacon │ │ │ └── JsonUdpBeacon.ino │ │ ├── ProgmemExample │ │ │ └── ProgmemExample.ino │ │ └── StringExample │ │ │ └── StringExample.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── ArduinoJson.h │ │ ├── ArduinoJson.hpp │ │ └── ArduinoJson │ │ ├── Configuration.hpp │ │ ├── Data │ │ ├── Encoding.hpp │ │ ├── JsonBufferAllocated.hpp │ │ ├── JsonFloat.hpp │ │ ├── JsonInteger.hpp │ │ ├── JsonVariantAs.hpp │ │ ├── JsonVariantContent.hpp │ │ ├── JsonVariantDefault.hpp │ │ ├── JsonVariantType.hpp │ │ ├── List.hpp │ │ ├── ListConstIterator.hpp │ │ ├── ListIterator.hpp │ │ ├── ListNode.hpp │ │ ├── NonCopyable.hpp │ │ ├── ReferenceType.hpp │ │ └── ValueSaver.hpp │ │ ├── Deserialization │ │ ├── Comments.hpp │ │ ├── JsonParser.hpp │ │ ├── JsonParserImpl.hpp │ │ └── StringWriter.hpp │ │ ├── DynamicJsonBuffer.hpp │ │ ├── JsonArray.hpp │ │ ├── JsonArrayImpl.hpp │ │ ├── JsonArraySubscript.hpp │ │ ├── JsonBuffer.hpp │ │ ├── JsonBufferBase.hpp │ │ ├── JsonBufferImpl.hpp │ │ ├── JsonObject.hpp │ │ ├── JsonObjectImpl.hpp │ │ ├── JsonObjectSubscript.hpp │ │ ├── JsonPair.hpp │ │ ├── JsonVariant.hpp │ │ ├── JsonVariantBase.hpp │ │ ├── JsonVariantCasts.hpp │ │ ├── JsonVariantComparisons.hpp │ │ ├── JsonVariantImpl.hpp │ │ ├── JsonVariantOr.hpp │ │ ├── JsonVariantSubscripts.hpp │ │ ├── Polyfills │ │ ├── attributes.hpp │ │ ├── ctype.hpp │ │ ├── isFloat.hpp │ │ ├── isInteger.hpp │ │ ├── math.hpp │ │ ├── parseFloat.hpp │ │ └── parseInteger.hpp │ │ ├── RawJson.hpp │ │ ├── Serialization │ │ ├── DummyPrint.hpp │ │ ├── DynamicStringBuilder.hpp │ │ ├── FloatParts.hpp │ │ ├── IndentedPrint.hpp │ │ ├── JsonPrintable.hpp │ │ ├── JsonSerializer.hpp │ │ ├── JsonSerializerImpl.hpp │ │ ├── JsonWriter.hpp │ │ ├── Prettyfier.hpp │ │ ├── StaticStringBuilder.hpp │ │ └── StreamPrintAdapter.hpp │ │ ├── StaticJsonBuffer.hpp │ │ ├── StringTraits │ │ ├── ArduinoStream.hpp │ │ ├── CharPointer.hpp │ │ ├── FlashString.hpp │ │ ├── StdStream.hpp │ │ ├── StdString.hpp │ │ └── StringTraits.hpp │ │ ├── TypeTraits │ │ ├── EnableIf.hpp │ │ ├── FloatTraits.hpp │ │ ├── IsArray.hpp │ │ ├── IsBaseOf.hpp │ │ ├── IsChar.hpp │ │ ├── IsConst.hpp │ │ ├── IsFloatingPoint.hpp │ │ ├── IsIntegral.hpp │ │ ├── IsSame.hpp │ │ ├── IsSignedIntegral.hpp │ │ ├── IsUnsignedIntegral.hpp │ │ ├── IsVariant.hpp │ │ ├── RemoveConst.hpp │ │ └── RemoveReference.hpp │ │ └── version.hpp ├── ArduinoNTPd │ ├── NTPPacket.cpp │ ├── NTPPacket.h │ ├── NTPServer.cpp │ └── NTPServer.h ├── Arduino_ST7789-gemu-1.0 │ ├── Arduino_ST7789.cpp │ ├── Arduino_ST7789.h │ ├── README.txt │ ├── examples │ │ └── graphicstest │ │ │ └── graphicstest.ino │ ├── keywords.txt │ └── library.properties ├── BME680_driver-bme680_v3.5.9 │ ├── LICENSE │ ├── README.md │ ├── Self test │ │ ├── bme680_selftest.c │ │ └── bme680_selftest.h │ ├── bme680.c │ ├── bme680.h │ └── bme680_defs.h ├── C2Programmer-1.0.0 │ ├── README.md │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── c2.cpp │ │ ├── c2.h │ │ ├── ihx.cpp │ │ └── ihx.h ├── ESP8266Audio │ ├── .github │ │ └── workflows │ │ │ └── pr-or-master-push.yml │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── MixerSample │ │ │ ├── MixerSample.ino │ │ │ └── viola.h │ │ ├── PlayAACFromPROGMEM │ │ │ ├── PlayAACFromPROGMEM.ino │ │ │ ├── homer.aac │ │ │ └── sampleaac.h │ │ ├── PlayFLAC-SD-SPDIF │ │ │ └── PlayFLAC-SD-SPDIF.ino │ │ ├── PlayFLACFromPROGMEMToDAC │ │ │ ├── PlayFLACFromPROGMEMToDAC.ino │ │ │ └── sample.h │ │ ├── PlayMIDIFromLittleFS │ │ │ ├── PlayMIDIFromLittleFS.ino │ │ │ └── data │ │ │ │ ├── 1mgm.sf2 │ │ │ │ └── furelise.mid │ │ ├── PlayMIDIFromSPIFFS │ │ │ ├── PlayMIDIFromSPIFFS.ino │ │ │ └── data │ │ │ │ ├── 1mgm.sf2 │ │ │ │ └── furelise.mid │ │ ├── PlayMODFromPROGMEMToDAC │ │ │ ├── PlayMODFromPROGMEMToDAC.ino │ │ │ └── enigma.h │ │ ├── PlayMP3FromSPIFFS │ │ │ ├── PlayMP3FromSPIFFS.ino │ │ │ └── data │ │ │ │ └── pno-cs.mp3 │ │ ├── PlayMP3ToSPDIF │ │ │ └── PlayMP3ToSPDIF.ino │ │ ├── PlayOpusFromSPIFFS │ │ │ ├── PlayOpusFromSPIFFS.ino │ │ │ └── data │ │ │ │ └── gs-16b-2c-44100hz.opus │ │ ├── PlayRTTTLToI2SDAC │ │ │ └── PlayRTTTLToI2SDAC.ino │ │ ├── PlayWAVFromPROGMEM │ │ │ ├── PlayWAVFromPROGMEM.ino │ │ │ └── viola.h │ │ ├── StreamMP3FromHTTP │ │ │ └── StreamMP3FromHTTP.ino │ │ ├── StreamMP3FromHTTP_SPIRAM │ │ │ ├── Schema_Spiram.png │ │ │ └── StreamMP3FromHTTP_SPIRAM.ino │ │ ├── TalkingClockI2S │ │ │ └── TalkingClockI2S.ino │ │ └── WebRadio │ │ │ ├── WebRadio.ino │ │ │ ├── web.cpp │ │ │ └── web.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── src │ │ ├── AudioFileSource.h │ │ ├── AudioFileSourceBuffer.cpp │ │ ├── AudioFileSourceBuffer.h │ │ ├── AudioFileSourceFATFS.h │ │ ├── AudioFileSourceFS.cpp │ │ ├── AudioFileSourceFS.h │ │ ├── AudioFileSourceHTTPStream.cpp │ │ ├── AudioFileSourceHTTPStream.h │ │ ├── AudioFileSourceICYStream.cpp │ │ ├── AudioFileSourceICYStream.h │ │ ├── AudioFileSourceID3.cpp │ │ ├── AudioFileSourceID3.h │ │ ├── AudioFileSourceLittleFS.h │ │ ├── AudioFileSourcePROGMEM.cpp │ │ ├── AudioFileSourcePROGMEM.h │ │ ├── AudioFileSourceSD.cpp │ │ ├── AudioFileSourceSD.h │ │ ├── AudioFileSourceSPIFFS.h │ │ ├── AudioFileSourceSPIRAMBuffer.cpp │ │ ├── AudioFileSourceSPIRAMBuffer.h │ │ ├── AudioFileSourceSTDIO.cpp │ │ ├── AudioFileSourceSTDIO.h │ │ ├── AudioFileStream.cpp │ │ ├── AudioFileStream.h │ │ ├── AudioGenerator.h │ │ ├── AudioGeneratorAAC.cpp │ │ ├── AudioGeneratorAAC.h │ │ ├── AudioGeneratorFLAC.cpp │ │ ├── AudioGeneratorFLAC.h │ │ ├── AudioGeneratorMIDI.cpp │ │ ├── AudioGeneratorMIDI.h │ │ ├── AudioGeneratorMOD.cpp │ │ ├── AudioGeneratorMOD.h │ │ ├── AudioGeneratorMP3.cpp │ │ ├── AudioGeneratorMP3.h │ │ ├── AudioGeneratorMP3a.cpp │ │ ├── AudioGeneratorMP3a.h │ │ ├── AudioGeneratorOpus.cpp │ │ ├── AudioGeneratorOpus.h │ │ ├── AudioGeneratorRTTTL.cpp │ │ ├── AudioGeneratorRTTTL.h │ │ ├── AudioGeneratorTalkie.cpp │ │ ├── AudioGeneratorTalkie.h │ │ ├── AudioGeneratorWAV.cpp │ │ ├── AudioGeneratorWAV.h │ │ ├── AudioLogger.cpp │ │ ├── AudioLogger.h │ │ ├── AudioOutput.h │ │ ├── AudioOutputBuffer.cpp │ │ ├── AudioOutputBuffer.h │ │ ├── AudioOutputFilterDecimate.cpp │ │ ├── AudioOutputFilterDecimate.h │ │ ├── AudioOutputI2S.cpp │ │ ├── AudioOutputI2S.h │ │ ├── AudioOutputI2SNoDAC.cpp │ │ ├── AudioOutputI2SNoDAC.h │ │ ├── AudioOutputMixer.cpp │ │ ├── AudioOutputMixer.h │ │ ├── AudioOutputNull.h │ │ ├── AudioOutputSPDIF.cpp │ │ ├── AudioOutputSPDIF.h │ │ ├── AudioOutputSPIFFSWAV.cpp │ │ ├── AudioOutputSPIFFSWAV.h │ │ ├── AudioOutputSTDIO.cpp │ │ ├── AudioOutputSTDIO.h │ │ ├── AudioOutputSerialWAV.cpp │ │ ├── AudioOutputSerialWAV.h │ │ ├── AudioStatus.h │ │ ├── driver │ │ │ ├── SinglePinI2SDriver.cpp │ │ │ └── SinglePinI2SDriver.h │ │ ├── libflac │ │ │ ├── AUTHORS │ │ │ ├── COPYING.FDL │ │ │ ├── COPYING.GPL │ │ │ ├── COPYING.LGPL │ │ │ ├── COPYING.Xiph │ │ │ ├── FLAC │ │ │ │ ├── assert.h │ │ │ │ ├── callback.h │ │ │ │ ├── export.h │ │ │ │ ├── format.h │ │ │ │ ├── metadata.h │ │ │ │ ├── ordinals.h │ │ │ │ └── stream_decoder.h │ │ │ ├── README │ │ │ ├── README.ESP8266 │ │ │ ├── bitmath.c │ │ │ ├── bitreader.c │ │ │ ├── config.h │ │ │ ├── cpu.c │ │ │ ├── crc.c │ │ │ ├── fixed.c │ │ │ ├── float.c │ │ │ ├── format.c │ │ │ ├── lpc.c │ │ │ ├── md5.c │ │ │ ├── memory.c │ │ │ ├── private │ │ │ │ ├── bitmath.h │ │ │ │ ├── bitreader.h │ │ │ │ ├── cpu.h │ │ │ │ ├── crc.h │ │ │ │ ├── fixed.h │ │ │ │ ├── float.h │ │ │ │ ├── format.h │ │ │ │ ├── lpc.h │ │ │ │ ├── macros.h │ │ │ │ ├── md5.h │ │ │ │ ├── memory.h │ │ │ │ ├── metadata.h │ │ │ │ └── window.h │ │ │ ├── protected │ │ │ │ ├── all.h │ │ │ │ ├── stream_decoder.h │ │ │ │ └── stream_encoder.h │ │ │ ├── share │ │ │ │ ├── alloc.h │ │ │ │ ├── compat.h │ │ │ │ ├── endswap.h │ │ │ │ ├── getopt.h │ │ │ │ ├── macros.h │ │ │ │ ├── private.h │ │ │ │ ├── safe_str.h │ │ │ │ └── utf8.h │ │ │ ├── stream_decoder.c │ │ │ └── window.c │ │ ├── libhelix-aac │ │ │ ├── aaccommon.h │ │ │ ├── aacdec.c │ │ │ ├── aacdec.h │ │ │ ├── aactabs.c │ │ │ ├── assembly.h │ │ │ ├── bitstream.c │ │ │ ├── bitstream.h │ │ │ ├── buffers.c │ │ │ ├── coder.h │ │ │ ├── dct4.c │ │ │ ├── decelmnt.c │ │ │ ├── dequant.c │ │ │ ├── fft.c │ │ │ ├── filefmt.c │ │ │ ├── huffman.c │ │ │ ├── hufftabs.c │ │ │ ├── imdct.c │ │ │ ├── noiseless.c │ │ │ ├── pns.c │ │ │ ├── readme.txt │ │ │ ├── sbr.c │ │ │ ├── sbr.h │ │ │ ├── sbrfft.c │ │ │ ├── sbrfreq.c │ │ │ ├── sbrhfadj.c │ │ │ ├── sbrhfgen.c │ │ │ ├── sbrhuff.c │ │ │ ├── sbrimdct.c │ │ │ ├── sbrmath.c │ │ │ ├── sbrqmf.c │ │ │ ├── sbrside.c │ │ │ ├── sbrtabs.c │ │ │ ├── statname.h │ │ │ ├── stproc.c │ │ │ ├── tns.c │ │ │ └── trigtabs.c │ │ ├── libhelix-mp3 │ │ │ ├── LICENSE.txt │ │ │ ├── RCSL.txt │ │ │ ├── RPSL.txt │ │ │ ├── assembly.h │ │ │ ├── bitstream.c │ │ │ ├── buffers.c │ │ │ ├── coder.h │ │ │ ├── dct32.c │ │ │ ├── dequant.c │ │ │ ├── dqchan.c │ │ │ ├── huffman.c │ │ │ ├── hufftabs.c │ │ │ ├── imdct.c │ │ │ ├── mp3common.h │ │ │ ├── mp3dec.c │ │ │ ├── mp3dec.h │ │ │ ├── mp3tabs.c │ │ │ ├── mpadecobjfixpt.h │ │ │ ├── player.h │ │ │ ├── polyphase.c │ │ │ ├── scalfact.c │ │ │ ├── statname.h │ │ │ ├── stproc.c │ │ │ ├── subband.c │ │ │ └── trigtabs.c │ │ ├── libmad │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── COPYRIGHT │ │ │ ├── CREDITS │ │ │ ├── D.dat.h │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── README.ESP8266 │ │ │ ├── TODO │ │ │ ├── VERSION │ │ │ ├── bit.c │ │ │ ├── bit.h │ │ │ ├── config.h │ │ │ ├── decoder.c │ │ │ ├── decoder.h │ │ │ ├── fixed.c │ │ │ ├── fixed.h │ │ │ ├── frame.c │ │ │ ├── frame.h │ │ │ ├── global.h │ │ │ ├── huffman.c │ │ │ ├── huffman.h │ │ │ ├── imdct_s.dat.h │ │ │ ├── layer3.c │ │ │ ├── layer3.h │ │ │ ├── mad.h │ │ │ ├── mad.h.sed │ │ │ ├── qc_table.dat.h │ │ │ ├── rq_table.dat.h │ │ │ ├── sf_table.dat.h │ │ │ ├── stream.c │ │ │ ├── stream.h │ │ │ ├── synth.c │ │ │ ├── synth.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── version.c │ │ │ └── version.h │ │ ├── libogg │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README.esp8266.md │ │ │ ├── README.md │ │ │ ├── bitwise.c │ │ │ ├── config.h │ │ │ ├── crctable.h │ │ │ ├── framing.c │ │ │ ├── ogg.pc │ │ │ └── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ ├── libopus │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── analysis.h │ │ │ ├── celt │ │ │ │ ├── _kiss_fft_guts.h │ │ │ │ ├── arch.h │ │ │ │ ├── bands.c │ │ │ │ ├── bands.h │ │ │ │ ├── celt.c │ │ │ │ ├── celt.h │ │ │ │ ├── celt_decoder.c │ │ │ │ ├── celt_encoder.c │ │ │ │ ├── celt_lpc.c │ │ │ │ ├── celt_lpc.h │ │ │ │ ├── cpu_support.h │ │ │ │ ├── cwrs.c │ │ │ │ ├── cwrs.h │ │ │ │ ├── ecintrin.h │ │ │ │ ├── entcode.c │ │ │ │ ├── entcode.h │ │ │ │ ├── entdec.c │ │ │ │ ├── entdec.h │ │ │ │ ├── entenc.c │ │ │ │ ├── entenc.h │ │ │ │ ├── fixed_debug.h │ │ │ │ ├── fixed_generic.h │ │ │ │ ├── float_cast.h │ │ │ │ ├── kiss_fft.c │ │ │ │ ├── kiss_fft.h │ │ │ │ ├── laplace.c │ │ │ │ ├── laplace.h │ │ │ │ ├── mathops.c │ │ │ │ ├── mathops.h │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── mfrngcod.h │ │ │ │ ├── modes.c │ │ │ │ ├── modes.h │ │ │ │ ├── os_support.h │ │ │ │ ├── pitch.c │ │ │ │ ├── pitch.h │ │ │ │ ├── quant_bands.c │ │ │ │ ├── quant_bands.h │ │ │ │ ├── rate.c │ │ │ │ ├── rate.h │ │ │ │ ├── stack_alloc.h │ │ │ │ ├── static_modes_fixed.h │ │ │ │ ├── static_modes_float.h │ │ │ │ ├── vq.c │ │ │ │ └── vq.h │ │ │ ├── config.h │ │ │ ├── mapping_matrix.c │ │ │ ├── mapping_matrix.h │ │ │ ├── mlp.h │ │ │ ├── opus.c │ │ │ ├── opus.h │ │ │ ├── opus.pc │ │ │ ├── opus_custom.h │ │ │ ├── opus_decoder.c │ │ │ ├── opus_defines.h │ │ │ ├── opus_encoder.c │ │ │ ├── opus_multistream.c │ │ │ ├── opus_multistream.h │ │ │ ├── opus_multistream_decoder.c │ │ │ ├── opus_multistream_encoder.c │ │ │ ├── opus_private.h │ │ │ ├── opus_projection.h │ │ │ ├── opus_projection_decoder.c │ │ │ ├── opus_projection_encoder.c │ │ │ ├── opus_types.h │ │ │ ├── repacketizer.c │ │ │ ├── silk │ │ │ │ ├── A2NLSF.c │ │ │ │ ├── API.h │ │ │ │ ├── CNG.c │ │ │ │ ├── HP_variable_cutoff.c │ │ │ │ ├── Inlines.h │ │ │ │ ├── LPC_analysis_filter.c │ │ │ │ ├── LPC_fit.c │ │ │ │ ├── LPC_inv_pred_gain.c │ │ │ │ ├── LP_variable_cutoff.c │ │ │ │ ├── MacroCount.h │ │ │ │ ├── MacroDebug.h │ │ │ │ ├── NLSF2A.c │ │ │ │ ├── NLSF_VQ.c │ │ │ │ ├── NLSF_VQ_weights_laroia.c │ │ │ │ ├── NLSF_decode.c │ │ │ │ ├── NLSF_del_dec_quant.c │ │ │ │ ├── NLSF_encode.c │ │ │ │ ├── NLSF_stabilize.c │ │ │ │ ├── NLSF_unpack.c │ │ │ │ ├── NSQ.c │ │ │ │ ├── NSQ.h │ │ │ │ ├── NSQ_del_dec.c │ │ │ │ ├── PLC.c │ │ │ │ ├── PLC.h │ │ │ │ ├── SigProc_FIX.h │ │ │ │ ├── VAD.c │ │ │ │ ├── VQ_WMat_EC.c │ │ │ │ ├── ana_filt_bank_1.c │ │ │ │ ├── biquad_alt.c │ │ │ │ ├── bwexpander.c │ │ │ │ ├── bwexpander_32.c │ │ │ │ ├── check_control_input.c │ │ │ │ ├── code_signs.c │ │ │ │ ├── control.h │ │ │ │ ├── control_SNR.c │ │ │ │ ├── control_audio_bandwidth.c │ │ │ │ ├── control_codec.c │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── dec_API.c │ │ │ │ ├── decode_core.c │ │ │ │ ├── decode_frame.c │ │ │ │ ├── decode_indices.c │ │ │ │ ├── decode_parameters.c │ │ │ │ ├── decode_pitch.c │ │ │ │ ├── decode_pulses.c │ │ │ │ ├── decoder_set_fs.c │ │ │ │ ├── define.h │ │ │ │ ├── enc_API.c │ │ │ │ ├── encode_indices.c │ │ │ │ ├── encode_pulses.c │ │ │ │ ├── errors.h │ │ │ │ ├── fixed │ │ │ │ │ ├── LTP_analysis_filter_FIX.c │ │ │ │ │ ├── LTP_analysis_filter_FIX.lo │ │ │ │ │ ├── LTP_analysis_filter_FIX.o │ │ │ │ │ ├── LTP_scale_ctrl_FIX.c │ │ │ │ │ ├── LTP_scale_ctrl_FIX.lo │ │ │ │ │ ├── LTP_scale_ctrl_FIX.o │ │ │ │ │ ├── apply_sine_window_FIX.c │ │ │ │ │ ├── apply_sine_window_FIX.lo │ │ │ │ │ ├── apply_sine_window_FIX.o │ │ │ │ │ ├── autocorr_FIX.c │ │ │ │ │ ├── autocorr_FIX.lo │ │ │ │ │ ├── autocorr_FIX.o │ │ │ │ │ ├── burg_modified_FIX.c │ │ │ │ │ ├── burg_modified_FIX.lo │ │ │ │ │ ├── burg_modified_FIX.o │ │ │ │ │ ├── corrMatrix_FIX.c │ │ │ │ │ ├── corrMatrix_FIX.lo │ │ │ │ │ ├── corrMatrix_FIX.o │ │ │ │ │ ├── encode_frame_FIX.c │ │ │ │ │ ├── encode_frame_FIX.lo │ │ │ │ │ ├── encode_frame_FIX.o │ │ │ │ │ ├── find_LPC_FIX.c │ │ │ │ │ ├── find_LPC_FIX.lo │ │ │ │ │ ├── find_LPC_FIX.o │ │ │ │ │ ├── find_LTP_FIX.c │ │ │ │ │ ├── find_LTP_FIX.lo │ │ │ │ │ ├── find_LTP_FIX.o │ │ │ │ │ ├── find_pitch_lags_FIX.c │ │ │ │ │ ├── find_pitch_lags_FIX.lo │ │ │ │ │ ├── find_pitch_lags_FIX.o │ │ │ │ │ ├── find_pred_coefs_FIX.c │ │ │ │ │ ├── find_pred_coefs_FIX.lo │ │ │ │ │ ├── find_pred_coefs_FIX.o │ │ │ │ │ ├── k2a_FIX.c │ │ │ │ │ ├── k2a_FIX.lo │ │ │ │ │ ├── k2a_FIX.o │ │ │ │ │ ├── k2a_Q16_FIX.c │ │ │ │ │ ├── k2a_Q16_FIX.lo │ │ │ │ │ ├── k2a_Q16_FIX.o │ │ │ │ │ ├── main_FIX.h │ │ │ │ │ ├── noise_shape_analysis_FIX.c │ │ │ │ │ ├── noise_shape_analysis_FIX.lo │ │ │ │ │ ├── noise_shape_analysis_FIX.o │ │ │ │ │ ├── pitch_analysis_core_FIX.c │ │ │ │ │ ├── pitch_analysis_core_FIX.lo │ │ │ │ │ ├── pitch_analysis_core_FIX.o │ │ │ │ │ ├── process_gains_FIX.c │ │ │ │ │ ├── process_gains_FIX.lo │ │ │ │ │ ├── process_gains_FIX.o │ │ │ │ │ ├── regularize_correlations_FIX.c │ │ │ │ │ ├── regularize_correlations_FIX.lo │ │ │ │ │ ├── regularize_correlations_FIX.o │ │ │ │ │ ├── residual_energy16_FIX.c │ │ │ │ │ ├── residual_energy16_FIX.lo │ │ │ │ │ ├── residual_energy16_FIX.o │ │ │ │ │ ├── residual_energy_FIX.c │ │ │ │ │ ├── residual_energy_FIX.lo │ │ │ │ │ ├── residual_energy_FIX.o │ │ │ │ │ ├── schur64_FIX.c │ │ │ │ │ ├── schur64_FIX.lo │ │ │ │ │ ├── schur64_FIX.o │ │ │ │ │ ├── schur_FIX.c │ │ │ │ │ ├── schur_FIX.lo │ │ │ │ │ ├── schur_FIX.o │ │ │ │ │ ├── structs_FIX.h │ │ │ │ │ ├── vector_ops_FIX.c │ │ │ │ │ ├── vector_ops_FIX.lo │ │ │ │ │ ├── vector_ops_FIX.o │ │ │ │ │ ├── warped_autocorrelation_FIX.c │ │ │ │ │ ├── warped_autocorrelation_FIX.lo │ │ │ │ │ └── warped_autocorrelation_FIX.o │ │ │ │ ├── gain_quant.c │ │ │ │ ├── init_decoder.c │ │ │ │ ├── init_encoder.c │ │ │ │ ├── inner_prod_aligned.c │ │ │ │ ├── interpolate.c │ │ │ │ ├── lin2log.c │ │ │ │ ├── log2lin.c │ │ │ │ ├── macros.h │ │ │ │ ├── main.h │ │ │ │ ├── pitch_est_defines.h │ │ │ │ ├── pitch_est_tables.c │ │ │ │ ├── process_NLSFs.c │ │ │ │ ├── quant_LTP_gains.c │ │ │ │ ├── resampler.c │ │ │ │ ├── resampler_down2.c │ │ │ │ ├── resampler_down2_3.c │ │ │ │ ├── resampler_private.h │ │ │ │ ├── resampler_private_AR2.c │ │ │ │ ├── resampler_private_IIR_FIR.c │ │ │ │ ├── resampler_private_down_FIR.c │ │ │ │ ├── resampler_private_up2_HQ.c │ │ │ │ ├── resampler_rom.c │ │ │ │ ├── resampler_rom.h │ │ │ │ ├── resampler_structs.h │ │ │ │ ├── shell_coder.c │ │ │ │ ├── sigm_Q15.c │ │ │ │ ├── sort.c │ │ │ │ ├── stereo_LR_to_MS.c │ │ │ │ ├── stereo_MS_to_LR.c │ │ │ │ ├── stereo_decode_pred.c │ │ │ │ ├── stereo_encode_pred.c │ │ │ │ ├── stereo_find_predictor.c │ │ │ │ ├── stereo_quant_pred.c │ │ │ │ ├── structs.h │ │ │ │ ├── sum_sqr_shift.c │ │ │ │ ├── table_LSF_cos.c │ │ │ │ ├── tables.h │ │ │ │ ├── tables_LTP.c │ │ │ │ ├── tables_NLSF_CB_NB_MB.c │ │ │ │ ├── tables_NLSF_CB_WB.c │ │ │ │ ├── tables_gain.c │ │ │ │ ├── tables_other.c │ │ │ │ ├── tables_pitch_lag.c │ │ │ │ ├── tables_pulses_per_block.c │ │ │ │ ├── tuning_parameters.h │ │ │ │ └── typedef.h │ │ │ └── tansig_table.h │ │ ├── libtinysoundfont │ │ │ ├── LICENSE │ │ │ ├── README.ESP8266 │ │ │ ├── README.md │ │ │ └── tsf.h │ │ ├── opusfile │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── README.esp8266.md │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── info.c │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── opusfile.c │ │ │ ├── opusfile.h │ │ │ ├── opusfile.pc │ │ │ └── stream.c │ │ └── spiram-fast.h │ └── tests │ │ ├── common.sh │ │ └── host │ │ ├── Arduino.h │ │ ├── Makefile │ │ ├── Serial.cpp │ │ ├── aac.cpp │ │ ├── midi.cpp │ │ ├── mp3.cpp │ │ ├── opus.cpp │ │ ├── pgmspace.h │ │ ├── test_8u_16.wav │ │ └── wav.cpp ├── ESP8266SAM │ ├── README.md │ ├── examples │ │ └── Speak │ │ │ └── Speak.ino │ ├── library.json │ ├── library.properties │ └── src │ │ ├── ESP8266SAM.cpp │ │ ├── ESP8266SAM.h │ │ ├── ReciterTabs.h │ │ ├── RenderTabs.h │ │ ├── SamData.h │ │ ├── SamTabs.h │ │ ├── reciter.c │ │ ├── reciter.h │ │ ├── render.c │ │ ├── render.h │ │ ├── sam.c │ │ ├── sam.h │ │ ├── samdebug.c │ │ └── samdebug.h ├── FT5206_Library │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── FT5206.cpp │ │ └── FT5206.h ├── FrogmoreScd30 │ ├── FrogmoreScd30.cpp │ └── FrogmoreScd30.h ├── HPMA115S0 │ ├── LICENSE.md │ ├── README.md │ ├── example │ │ └── example.ino │ ├── library.properties │ └── src │ │ ├── hpma115S0.cpp │ │ └── hpma115S0.h ├── I2Cdevlib-Core │ ├── .library.json │ ├── I2Cdev.cpp │ ├── I2Cdev.h │ ├── keywords.txt │ └── library.json ├── I2Cdevlib-MPU6050 │ ├── Examples │ │ ├── MPU6050_DMP6 │ │ │ ├── MPU6050_DMP6.ino │ │ │ └── Processing │ │ │ │ └── MPUTeapot │ │ │ │ └── MPUTeapot.pde │ │ └── MPU6050_raw │ │ │ └── MPU6050_raw.ino │ ├── MPU6050.cpp │ ├── MPU6050.h │ ├── MPU6050_6Axis_MotionApps20.h │ ├── MPU6050_9Axis_MotionApps41.h │ └── helper_3dmath.h ├── IRremoteESP8266-2.7.10 │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── Contributors.md │ │ └── issue_template.md │ ├── .gitignore │ ├── .gitmodules │ ├── .style.yapf │ ├── .travis.yml │ ├── CPPLINT.cfg │ ├── Doxyfile │ ├── LICENSE.txt │ ├── README.md │ ├── README_fr.md │ ├── ReleaseNotes.md │ ├── SupportedProtocols.md │ ├── docs │ │ ├── README.md │ │ ├── README_fr.md │ │ ├── _config.yml │ │ ├── doxygen │ │ │ └── html │ │ │ │ ├── IRac_8cpp.html │ │ │ │ ├── IRac_8h.html │ │ │ │ ├── IRac_8h_source.html │ │ │ │ ├── IRrecv_8cpp.html │ │ │ │ ├── IRrecv_8h.html │ │ │ │ ├── IRrecv_8h_source.html │ │ │ │ ├── IRremoteESP8266_8h.html │ │ │ │ ├── IRremoteESP8266_8h_source.html │ │ │ │ ├── IRsend_8cpp.html │ │ │ │ ├── IRsend_8h.html │ │ │ │ ├── IRsend_8h_source.html │ │ │ │ ├── IRtext_8cpp.html │ │ │ │ ├── IRtext_8h.html │ │ │ │ ├── IRtext_8h_source.html │ │ │ │ ├── IRtimer_8cpp.html │ │ │ │ ├── IRtimer_8h.html │ │ │ │ ├── IRtimer_8h_source.html │ │ │ │ ├── IRutils_8cpp.html │ │ │ │ ├── IRutils_8h.html │ │ │ │ ├── IRutils_8h_source.html │ │ │ │ ├── README_8md.html │ │ │ │ ├── annotated.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── classIRAirwellAc-members.html │ │ │ │ ├── classIRAirwellAc.html │ │ │ │ ├── classIRAirwellAc__coll__graph.map │ │ │ │ ├── classIRAirwellAc__coll__graph.md5 │ │ │ │ ├── classIRAirwellAc__coll__graph.png │ │ │ │ ├── classIRAmcorAc-members.html │ │ │ │ ├── classIRAmcorAc.html │ │ │ │ ├── classIRAmcorAc__coll__graph.map │ │ │ │ ├── classIRAmcorAc__coll__graph.md5 │ │ │ │ ├── classIRAmcorAc__coll__graph.png │ │ │ │ ├── classIRArgoAC-members.html │ │ │ │ ├── classIRArgoAC.html │ │ │ │ ├── classIRArgoAC__coll__graph.map │ │ │ │ ├── classIRArgoAC__coll__graph.md5 │ │ │ │ ├── classIRArgoAC__coll__graph.png │ │ │ │ ├── classIRCarrierAc64-members.html │ │ │ │ ├── classIRCarrierAc64.html │ │ │ │ ├── classIRCarrierAc64__coll__graph.map │ │ │ │ ├── classIRCarrierAc64__coll__graph.md5 │ │ │ │ ├── classIRCarrierAc64__coll__graph.png │ │ │ │ ├── classIRCoolixAC-members.html │ │ │ │ ├── classIRCoolixAC.html │ │ │ │ ├── classIRCoolixAC__coll__graph.map │ │ │ │ ├── classIRCoolixAC__coll__graph.md5 │ │ │ │ ├── classIRCoolixAC__coll__graph.png │ │ │ │ ├── classIRCoronaAc-members.html │ │ │ │ ├── classIRCoronaAc.html │ │ │ │ ├── classIRCoronaAc__coll__graph.map │ │ │ │ ├── classIRCoronaAc__coll__graph.md5 │ │ │ │ ├── classIRCoronaAc__coll__graph.png │ │ │ │ ├── classIRDaikin128-members.html │ │ │ │ ├── classIRDaikin128.html │ │ │ │ ├── classIRDaikin128__coll__graph.map │ │ │ │ ├── classIRDaikin128__coll__graph.md5 │ │ │ │ ├── classIRDaikin128__coll__graph.png │ │ │ │ ├── classIRDaikin152-members.html │ │ │ │ ├── classIRDaikin152.html │ │ │ │ ├── classIRDaikin152__coll__graph.map │ │ │ │ ├── classIRDaikin152__coll__graph.md5 │ │ │ │ ├── classIRDaikin152__coll__graph.png │ │ │ │ ├── classIRDaikin160-members.html │ │ │ │ ├── classIRDaikin160.html │ │ │ │ ├── classIRDaikin160__coll__graph.map │ │ │ │ ├── classIRDaikin160__coll__graph.md5 │ │ │ │ ├── classIRDaikin160__coll__graph.png │ │ │ │ ├── classIRDaikin176-members.html │ │ │ │ ├── classIRDaikin176.html │ │ │ │ ├── classIRDaikin176__coll__graph.map │ │ │ │ ├── classIRDaikin176__coll__graph.md5 │ │ │ │ ├── classIRDaikin176__coll__graph.png │ │ │ │ ├── classIRDaikin2-members.html │ │ │ │ ├── classIRDaikin2.html │ │ │ │ ├── classIRDaikin216-members.html │ │ │ │ ├── classIRDaikin216.html │ │ │ │ ├── classIRDaikin216__coll__graph.map │ │ │ │ ├── classIRDaikin216__coll__graph.md5 │ │ │ │ ├── classIRDaikin216__coll__graph.png │ │ │ │ ├── classIRDaikin2__coll__graph.map │ │ │ │ ├── classIRDaikin2__coll__graph.md5 │ │ │ │ ├── classIRDaikin2__coll__graph.png │ │ │ │ ├── classIRDaikin64-members.html │ │ │ │ ├── classIRDaikin64.html │ │ │ │ ├── classIRDaikin64__coll__graph.map │ │ │ │ ├── classIRDaikin64__coll__graph.md5 │ │ │ │ ├── classIRDaikin64__coll__graph.png │ │ │ │ ├── classIRDaikinESP-members.html │ │ │ │ ├── classIRDaikinESP.html │ │ │ │ ├── classIRDaikinESP__coll__graph.map │ │ │ │ ├── classIRDaikinESP__coll__graph.md5 │ │ │ │ ├── classIRDaikinESP__coll__graph.png │ │ │ │ ├── classIRDelonghiAc-members.html │ │ │ │ ├── classIRDelonghiAc.html │ │ │ │ ├── classIRDelonghiAc__coll__graph.map │ │ │ │ ├── classIRDelonghiAc__coll__graph.md5 │ │ │ │ ├── classIRDelonghiAc__coll__graph.png │ │ │ │ ├── classIRElectraAc-members.html │ │ │ │ ├── classIRElectraAc.html │ │ │ │ ├── classIRElectraAc__coll__graph.map │ │ │ │ ├── classIRElectraAc__coll__graph.md5 │ │ │ │ ├── classIRElectraAc__coll__graph.png │ │ │ │ ├── classIRFujitsuAC-members.html │ │ │ │ ├── classIRFujitsuAC.html │ │ │ │ ├── classIRFujitsuAC__coll__graph.map │ │ │ │ ├── classIRFujitsuAC__coll__graph.md5 │ │ │ │ ├── classIRFujitsuAC__coll__graph.png │ │ │ │ ├── classIRGoodweatherAc-members.html │ │ │ │ ├── classIRGoodweatherAc.html │ │ │ │ ├── classIRGoodweatherAc__coll__graph.map │ │ │ │ ├── classIRGoodweatherAc__coll__graph.md5 │ │ │ │ ├── classIRGoodweatherAc__coll__graph.png │ │ │ │ ├── classIRGreeAC-members.html │ │ │ │ ├── classIRGreeAC.html │ │ │ │ ├── classIRGreeAC__coll__graph.map │ │ │ │ ├── classIRGreeAC__coll__graph.md5 │ │ │ │ ├── classIRGreeAC__coll__graph.png │ │ │ │ ├── classIRHaierAC-members.html │ │ │ │ ├── classIRHaierAC.html │ │ │ │ ├── classIRHaierACYRW02-members.html │ │ │ │ ├── classIRHaierACYRW02.html │ │ │ │ ├── classIRHaierACYRW02__coll__graph.map │ │ │ │ ├── classIRHaierACYRW02__coll__graph.md5 │ │ │ │ ├── classIRHaierACYRW02__coll__graph.png │ │ │ │ ├── classIRHaierAC__coll__graph.map │ │ │ │ ├── classIRHaierAC__coll__graph.md5 │ │ │ │ ├── classIRHaierAC__coll__graph.png │ │ │ │ ├── classIRHitachiAc-members.html │ │ │ │ ├── classIRHitachiAc.html │ │ │ │ ├── classIRHitachiAc1-members.html │ │ │ │ ├── classIRHitachiAc1.html │ │ │ │ ├── classIRHitachiAc1__coll__graph.map │ │ │ │ ├── classIRHitachiAc1__coll__graph.md5 │ │ │ │ ├── classIRHitachiAc1__coll__graph.png │ │ │ │ ├── classIRHitachiAc3-members.html │ │ │ │ ├── classIRHitachiAc3.html │ │ │ │ ├── classIRHitachiAc344-members.html │ │ │ │ ├── classIRHitachiAc344.html │ │ │ │ ├── classIRHitachiAc344__coll__graph.map │ │ │ │ ├── classIRHitachiAc344__coll__graph.md5 │ │ │ │ ├── classIRHitachiAc344__coll__graph.png │ │ │ │ ├── classIRHitachiAc344__inherit__graph.map │ │ │ │ ├── classIRHitachiAc344__inherit__graph.md5 │ │ │ │ ├── classIRHitachiAc344__inherit__graph.png │ │ │ │ ├── classIRHitachiAc3__coll__graph.map │ │ │ │ ├── classIRHitachiAc3__coll__graph.md5 │ │ │ │ ├── classIRHitachiAc3__coll__graph.png │ │ │ │ ├── classIRHitachiAc424-members.html │ │ │ │ ├── classIRHitachiAc424.html │ │ │ │ ├── classIRHitachiAc424__coll__graph.map │ │ │ │ ├── classIRHitachiAc424__coll__graph.md5 │ │ │ │ ├── classIRHitachiAc424__coll__graph.png │ │ │ │ ├── classIRHitachiAc424__inherit__graph.map │ │ │ │ ├── classIRHitachiAc424__inherit__graph.md5 │ │ │ │ ├── classIRHitachiAc424__inherit__graph.png │ │ │ │ ├── classIRHitachiAc__coll__graph.map │ │ │ │ ├── classIRHitachiAc__coll__graph.md5 │ │ │ │ ├── classIRHitachiAc__coll__graph.png │ │ │ │ ├── classIRKelvinatorAC-members.html │ │ │ │ ├── classIRKelvinatorAC.html │ │ │ │ ├── classIRKelvinatorAC__coll__graph.map │ │ │ │ ├── classIRKelvinatorAC__coll__graph.md5 │ │ │ │ ├── classIRKelvinatorAC__coll__graph.png │ │ │ │ ├── classIRLgAc-members.html │ │ │ │ ├── classIRLgAc.html │ │ │ │ ├── classIRLgAc__coll__graph.map │ │ │ │ ├── classIRLgAc__coll__graph.md5 │ │ │ │ ├── classIRLgAc__coll__graph.png │ │ │ │ ├── classIRMideaAC-members.html │ │ │ │ ├── classIRMideaAC.html │ │ │ │ ├── classIRMideaAC__coll__graph.map │ │ │ │ ├── classIRMideaAC__coll__graph.md5 │ │ │ │ ├── classIRMideaAC__coll__graph.png │ │ │ │ ├── classIRMitsubishi112-members.html │ │ │ │ ├── classIRMitsubishi112.html │ │ │ │ ├── classIRMitsubishi112__coll__graph.map │ │ │ │ ├── classIRMitsubishi112__coll__graph.md5 │ │ │ │ ├── classIRMitsubishi112__coll__graph.png │ │ │ │ ├── classIRMitsubishi136-members.html │ │ │ │ ├── classIRMitsubishi136.html │ │ │ │ ├── classIRMitsubishi136__coll__graph.map │ │ │ │ ├── classIRMitsubishi136__coll__graph.md5 │ │ │ │ ├── classIRMitsubishi136__coll__graph.png │ │ │ │ ├── classIRMitsubishiAC-members.html │ │ │ │ ├── classIRMitsubishiAC.html │ │ │ │ ├── classIRMitsubishiAC__coll__graph.map │ │ │ │ ├── classIRMitsubishiAC__coll__graph.md5 │ │ │ │ ├── classIRMitsubishiAC__coll__graph.png │ │ │ │ ├── classIRMitsubishiHeavy152Ac-members.html │ │ │ │ ├── classIRMitsubishiHeavy152Ac.html │ │ │ │ ├── classIRMitsubishiHeavy152Ac__coll__graph.map │ │ │ │ ├── classIRMitsubishiHeavy152Ac__coll__graph.md5 │ │ │ │ ├── classIRMitsubishiHeavy152Ac__coll__graph.png │ │ │ │ ├── classIRMitsubishiHeavy88Ac-members.html │ │ │ │ ├── classIRMitsubishiHeavy88Ac.html │ │ │ │ ├── classIRMitsubishiHeavy88Ac__coll__graph.map │ │ │ │ ├── classIRMitsubishiHeavy88Ac__coll__graph.md5 │ │ │ │ ├── classIRMitsubishiHeavy88Ac__coll__graph.png │ │ │ │ ├── classIRNeoclimaAc-members.html │ │ │ │ ├── classIRNeoclimaAc.html │ │ │ │ ├── classIRNeoclimaAc__coll__graph.map │ │ │ │ ├── classIRNeoclimaAc__coll__graph.md5 │ │ │ │ ├── classIRNeoclimaAc__coll__graph.png │ │ │ │ ├── classIRPanasonicAc-members.html │ │ │ │ ├── classIRPanasonicAc.html │ │ │ │ ├── classIRPanasonicAc__coll__graph.map │ │ │ │ ├── classIRPanasonicAc__coll__graph.md5 │ │ │ │ ├── classIRPanasonicAc__coll__graph.png │ │ │ │ ├── classIRSamsungAc-members.html │ │ │ │ ├── classIRSamsungAc.html │ │ │ │ ├── classIRSamsungAc__coll__graph.map │ │ │ │ ├── classIRSamsungAc__coll__graph.md5 │ │ │ │ ├── classIRSamsungAc__coll__graph.png │ │ │ │ ├── classIRSanyoAc-members.html │ │ │ │ ├── classIRSanyoAc.html │ │ │ │ ├── classIRSanyoAc__coll__graph.map │ │ │ │ ├── classIRSanyoAc__coll__graph.md5 │ │ │ │ ├── classIRSanyoAc__coll__graph.png │ │ │ │ ├── classIRSharpAc-members.html │ │ │ │ ├── classIRSharpAc.html │ │ │ │ ├── classIRSharpAc__coll__graph.map │ │ │ │ ├── classIRSharpAc__coll__graph.md5 │ │ │ │ ├── classIRSharpAc__coll__graph.png │ │ │ │ ├── classIRTcl112Ac-members.html │ │ │ │ ├── classIRTcl112Ac.html │ │ │ │ ├── classIRTcl112Ac__coll__graph.map │ │ │ │ ├── classIRTcl112Ac__coll__graph.md5 │ │ │ │ ├── classIRTcl112Ac__coll__graph.png │ │ │ │ ├── classIRTecoAc-members.html │ │ │ │ ├── classIRTecoAc.html │ │ │ │ ├── classIRTecoAc__coll__graph.map │ │ │ │ ├── classIRTecoAc__coll__graph.md5 │ │ │ │ ├── classIRTecoAc__coll__graph.png │ │ │ │ ├── classIRToshibaAC-members.html │ │ │ │ ├── classIRToshibaAC.html │ │ │ │ ├── classIRToshibaAC__coll__graph.map │ │ │ │ ├── classIRToshibaAC__coll__graph.md5 │ │ │ │ ├── classIRToshibaAC__coll__graph.png │ │ │ │ ├── classIRTrotecESP-members.html │ │ │ │ ├── classIRTrotecESP.html │ │ │ │ ├── classIRTrotecESP__coll__graph.map │ │ │ │ ├── classIRTrotecESP__coll__graph.md5 │ │ │ │ ├── classIRTrotecESP__coll__graph.png │ │ │ │ ├── classIRVestelAc-members.html │ │ │ │ ├── classIRVestelAc.html │ │ │ │ ├── classIRVestelAc__coll__graph.map │ │ │ │ ├── classIRVestelAc__coll__graph.md5 │ │ │ │ ├── classIRVestelAc__coll__graph.png │ │ │ │ ├── classIRVoltas-members.html │ │ │ │ ├── classIRVoltas.html │ │ │ │ ├── classIRVoltas__coll__graph.map │ │ │ │ ├── classIRVoltas__coll__graph.md5 │ │ │ │ ├── classIRVoltas__coll__graph.png │ │ │ │ ├── classIRWhirlpoolAc-members.html │ │ │ │ ├── classIRWhirlpoolAc.html │ │ │ │ ├── classIRWhirlpoolAc__coll__graph.map │ │ │ │ ├── classIRWhirlpoolAc__coll__graph.md5 │ │ │ │ ├── classIRWhirlpoolAc__coll__graph.png │ │ │ │ ├── classIRac-members.html │ │ │ │ ├── classIRac.html │ │ │ │ ├── classIRac__coll__graph.map │ │ │ │ ├── classIRac__coll__graph.md5 │ │ │ │ ├── classIRac__coll__graph.png │ │ │ │ ├── classIRrecv-members.html │ │ │ │ ├── classIRrecv.html │ │ │ │ ├── classIRrecv__coll__graph.map │ │ │ │ ├── classIRrecv__coll__graph.md5 │ │ │ │ ├── classIRrecv__coll__graph.png │ │ │ │ ├── classIRsend-members.html │ │ │ │ ├── classIRsend.html │ │ │ │ ├── classIRtimer-members.html │ │ │ │ ├── classIRtimer.html │ │ │ │ ├── classTimerMs-members.html │ │ │ │ ├── classTimerMs.html │ │ │ │ ├── classdecode__results-members.html │ │ │ │ ├── classdecode__results.html │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── de-CH_8h.html │ │ │ │ ├── de-CH_8h_source.html │ │ │ │ ├── de-DE_8h.html │ │ │ │ ├── de-DE_8h_source.html │ │ │ │ ├── defaults_8h.html │ │ │ │ ├── defaults_8h_source.html │ │ │ │ ├── deprecated.html │ │ │ │ ├── dir_49e56c817e5e54854c35e136979f97ca.html │ │ │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.html │ │ │ │ ├── dir_84fe998d1eb06414cc389ad334e77e63.html │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── doxygen__index_8md.html │ │ │ │ ├── dynsections.js │ │ │ │ ├── en-AU_8h.html │ │ │ │ ├── en-AU_8h_source.html │ │ │ │ ├── en-IE_8h.html │ │ │ │ ├── en-IE_8h_source.html │ │ │ │ ├── en-UK_8h.html │ │ │ │ ├── en-UK_8h_source.html │ │ │ │ ├── en-US_8h.html │ │ │ │ ├── en-US_8h_source.html │ │ │ │ ├── es-ES_8h.html │ │ │ │ ├── es-ES_8h_source.html │ │ │ │ ├── files.html │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── fr-FR_8h.html │ │ │ │ ├── fr-FR_8h_source.html │ │ │ │ ├── functions.html │ │ │ │ ├── functions_a.html │ │ │ │ ├── functions_b.html │ │ │ │ ├── functions_c.html │ │ │ │ ├── functions_d.html │ │ │ │ ├── functions_e.html │ │ │ │ ├── functions_f.html │ │ │ │ ├── functions_func.html │ │ │ │ ├── functions_func_a.html │ │ │ │ ├── functions_func_b.html │ │ │ │ ├── functions_func_c.html │ │ │ │ ├── functions_func_d.html │ │ │ │ ├── functions_func_e.html │ │ │ │ ├── functions_func_f.html │ │ │ │ ├── functions_func_g.html │ │ │ │ ├── functions_func_h.html │ │ │ │ ├── functions_func_i.html │ │ │ │ ├── functions_func_k.html │ │ │ │ ├── functions_func_l.html │ │ │ │ ├── functions_func_m.html │ │ │ │ ├── functions_func_n.html │ │ │ │ ├── functions_func_o.html │ │ │ │ ├── functions_func_p.html │ │ │ │ ├── functions_func_r.html │ │ │ │ ├── functions_func_s.html │ │ │ │ ├── functions_func_t.html │ │ │ │ ├── functions_func_u.html │ │ │ │ ├── functions_func_v.html │ │ │ │ ├── functions_func_w.html │ │ │ │ ├── functions_func_~.html │ │ │ │ ├── functions_g.html │ │ │ │ ├── functions_h.html │ │ │ │ ├── functions_i.html │ │ │ │ ├── functions_k.html │ │ │ │ ├── functions_l.html │ │ │ │ ├── functions_m.html │ │ │ │ ├── functions_n.html │ │ │ │ ├── functions_o.html │ │ │ │ ├── functions_p.html │ │ │ │ ├── functions_q.html │ │ │ │ ├── functions_r.html │ │ │ │ ├── functions_rela.html │ │ │ │ ├── functions_s.html │ │ │ │ ├── functions_t.html │ │ │ │ ├── functions_u.html │ │ │ │ ├── functions_v.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── functions_vars_a.html │ │ │ │ ├── functions_vars_b.html │ │ │ │ ├── functions_vars_c.html │ │ │ │ ├── functions_vars_d.html │ │ │ │ ├── functions_vars_e.html │ │ │ │ ├── functions_vars_f.html │ │ │ │ ├── functions_vars_h.html │ │ │ │ ├── functions_vars_i.html │ │ │ │ ├── functions_vars_l.html │ │ │ │ ├── functions_vars_m.html │ │ │ │ ├── functions_vars_n.html │ │ │ │ ├── functions_vars_o.html │ │ │ │ ├── functions_vars_p.html │ │ │ │ ├── functions_vars_q.html │ │ │ │ ├── functions_vars_r.html │ │ │ │ ├── functions_vars_s.html │ │ │ │ ├── functions_vars_t.html │ │ │ │ ├── functions_vars_u.html │ │ │ │ ├── functions_vars_v.html │ │ │ │ ├── functions_vars_w.html │ │ │ │ ├── functions_vars_x.html │ │ │ │ ├── functions_vars_z.html │ │ │ │ ├── functions_w.html │ │ │ │ ├── functions_x.html │ │ │ │ ├── functions_z.html │ │ │ │ ├── functions_~.html │ │ │ │ ├── globals.html │ │ │ │ ├── globals_a.html │ │ │ │ ├── globals_c.html │ │ │ │ ├── globals_d.html │ │ │ │ ├── globals_e.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_f.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_g.html │ │ │ │ ├── globals_h.html │ │ │ │ ├── globals_i.html │ │ │ │ ├── globals_j.html │ │ │ │ ├── globals_k.html │ │ │ │ ├── globals_l.html │ │ │ │ ├── globals_m.html │ │ │ │ ├── globals_n.html │ │ │ │ ├── globals_p.html │ │ │ │ ├── globals_r.html │ │ │ │ ├── globals_s.html │ │ │ │ ├── globals_t.html │ │ │ │ ├── globals_type.html │ │ │ │ ├── globals_u.html │ │ │ │ ├── globals_v.html │ │ │ │ ├── globals_vars.html │ │ │ │ ├── globals_vars_i.html │ │ │ │ ├── globals_vars_k.html │ │ │ │ ├── globals_w.html │ │ │ │ ├── globals_x.html │ │ │ │ ├── globals_y.html │ │ │ │ ├── globals_z.html │ │ │ │ ├── graph_legend.html │ │ │ │ ├── graph_legend.md5 │ │ │ │ ├── graph_legend.png │ │ │ │ ├── hierarchy.html │ │ │ │ ├── i18n_8h.html │ │ │ │ ├── i18n_8h_source.html │ │ │ │ ├── index.html │ │ │ │ ├── inherit_graph_0.map │ │ │ │ ├── inherit_graph_0.md5 │ │ │ │ ├── inherit_graph_0.png │ │ │ │ ├── inherit_graph_1.map │ │ │ │ ├── inherit_graph_1.md5 │ │ │ │ ├── inherit_graph_1.png │ │ │ │ ├── inherit_graph_10.map │ │ │ │ ├── inherit_graph_10.md5 │ │ │ │ ├── inherit_graph_10.png │ │ │ │ ├── inherit_graph_11.map │ │ │ │ ├── inherit_graph_11.md5 │ │ │ │ ├── inherit_graph_11.png │ │ │ │ ├── inherit_graph_12.map │ │ │ │ ├── inherit_graph_12.md5 │ │ │ │ ├── inherit_graph_12.png │ │ │ │ ├── inherit_graph_13.map │ │ │ │ ├── inherit_graph_13.md5 │ │ │ │ ├── inherit_graph_13.png │ │ │ │ ├── inherit_graph_14.map │ │ │ │ ├── inherit_graph_14.md5 │ │ │ │ ├── inherit_graph_14.png │ │ │ │ ├── inherit_graph_15.map │ │ │ │ ├── inherit_graph_15.md5 │ │ │ │ ├── inherit_graph_15.png │ │ │ │ ├── inherit_graph_16.map │ │ │ │ ├── inherit_graph_16.md5 │ │ │ │ ├── inherit_graph_16.png │ │ │ │ ├── inherit_graph_17.map │ │ │ │ ├── inherit_graph_17.md5 │ │ │ │ ├── inherit_graph_17.png │ │ │ │ ├── inherit_graph_18.map │ │ │ │ ├── inherit_graph_18.md5 │ │ │ │ ├── inherit_graph_18.png │ │ │ │ ├── inherit_graph_19.map │ │ │ │ ├── inherit_graph_19.md5 │ │ │ │ ├── inherit_graph_19.png │ │ │ │ ├── inherit_graph_2.map │ │ │ │ ├── inherit_graph_2.md5 │ │ │ │ ├── inherit_graph_2.png │ │ │ │ ├── inherit_graph_20.map │ │ │ │ ├── inherit_graph_20.md5 │ │ │ │ ├── inherit_graph_20.png │ │ │ │ ├── inherit_graph_21.map │ │ │ │ ├── inherit_graph_21.md5 │ │ │ │ ├── inherit_graph_21.png │ │ │ │ ├── inherit_graph_22.map │ │ │ │ ├── inherit_graph_22.md5 │ │ │ │ ├── inherit_graph_22.png │ │ │ │ ├── inherit_graph_23.map │ │ │ │ ├── inherit_graph_23.md5 │ │ │ │ ├── inherit_graph_23.png │ │ │ │ ├── inherit_graph_24.map │ │ │ │ ├── inherit_graph_24.md5 │ │ │ │ ├── inherit_graph_24.png │ │ │ │ ├── inherit_graph_25.map │ │ │ │ ├── inherit_graph_25.md5 │ │ │ │ ├── inherit_graph_25.png │ │ │ │ ├── inherit_graph_26.map │ │ │ │ ├── inherit_graph_26.md5 │ │ │ │ ├── inherit_graph_26.png │ │ │ │ ├── inherit_graph_27.map │ │ │ │ ├── inherit_graph_27.md5 │ │ │ │ ├── inherit_graph_27.png │ │ │ │ ├── inherit_graph_28.map │ │ │ │ ├── inherit_graph_28.md5 │ │ │ │ ├── inherit_graph_28.png │ │ │ │ ├── inherit_graph_29.map │ │ │ │ ├── inherit_graph_29.md5 │ │ │ │ ├── inherit_graph_29.png │ │ │ │ ├── inherit_graph_3.map │ │ │ │ ├── inherit_graph_3.md5 │ │ │ │ ├── inherit_graph_3.png │ │ │ │ ├── inherit_graph_30.map │ │ │ │ ├── inherit_graph_30.md5 │ │ │ │ ├── inherit_graph_30.png │ │ │ │ ├── inherit_graph_31.map │ │ │ │ ├── inherit_graph_31.md5 │ │ │ │ ├── inherit_graph_31.png │ │ │ │ ├── inherit_graph_32.map │ │ │ │ ├── inherit_graph_32.md5 │ │ │ │ ├── inherit_graph_32.png │ │ │ │ ├── inherit_graph_33.map │ │ │ │ ├── inherit_graph_33.md5 │ │ │ │ ├── inherit_graph_33.png │ │ │ │ ├── inherit_graph_34.map │ │ │ │ ├── inherit_graph_34.md5 │ │ │ │ ├── inherit_graph_34.png │ │ │ │ ├── inherit_graph_35.map │ │ │ │ ├── inherit_graph_35.md5 │ │ │ │ ├── inherit_graph_35.png │ │ │ │ ├── inherit_graph_36.map │ │ │ │ ├── inherit_graph_36.md5 │ │ │ │ ├── inherit_graph_36.png │ │ │ │ ├── inherit_graph_37.map │ │ │ │ ├── inherit_graph_37.md5 │ │ │ │ ├── inherit_graph_37.png │ │ │ │ ├── inherit_graph_38.map │ │ │ │ ├── inherit_graph_38.md5 │ │ │ │ ├── inherit_graph_38.png │ │ │ │ ├── inherit_graph_39.map │ │ │ │ ├── inherit_graph_39.md5 │ │ │ │ ├── inherit_graph_39.png │ │ │ │ ├── inherit_graph_4.map │ │ │ │ ├── inherit_graph_4.md5 │ │ │ │ ├── inherit_graph_4.png │ │ │ │ ├── inherit_graph_40.map │ │ │ │ ├── inherit_graph_40.md5 │ │ │ │ ├── inherit_graph_40.png │ │ │ │ ├── inherit_graph_41.map │ │ │ │ ├── inherit_graph_41.md5 │ │ │ │ ├── inherit_graph_41.png │ │ │ │ ├── inherit_graph_42.map │ │ │ │ ├── inherit_graph_42.md5 │ │ │ │ ├── inherit_graph_42.png │ │ │ │ ├── inherit_graph_43.map │ │ │ │ ├── inherit_graph_43.md5 │ │ │ │ ├── inherit_graph_43.png │ │ │ │ ├── inherit_graph_44.map │ │ │ │ ├── inherit_graph_44.md5 │ │ │ │ ├── inherit_graph_44.png │ │ │ │ ├── inherit_graph_45.map │ │ │ │ ├── inherit_graph_45.md5 │ │ │ │ ├── inherit_graph_45.png │ │ │ │ ├── inherit_graph_46.map │ │ │ │ ├── inherit_graph_46.md5 │ │ │ │ ├── inherit_graph_46.png │ │ │ │ ├── inherit_graph_47.map │ │ │ │ ├── inherit_graph_47.md5 │ │ │ │ ├── inherit_graph_47.png │ │ │ │ ├── inherit_graph_48.map │ │ │ │ ├── inherit_graph_48.md5 │ │ │ │ ├── inherit_graph_48.png │ │ │ │ ├── inherit_graph_49.map │ │ │ │ ├── inherit_graph_49.md5 │ │ │ │ ├── inherit_graph_49.png │ │ │ │ ├── inherit_graph_5.map │ │ │ │ ├── inherit_graph_5.md5 │ │ │ │ ├── inherit_graph_5.png │ │ │ │ ├── inherit_graph_50.map │ │ │ │ ├── inherit_graph_50.md5 │ │ │ │ ├── inherit_graph_50.png │ │ │ │ ├── inherit_graph_51.map │ │ │ │ ├── inherit_graph_51.md5 │ │ │ │ ├── inherit_graph_51.png │ │ │ │ ├── inherit_graph_52.map │ │ │ │ ├── inherit_graph_52.md5 │ │ │ │ ├── inherit_graph_52.png │ │ │ │ ├── inherit_graph_53.map │ │ │ │ ├── inherit_graph_53.md5 │ │ │ │ ├── inherit_graph_53.png │ │ │ │ ├── inherit_graph_54.map │ │ │ │ ├── inherit_graph_54.md5 │ │ │ │ ├── inherit_graph_54.png │ │ │ │ ├── inherit_graph_55.map │ │ │ │ ├── inherit_graph_55.md5 │ │ │ │ ├── inherit_graph_55.png │ │ │ │ ├── inherit_graph_56.map │ │ │ │ ├── inherit_graph_56.md5 │ │ │ │ ├── inherit_graph_56.png │ │ │ │ ├── inherit_graph_57.map │ │ │ │ ├── inherit_graph_57.md5 │ │ │ │ ├── inherit_graph_57.png │ │ │ │ ├── inherit_graph_58.map │ │ │ │ ├── inherit_graph_58.md5 │ │ │ │ ├── inherit_graph_58.png │ │ │ │ ├── inherit_graph_59.map │ │ │ │ ├── inherit_graph_59.md5 │ │ │ │ ├── inherit_graph_59.png │ │ │ │ ├── inherit_graph_6.map │ │ │ │ ├── inherit_graph_6.md5 │ │ │ │ ├── inherit_graph_6.png │ │ │ │ ├── inherit_graph_60.map │ │ │ │ ├── inherit_graph_60.md5 │ │ │ │ ├── inherit_graph_60.png │ │ │ │ ├── inherit_graph_7.map │ │ │ │ ├── inherit_graph_7.md5 │ │ │ │ ├── inherit_graph_7.png │ │ │ │ ├── inherit_graph_8.map │ │ │ │ ├── inherit_graph_8.md5 │ │ │ │ ├── inherit_graph_8.png │ │ │ │ ├── inherit_graph_9.map │ │ │ │ ├── inherit_graph_9.md5 │ │ │ │ ├── inherit_graph_9.png │ │ │ │ ├── inherits.html │ │ │ │ ├── ir__Airwell_8cpp.html │ │ │ │ ├── ir__Airwell_8h.html │ │ │ │ ├── ir__Airwell_8h_source.html │ │ │ │ ├── ir__Aiwa_8cpp.html │ │ │ │ ├── ir__Amcor_8cpp.html │ │ │ │ ├── ir__Amcor_8h.html │ │ │ │ ├── ir__Amcor_8h_source.html │ │ │ │ ├── ir__Argo_8cpp.html │ │ │ │ ├── ir__Argo_8h.html │ │ │ │ ├── ir__Argo_8h_source.html │ │ │ │ ├── ir__Carrier_8cpp.html │ │ │ │ ├── ir__Carrier_8h.html │ │ │ │ ├── ir__Carrier_8h_source.html │ │ │ │ ├── ir__Coolix_8cpp.html │ │ │ │ ├── ir__Coolix_8h.html │ │ │ │ ├── ir__Coolix_8h_source.html │ │ │ │ ├── ir__Corona_8cpp.html │ │ │ │ ├── ir__Corona_8h.html │ │ │ │ ├── ir__Corona_8h_source.html │ │ │ │ ├── ir__Daikin_8cpp.html │ │ │ │ ├── ir__Daikin_8h.html │ │ │ │ ├── ir__Daikin_8h_source.html │ │ │ │ ├── ir__Delonghi_8cpp.html │ │ │ │ ├── ir__Delonghi_8h.html │ │ │ │ ├── ir__Delonghi_8h_source.html │ │ │ │ ├── ir__Denon_8cpp.html │ │ │ │ ├── ir__Dish_8cpp.html │ │ │ │ ├── ir__Doshisha_8cpp.html │ │ │ │ ├── ir__Electra_8cpp.html │ │ │ │ ├── ir__Electra_8h.html │ │ │ │ ├── ir__Electra_8h_source.html │ │ │ │ ├── ir__Epson_8cpp.html │ │ │ │ ├── ir__Fujitsu_8cpp.html │ │ │ │ ├── ir__Fujitsu_8h.html │ │ │ │ ├── ir__Fujitsu_8h_source.html │ │ │ │ ├── ir__GICable_8cpp.html │ │ │ │ ├── ir__GlobalCache_8cpp.html │ │ │ │ ├── ir__Goodweather_8cpp.html │ │ │ │ ├── ir__Goodweather_8h.html │ │ │ │ ├── ir__Goodweather_8h_source.html │ │ │ │ ├── ir__Gree_8cpp.html │ │ │ │ ├── ir__Gree_8h.html │ │ │ │ ├── ir__Gree_8h_source.html │ │ │ │ ├── ir__Haier_8cpp.html │ │ │ │ ├── ir__Haier_8h.html │ │ │ │ ├── ir__Haier_8h_source.html │ │ │ │ ├── ir__Hitachi_8cpp.html │ │ │ │ ├── ir__Hitachi_8h.html │ │ │ │ ├── ir__Hitachi_8h_source.html │ │ │ │ ├── ir__Inax_8cpp.html │ │ │ │ ├── ir__JVC_8cpp.html │ │ │ │ ├── ir__Kelvinator_8cpp.html │ │ │ │ ├── ir__Kelvinator_8h.html │ │ │ │ ├── ir__Kelvinator_8h_source.html │ │ │ │ ├── ir__LG_8cpp.html │ │ │ │ ├── ir__LG_8h.html │ │ │ │ ├── ir__LG_8h_source.html │ │ │ │ ├── ir__Lasertag_8cpp.html │ │ │ │ ├── ir__Lego_8cpp.html │ │ │ │ ├── ir__Lutron_8cpp.html │ │ │ │ ├── ir__MWM_8cpp.html │ │ │ │ ├── ir__Magiquest_8cpp.html │ │ │ │ ├── ir__Magiquest_8h.html │ │ │ │ ├── ir__Magiquest_8h_source.html │ │ │ │ ├── ir__Metz_8cpp.html │ │ │ │ ├── ir__Midea_8cpp.html │ │ │ │ ├── ir__Midea_8h.html │ │ │ │ ├── ir__Midea_8h_source.html │ │ │ │ ├── ir__MitsubishiHeavy_8cpp.html │ │ │ │ ├── ir__MitsubishiHeavy_8h.html │ │ │ │ ├── ir__MitsubishiHeavy_8h_source.html │ │ │ │ ├── ir__Mitsubishi_8cpp.html │ │ │ │ ├── ir__Mitsubishi_8h.html │ │ │ │ ├── ir__Mitsubishi_8h_source.html │ │ │ │ ├── ir__Multibrackets_8cpp.html │ │ │ │ ├── ir__NEC_8cpp.html │ │ │ │ ├── ir__NEC_8h.html │ │ │ │ ├── ir__NEC_8h_source.html │ │ │ │ ├── ir__Neoclima_8cpp.html │ │ │ │ ├── ir__Neoclima_8h.html │ │ │ │ ├── ir__Neoclima_8h_source.html │ │ │ │ ├── ir__Nikai_8cpp.html │ │ │ │ ├── ir__Panasonic_8cpp.html │ │ │ │ ├── ir__Panasonic_8h.html │ │ │ │ ├── ir__Panasonic_8h_source.html │ │ │ │ ├── ir__Pioneer_8cpp.html │ │ │ │ ├── ir__Pronto_8cpp.html │ │ │ │ ├── ir__RC5__RC6_8cpp.html │ │ │ │ ├── ir__RCMM_8cpp.html │ │ │ │ ├── ir__Samsung_8cpp.html │ │ │ │ ├── ir__Samsung_8h.html │ │ │ │ ├── ir__Samsung_8h_source.html │ │ │ │ ├── ir__Sanyo_8cpp.html │ │ │ │ ├── ir__Sanyo_8h.html │ │ │ │ ├── ir__Sanyo_8h_source.html │ │ │ │ ├── ir__Sharp_8cpp.html │ │ │ │ ├── ir__Sharp_8h.html │ │ │ │ ├── ir__Sharp_8h_source.html │ │ │ │ ├── ir__Sherwood_8cpp.html │ │ │ │ ├── ir__Sony_8cpp.html │ │ │ │ ├── ir__Symphony_8cpp.html │ │ │ │ ├── ir__Tcl_8cpp.html │ │ │ │ ├── ir__Tcl_8h.html │ │ │ │ ├── ir__Tcl_8h_source.html │ │ │ │ ├── ir__Teco_8cpp.html │ │ │ │ ├── ir__Teco_8h.html │ │ │ │ ├── ir__Teco_8h_source.html │ │ │ │ ├── ir__Toshiba_8cpp.html │ │ │ │ ├── ir__Toshiba_8h.html │ │ │ │ ├── ir__Toshiba_8h_source.html │ │ │ │ ├── ir__Trotec_8cpp.html │ │ │ │ ├── ir__Trotec_8h.html │ │ │ │ ├── ir__Trotec_8h_source.html │ │ │ │ ├── ir__Vestel_8cpp.html │ │ │ │ ├── ir__Vestel_8h.html │ │ │ │ ├── ir__Vestel_8h_source.html │ │ │ │ ├── ir__Voltas_8cpp.html │ │ │ │ ├── ir__Voltas_8h.html │ │ │ │ ├── ir__Voltas_8h_source.html │ │ │ │ ├── ir__Whirlpool_8cpp.html │ │ │ │ ├── ir__Whirlpool_8h.html │ │ │ │ ├── ir__Whirlpool_8h_source.html │ │ │ │ ├── ir__Whynter_8cpp.html │ │ │ │ ├── ir__Zepeal_8cpp.html │ │ │ │ ├── it-IT_8h.html │ │ │ │ ├── it-IT_8h_source.html │ │ │ │ ├── jquery.js │ │ │ │ ├── md_src_locale_README.html │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── namespaceIRAcUtils.html │ │ │ │ ├── namespaceirutils.html │ │ │ │ ├── namespacemembers.html │ │ │ │ ├── namespacemembers_enum.html │ │ │ │ ├── namespacemembers_func.html │ │ │ │ ├── namespaces.html │ │ │ │ ├── namespacestdAc.html │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── all_10.html │ │ │ │ ├── all_10.js │ │ │ │ ├── all_11.html │ │ │ │ ├── all_11.js │ │ │ │ ├── all_12.html │ │ │ │ ├── all_12.js │ │ │ │ ├── all_13.html │ │ │ │ ├── all_13.js │ │ │ │ ├── all_14.html │ │ │ │ ├── all_14.js │ │ │ │ ├── all_15.html │ │ │ │ ├── all_15.js │ │ │ │ ├── all_16.html │ │ │ │ ├── all_16.js │ │ │ │ ├── all_17.html │ │ │ │ ├── all_17.js │ │ │ │ ├── all_18.html │ │ │ │ ├── all_18.js │ │ │ │ ├── all_19.html │ │ │ │ ├── all_19.js │ │ │ │ ├── all_1a.html │ │ │ │ ├── all_1a.js │ │ │ │ ├── all_1b.html │ │ │ │ ├── all_1b.js │ │ │ │ ├── all_2.html │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.html │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.html │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.html │ │ │ │ ├── all_5.js │ │ │ │ ├── all_6.html │ │ │ │ ├── all_6.js │ │ │ │ ├── all_7.html │ │ │ │ ├── all_7.js │ │ │ │ ├── all_8.html │ │ │ │ ├── all_8.js │ │ │ │ ├── all_9.html │ │ │ │ ├── all_9.js │ │ │ │ ├── all_a.html │ │ │ │ ├── all_a.js │ │ │ │ ├── all_b.html │ │ │ │ ├── all_b.js │ │ │ │ ├── all_c.html │ │ │ │ ├── all_c.js │ │ │ │ ├── all_d.html │ │ │ │ ├── all_d.js │ │ │ │ ├── all_e.html │ │ │ │ ├── all_e.js │ │ │ │ ├── all_f.html │ │ │ │ ├── all_f.js │ │ │ │ ├── classes_0.html │ │ │ │ ├── classes_0.js │ │ │ │ ├── classes_1.html │ │ │ │ ├── classes_1.js │ │ │ │ ├── classes_2.html │ │ │ │ ├── classes_2.js │ │ │ │ ├── classes_3.html │ │ │ │ ├── classes_3.js │ │ │ │ ├── classes_4.html │ │ │ │ ├── classes_4.js │ │ │ │ ├── classes_5.html │ │ │ │ ├── classes_5.js │ │ │ │ ├── classes_6.html │ │ │ │ ├── classes_6.js │ │ │ │ ├── classes_7.html │ │ │ │ ├── classes_7.js │ │ │ │ ├── classes_8.html │ │ │ │ ├── classes_8.js │ │ │ │ ├── close.png │ │ │ │ ├── enums_0.html │ │ │ │ ├── enums_0.js │ │ │ │ ├── enums_1.html │ │ │ │ ├── enums_1.js │ │ │ │ ├── enums_2.html │ │ │ │ ├── enums_2.js │ │ │ │ ├── enums_3.html │ │ │ │ ├── enums_3.js │ │ │ │ ├── enums_4.html │ │ │ │ ├── enums_4.js │ │ │ │ ├── enums_5.html │ │ │ │ ├── enums_5.js │ │ │ │ ├── enums_6.html │ │ │ │ ├── enums_6.js │ │ │ │ ├── enums_7.html │ │ │ │ ├── enums_7.js │ │ │ │ ├── enums_8.html │ │ │ │ ├── enums_8.js │ │ │ │ ├── enums_9.html │ │ │ │ ├── enums_9.js │ │ │ │ ├── enumvalues_0.html │ │ │ │ ├── enumvalues_0.js │ │ │ │ ├── enumvalues_1.html │ │ │ │ ├── enumvalues_1.js │ │ │ │ ├── enumvalues_10.html │ │ │ │ ├── enumvalues_10.js │ │ │ │ ├── enumvalues_11.html │ │ │ │ ├── enumvalues_11.js │ │ │ │ ├── enumvalues_12.html │ │ │ │ ├── enumvalues_12.js │ │ │ │ ├── enumvalues_13.html │ │ │ │ ├── enumvalues_13.js │ │ │ │ ├── enumvalues_14.html │ │ │ │ ├── enumvalues_14.js │ │ │ │ ├── enumvalues_15.html │ │ │ │ ├── enumvalues_15.js │ │ │ │ ├── enumvalues_2.html │ │ │ │ ├── enumvalues_2.js │ │ │ │ ├── enumvalues_3.html │ │ │ │ ├── enumvalues_3.js │ │ │ │ ├── enumvalues_4.html │ │ │ │ ├── enumvalues_4.js │ │ │ │ ├── enumvalues_5.html │ │ │ │ ├── enumvalues_5.js │ │ │ │ ├── enumvalues_6.html │ │ │ │ ├── enumvalues_6.js │ │ │ │ ├── enumvalues_7.html │ │ │ │ ├── enumvalues_7.js │ │ │ │ ├── enumvalues_8.html │ │ │ │ ├── enumvalues_8.js │ │ │ │ ├── enumvalues_9.html │ │ │ │ ├── enumvalues_9.js │ │ │ │ ├── enumvalues_a.html │ │ │ │ ├── enumvalues_a.js │ │ │ │ ├── enumvalues_b.html │ │ │ │ ├── enumvalues_b.js │ │ │ │ ├── enumvalues_c.html │ │ │ │ ├── enumvalues_c.js │ │ │ │ ├── enumvalues_d.html │ │ │ │ ├── enumvalues_d.js │ │ │ │ ├── enumvalues_e.html │ │ │ │ ├── enumvalues_e.js │ │ │ │ ├── enumvalues_f.html │ │ │ │ ├── enumvalues_f.js │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── files_1.html │ │ │ │ ├── files_1.js │ │ │ │ ├── files_2.html │ │ │ │ ├── files_2.js │ │ │ │ ├── files_3.html │ │ │ │ ├── files_3.js │ │ │ │ ├── files_4.html │ │ │ │ ├── files_4.js │ │ │ │ ├── files_5.html │ │ │ │ ├── files_5.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── functions_1.html │ │ │ │ ├── functions_1.js │ │ │ │ ├── functions_10.html │ │ │ │ ├── functions_10.js │ │ │ │ ├── functions_11.html │ │ │ │ ├── functions_11.js │ │ │ │ ├── functions_12.html │ │ │ │ ├── functions_12.js │ │ │ │ ├── functions_13.html │ │ │ │ ├── functions_13.js │ │ │ │ ├── functions_14.html │ │ │ │ ├── functions_14.js │ │ │ │ ├── functions_15.html │ │ │ │ ├── functions_15.js │ │ │ │ ├── functions_16.html │ │ │ │ ├── functions_16.js │ │ │ │ ├── functions_17.html │ │ │ │ ├── functions_17.js │ │ │ │ ├── functions_2.html │ │ │ │ ├── functions_2.js │ │ │ │ ├── functions_3.html │ │ │ │ ├── functions_3.js │ │ │ │ ├── functions_4.html │ │ │ │ ├── functions_4.js │ │ │ │ ├── functions_5.html │ │ │ │ ├── functions_5.js │ │ │ │ ├── functions_6.html │ │ │ │ ├── functions_6.js │ │ │ │ ├── functions_7.html │ │ │ │ ├── functions_7.js │ │ │ │ ├── functions_8.html │ │ │ │ ├── functions_8.js │ │ │ │ ├── functions_9.html │ │ │ │ ├── functions_9.js │ │ │ │ ├── functions_a.html │ │ │ │ ├── functions_a.js │ │ │ │ ├── functions_b.html │ │ │ │ ├── functions_b.js │ │ │ │ ├── functions_c.html │ │ │ │ ├── functions_c.js │ │ │ │ ├── functions_d.html │ │ │ │ ├── functions_d.js │ │ │ │ ├── functions_e.html │ │ │ │ ├── functions_e.js │ │ │ │ ├── functions_f.html │ │ │ │ ├── functions_f.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── namespaces_0.html │ │ │ │ ├── namespaces_0.js │ │ │ │ ├── namespaces_1.html │ │ │ │ ├── namespaces_1.js │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── pages_1.html │ │ │ │ ├── pages_1.js │ │ │ │ ├── pages_2.html │ │ │ │ ├── pages_2.js │ │ │ │ ├── related_0.html │ │ │ │ ├── related_0.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── searchdata.js │ │ │ │ ├── typedefs_0.html │ │ │ │ ├── typedefs_0.js │ │ │ │ ├── variables_0.html │ │ │ │ ├── variables_0.js │ │ │ │ ├── variables_1.html │ │ │ │ ├── variables_1.js │ │ │ │ ├── variables_10.html │ │ │ │ ├── variables_10.js │ │ │ │ ├── variables_11.html │ │ │ │ ├── variables_11.js │ │ │ │ ├── variables_12.html │ │ │ │ ├── variables_12.js │ │ │ │ ├── variables_13.html │ │ │ │ ├── variables_13.js │ │ │ │ ├── variables_14.html │ │ │ │ ├── variables_14.js │ │ │ │ ├── variables_15.html │ │ │ │ ├── variables_15.js │ │ │ │ ├── variables_16.html │ │ │ │ ├── variables_16.js │ │ │ │ ├── variables_17.html │ │ │ │ ├── variables_17.js │ │ │ │ ├── variables_2.html │ │ │ │ ├── variables_2.js │ │ │ │ ├── variables_3.html │ │ │ │ ├── variables_3.js │ │ │ │ ├── variables_4.html │ │ │ │ ├── variables_4.js │ │ │ │ ├── variables_5.html │ │ │ │ ├── variables_5.js │ │ │ │ ├── variables_6.html │ │ │ │ ├── variables_6.js │ │ │ │ ├── variables_7.html │ │ │ │ ├── variables_7.js │ │ │ │ ├── variables_8.html │ │ │ │ ├── variables_8.js │ │ │ │ ├── variables_9.html │ │ │ │ ├── variables_9.js │ │ │ │ ├── variables_a.html │ │ │ │ ├── variables_a.js │ │ │ │ ├── variables_b.html │ │ │ │ ├── variables_b.js │ │ │ │ ├── variables_c.html │ │ │ │ ├── variables_c.js │ │ │ │ ├── variables_d.html │ │ │ │ ├── variables_d.js │ │ │ │ ├── variables_e.html │ │ │ │ ├── variables_e.js │ │ │ │ ├── variables_f.html │ │ │ │ └── variables_f.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── structirparams__t-members.html │ │ │ │ ├── structirparams__t.html │ │ │ │ ├── structmatch__result__t-members.html │ │ │ │ ├── structmatch__result__t.html │ │ │ │ ├── structstdAc_1_1state__t-members.html │ │ │ │ ├── structstdAc_1_1state__t.html │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ ├── tabs.css │ │ │ │ ├── todo.html │ │ │ │ ├── unionAirwellProtocol-members.html │ │ │ │ ├── unionAirwellProtocol.html │ │ │ │ ├── unionGreeProtocol-members.html │ │ │ │ ├── unionGreeProtocol.html │ │ │ │ ├── unionHaierProtocol-members.html │ │ │ │ ├── unionHaierProtocol.html │ │ │ │ ├── unionHaierYRW02Protocol-members.html │ │ │ │ ├── unionHaierYRW02Protocol.html │ │ │ │ ├── unionMideaProtocol-members.html │ │ │ │ ├── unionMideaProtocol.html │ │ │ │ ├── unionVoltasProtocol-members.html │ │ │ │ ├── unionVoltasProtocol.html │ │ │ │ ├── unionmagiquest-members.html │ │ │ │ ├── unionmagiquest.html │ │ │ │ ├── zh-CN_8h.html │ │ │ │ └── zh-CN_8h_source.html │ │ └── doxygen_index.md │ ├── examples │ │ ├── BlynkIrRemote │ │ │ ├── BlynkIrRemote.ino │ │ │ └── platformio.ini │ │ ├── CommonAcControl │ │ │ ├── CommonAcControl.ino │ │ │ └── platformio.ini │ │ ├── ControlSamsungAC │ │ │ ├── ControlSamsungAC.ino │ │ │ └── platformio.ini │ │ ├── DumbIRRepeater │ │ │ ├── DumbIRRepeater.ino │ │ │ └── platformio.ini │ │ ├── IRGCSendDemo │ │ │ ├── IRGCSendDemo.ino │ │ │ └── platformio.ini │ │ ├── IRGCTCPServer │ │ │ ├── IRGCTCPServer.ino │ │ │ └── platformio.ini │ │ ├── IRMQTTServer │ │ │ ├── IRMQTTServer.h │ │ │ ├── IRMQTTServer.ino │ │ │ └── platformio.ini │ │ ├── IRServer │ │ │ ├── IRServer.ino │ │ │ └── platformio.ini │ │ ├── IRrecvDemo │ │ │ ├── IRrecvDemo.ino │ │ │ └── platformio.ini │ │ ├── IRrecvDump │ │ │ ├── IRrecvDump.ino │ │ │ └── platformio.ini │ │ ├── IRrecvDumpV2 │ │ │ ├── IRrecvDumpV2.ino │ │ │ └── platformio.ini │ │ ├── IRrecvDumpV3 │ │ │ ├── BaseOTA.h │ │ │ ├── IRrecvDumpV3.ino │ │ │ └── platformio.ini │ │ ├── IRsendDemo │ │ │ ├── IRsendDemo.ino │ │ │ └── platformio.ini │ │ ├── IRsendProntoDemo │ │ │ ├── IRsendProntoDemo.ino │ │ │ └── platformio.ini │ │ ├── JVCPanasonicSendDemo │ │ │ ├── JVCPanasonicSendDemo.ino │ │ │ └── platformio.ini │ │ ├── LGACSend │ │ │ ├── LGACSend.ino │ │ │ └── platformio.ini │ │ ├── SmartIRRepeater │ │ │ ├── SmartIRRepeater.ino │ │ │ └── platformio.ini │ │ ├── TurnOnArgoAC │ │ │ ├── TurnOnArgoAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnDaikinAC │ │ │ ├── TurnOnDaikinAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnFujitsuAC │ │ │ ├── TurnOnFujitsuAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnGreeAC │ │ │ ├── TurnOnGreeAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnKelvinatorAC │ │ │ ├── TurnOnKelvinatorAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnMitsubishiAC │ │ │ ├── TurnOnMitsubishiAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnMitsubishiHeavyAc │ │ │ ├── TurnOnMitsubishiHeavyAc.ino │ │ │ └── platformio.ini │ │ ├── TurnOnPanasonicAC │ │ │ ├── TurnOnPanasonicAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnToshibaAC │ │ │ ├── TurnOnToshibaAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnTrotecAC │ │ │ ├── TurnOnTrotecAC.ino │ │ │ └── platformio.ini │ │ └── Web-AC-control │ │ │ ├── README.md │ │ │ ├── Web-AC-control.h │ │ │ ├── Web-AC-control.ino │ │ │ ├── data │ │ │ ├── favicon.ico │ │ │ ├── level_1_off.svg │ │ │ ├── level_1_on.svg │ │ │ ├── level_2_off.svg │ │ │ ├── level_2_on.svg │ │ │ ├── level_3_off.svg │ │ │ ├── level_3_on.svg │ │ │ ├── level_4_off.svg │ │ │ ├── level_4_on.svg │ │ │ ├── ui.html │ │ │ └── ui.js │ │ │ ├── platformio.ini │ │ │ └── printscreen.png │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── platformio.ini │ ├── pylintrc │ ├── src │ │ ├── CPPLINT.cfg │ │ ├── IRac.cpp │ │ ├── IRac.h │ │ ├── IRrecv.cpp │ │ ├── IRrecv.h │ │ ├── IRremoteESP8266.h │ │ ├── IRsend.cpp │ │ ├── IRsend.h │ │ ├── IRtext.cpp │ │ ├── IRtext.h │ │ ├── IRtimer.cpp │ │ ├── IRtimer.h │ │ ├── IRutils.cpp │ │ ├── IRutils.h │ │ ├── i18n.h │ │ ├── ir_Airwell.cpp │ │ ├── ir_Airwell.h │ │ ├── ir_Aiwa.cpp │ │ ├── ir_Amcor.cpp │ │ ├── ir_Amcor.h │ │ ├── ir_Argo.cpp │ │ ├── ir_Argo.h │ │ ├── ir_Carrier.cpp │ │ ├── ir_Carrier.h │ │ ├── ir_Coolix.cpp │ │ ├── ir_Coolix.h │ │ ├── ir_Corona.cpp │ │ ├── ir_Corona.h │ │ ├── ir_Daikin.cpp │ │ ├── ir_Daikin.h │ │ ├── ir_Delonghi.cpp │ │ ├── ir_Delonghi.h │ │ ├── ir_Denon.cpp │ │ ├── ir_Dish.cpp │ │ ├── ir_Doshisha.cpp │ │ ├── ir_Electra.cpp │ │ ├── ir_Electra.h │ │ ├── ir_Epson.cpp │ │ ├── ir_Fujitsu.cpp │ │ ├── ir_Fujitsu.h │ │ ├── ir_GICable.cpp │ │ ├── ir_GlobalCache.cpp │ │ ├── ir_Goodweather.cpp │ │ ├── ir_Goodweather.h │ │ ├── ir_Gree.cpp │ │ ├── ir_Gree.h │ │ ├── ir_Haier.cpp │ │ ├── ir_Haier.h │ │ ├── ir_Hitachi.cpp │ │ ├── ir_Hitachi.h │ │ ├── ir_Inax.cpp │ │ ├── ir_JVC.cpp │ │ ├── ir_Kelvinator.cpp │ │ ├── ir_Kelvinator.h │ │ ├── ir_LG.cpp │ │ ├── ir_LG.h │ │ ├── ir_Lasertag.cpp │ │ ├── ir_Lego.cpp │ │ ├── ir_Lutron.cpp │ │ ├── ir_MWM.cpp │ │ ├── ir_Magiquest.cpp │ │ ├── ir_Magiquest.h │ │ ├── ir_Metz.cpp │ │ ├── ir_Midea.cpp │ │ ├── ir_Midea.h │ │ ├── ir_Mitsubishi.cpp │ │ ├── ir_Mitsubishi.h │ │ ├── ir_MitsubishiHeavy.cpp │ │ ├── ir_MitsubishiHeavy.h │ │ ├── ir_Multibrackets.cpp │ │ ├── ir_NEC.cpp │ │ ├── ir_NEC.h │ │ ├── ir_Neoclima.cpp │ │ ├── ir_Neoclima.h │ │ ├── ir_Nikai.cpp │ │ ├── ir_Panasonic.cpp │ │ ├── ir_Panasonic.h │ │ ├── ir_Pioneer.cpp │ │ ├── ir_Pronto.cpp │ │ ├── ir_RC5_RC6.cpp │ │ ├── ir_RCMM.cpp │ │ ├── ir_Samsung.cpp │ │ ├── ir_Samsung.h │ │ ├── ir_Sanyo.cpp │ │ ├── ir_Sanyo.h │ │ ├── ir_Sharp.cpp │ │ ├── ir_Sharp.h │ │ ├── ir_Sherwood.cpp │ │ ├── ir_Sony.cpp │ │ ├── ir_Symphony.cpp │ │ ├── ir_Tcl.cpp │ │ ├── ir_Tcl.h │ │ ├── ir_Teco.cpp │ │ ├── ir_Teco.h │ │ ├── ir_Toshiba.cpp │ │ ├── ir_Toshiba.h │ │ ├── ir_Trotec.cpp │ │ ├── ir_Trotec.h │ │ ├── ir_Vestel.cpp │ │ ├── ir_Vestel.h │ │ ├── ir_Voltas.cpp │ │ ├── ir_Voltas.h │ │ ├── ir_Whirlpool.cpp │ │ ├── ir_Whirlpool.h │ │ ├── ir_Whynter.cpp │ │ ├── ir_Zepeal.cpp │ │ └── locale │ │ │ ├── README.md │ │ │ ├── de-CH.h │ │ │ ├── de-DE.h │ │ │ ├── defaults.h │ │ │ ├── en-AU.h │ │ │ ├── en-IE.h │ │ │ ├── en-UK.h │ │ │ ├── en-US.h │ │ │ ├── es-ES.h │ │ │ ├── fr-FR.h │ │ │ ├── it-IT.h │ │ │ └── zh-CN.h │ ├── test │ │ ├── IRac_test.cpp │ │ ├── IRrecv_test.cpp │ │ ├── IRrecv_test.h │ │ ├── IRsend_test.cpp │ │ ├── IRsend_test.h │ │ ├── IRutils_test.cpp │ │ ├── Makefile │ │ ├── ir_Airwell_test.cpp │ │ ├── ir_Aiwa_test.cpp │ │ ├── ir_Amcor_test.cpp │ │ ├── ir_Argo_test.cpp │ │ ├── ir_Carrier_test.cpp │ │ ├── ir_Coolix_test.cpp │ │ ├── ir_Corona_test.cpp │ │ ├── ir_Daikin_test.cpp │ │ ├── ir_Delonghi_test.cpp │ │ ├── ir_Denon_test.cpp │ │ ├── ir_Dish_test.cpp │ │ ├── ir_Doshisha_test.cpp │ │ ├── ir_Electra_test.cpp │ │ ├── ir_Epson_test.cpp │ │ ├── ir_Fujitsu_test.cpp │ │ ├── ir_GICable_test.cpp │ │ ├── ir_GlobalCache_test.cpp │ │ ├── ir_Goodweather_test.cpp │ │ ├── ir_Gree_test.cpp │ │ ├── ir_Haier_test.cpp │ │ ├── ir_Hitachi_test.cpp │ │ ├── ir_Inax_test.cpp │ │ ├── ir_JVC_test.cpp │ │ ├── ir_Kelvinator_test.cpp │ │ ├── ir_LG_test.cpp │ │ ├── ir_Lasertag_test.cpp │ │ ├── ir_Lego_test.cpp │ │ ├── ir_Lutron_test.cpp │ │ ├── ir_MWM_test.cpp │ │ ├── ir_Magiquest_test.cpp │ │ ├── ir_Metz_test.cpp │ │ ├── ir_Midea_test.cpp │ │ ├── ir_MitsubishiHeavy_test.cpp │ │ ├── ir_Mitsubishi_test.cpp │ │ ├── ir_Multibrackets_test.cpp │ │ ├── ir_NEC_test.cpp │ │ ├── ir_Neoclima_test.cpp │ │ ├── ir_Nikai_test.cpp │ │ ├── ir_Panasonic_test.cpp │ │ ├── ir_Pioneer_test.cpp │ │ ├── ir_Pronto_test.cpp │ │ ├── ir_RC5_RC6_test.cpp │ │ ├── ir_RCMM_test.cpp │ │ ├── ir_Samsung_test.cpp │ │ ├── ir_Sanyo_test.cpp │ │ ├── ir_Sharp_test.cpp │ │ ├── ir_Sherwood_test.cpp │ │ ├── ir_Sony_test.cpp │ │ ├── ir_Symphony_test.cpp │ │ ├── ir_Tcl_test.cpp │ │ ├── ir_Teco_test.cpp │ │ ├── ir_Toshiba_test.cpp │ │ ├── ir_Trotec_test.cpp │ │ ├── ir_Vestel_test.cpp │ │ ├── ir_Voltas_test.cpp │ │ ├── ir_Whirlpool_test.cpp │ │ ├── ir_Whynter_test.cpp │ │ └── ir_Zepeal_test.cpp │ └── tools │ │ ├── Makefile │ │ ├── RawToGlobalCache.sh │ │ ├── auto_analyse_raw_data.py │ │ ├── auto_analyse_raw_data_test.py │ │ ├── gc_decode.cpp │ │ ├── generate_irtext_h.sh │ │ ├── mkkeywords │ │ ├── mode2_decode.cpp │ │ ├── raw_to_pronto_code.py │ │ ├── raw_to_pronto_code_test.py │ │ └── scrape_supported_devices.py ├── JaretBurkett_ILI9488-gemu-1.0 │ ├── ILI9488.cpp │ ├── ILI9488.h │ ├── README.md │ ├── examples │ │ └── graphicstest │ │ │ └── graphicstest.ino │ ├── keywords.txt │ ├── library.properties │ └── spi_register.h ├── Joba_Tsl2561-2.0.10 │ ├── .gitignore │ ├── .hgignore │ ├── .travis.yml │ ├── COPYING │ ├── COPYING.LESSER │ ├── README │ ├── examples │ │ ├── Autogain │ │ │ └── Autogain.ino │ │ ├── Simple │ │ │ └── Simple.ino │ │ ├── Testing │ │ │ └── Testing.ino │ │ ├── Utility │ │ │ └── Utility.ino │ │ ├── platformio.ini │ │ └── platformio.sh │ ├── lib │ │ └── readme.txt │ ├── library.json │ ├── library.properties │ ├── platformio.ini │ └── src │ │ ├── Tsl2561.cpp │ │ ├── Tsl2561.h │ │ ├── Tsl2561Util.cpp │ │ └── Tsl2561Util.h ├── KeeloqLib │ ├── README.md │ ├── keywords.txt │ ├── library.properties │ ├── src │ │ ├── KeeloqLib.cpp │ │ └── KeeloqLib.h │ └── tests │ │ └── KeeloqLibTest │ │ └── KeeloqLibTest.ino ├── LOLIN_HP303B │ ├── README.md │ ├── examples │ │ ├── i2c_background │ │ │ └── i2c_background.ino │ │ ├── i2c_command │ │ │ └── i2c_command.ino │ │ └── i2c_interrupt │ │ │ └── i2c_interrupt.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── LOLIN_HP303B.cpp │ │ ├── LOLIN_HP303B.h │ │ └── util │ │ └── hp303b_consts.h ├── LibTeleinfo │ ├── README.md │ ├── library.json │ ├── library.properties │ └── src │ │ ├── LibTeleinfo.cpp │ │ └── LibTeleinfo.h ├── LinkedList-1.2.3 │ ├── LICENSE.txt │ ├── LinkedList.h │ ├── README.md │ ├── examples │ │ ├── ClassList │ │ │ └── ClassList.pde │ │ └── SimpleIntegerList │ │ │ └── SimpleIntegerList.pde │ ├── keywords.txt │ ├── library.json │ └── library.properties ├── LiquidCrystal_I2C-1.1.3 │ ├── LiquidCrystal_I2C.cpp │ ├── LiquidCrystal_I2C.h │ ├── LiquidCrystal_I2C.o │ ├── README.md │ ├── examples │ │ ├── CustomChars │ │ │ └── CustomChars.pde │ │ ├── HelloWorld │ │ │ └── HelloWorld.pde │ │ └── SerialDisplay │ │ │ └── SerialDisplay.pde │ ├── keywords.txt │ ├── library.json │ └── library.properties ├── Mutichannel_Gas_Sensor │ ├── License.txt │ ├── README.md │ ├── examples │ │ ├── GetVersion │ │ │ └── GetVersion.ino │ │ ├── I2C_Address │ │ │ └── I2C_Address.ino │ │ ├── RawData │ │ │ └── RawData.ino │ │ ├── ReadSensorValue_Grove │ │ │ └── ReadSensorValue_Grove.ino │ │ ├── ReadSensorValue_Xadow │ │ │ └── ReadSensorValue_Xadow.ino │ │ ├── UpdateFrimware │ │ │ ├── UpdateFrimware.ino │ │ │ ├── bootloader_atmega168.h │ │ │ └── gpl.txt │ │ ├── calibration │ │ │ └── calibration.ino │ │ ├── factory_setting │ │ │ └── factory_setting.ino │ │ └── new_firmware │ │ │ └── new_firmware.ino │ ├── library.json │ ├── library.properties │ └── src │ │ ├── MutichannelGasSensor.cpp │ │ └── MutichannelGasSensor.h ├── NeoPixelBus-2.5.0.09 │ ├── .gitattributes │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ ├── .gitignore │ ├── COPYING │ ├── ReadMe.md │ ├── examples │ │ ├── DotStarTest │ │ │ └── DotStarTest.ino │ │ ├── NeoPixelBrightness │ │ │ └── NeoPixelBrightness.ino │ │ ├── NeoPixelGamma │ │ │ └── NeoPixelGamma.ino │ │ ├── NeoPixelTest │ │ │ └── NeoPixelTest.ino │ │ ├── animations │ │ │ ├── NeoPixelAnimation │ │ │ │ └── NeoPixelAnimation.ino │ │ │ ├── NeoPixelCylon │ │ │ │ └── NeoPixelCylon.ino │ │ │ ├── NeoPixelFunFadeInOut │ │ │ │ └── NeoPixelFunFadeInOut.ino │ │ │ ├── NeoPixelFunLoop │ │ │ │ └── NeoPixelFunLoop.ino │ │ │ ├── NeoPixelFunRandomChange │ │ │ │ └── NeoPixelFunRandomChange.ino │ │ │ └── NeoPixelRotateLoop │ │ │ │ └── NeoPixelRotateLoop.ino │ │ ├── bitmaps │ │ │ ├── NeoPixelBitmap │ │ │ │ ├── NeoPixelBitmap.ino │ │ │ │ ├── Strings.bmp │ │ │ │ └── StringsW.bmp │ │ │ ├── NeoPixelBufferCylon │ │ │ │ ├── Cylon.pdn │ │ │ │ ├── CylonGrb.h │ │ │ │ ├── CylonGrbw.h │ │ │ │ └── NeoPixelBufferCylon.ino │ │ │ ├── NeoPixelBufferShader │ │ │ │ └── NeoPixelBufferShader.ino │ │ │ └── NeoPixelDibTest │ │ │ │ └── NeoPixelDibTest.ino │ │ └── topologies │ │ │ ├── NeoPixelMosaicDump │ │ │ └── NeoPixelMosaicDump.ino │ │ │ ├── NeoPixelMosaicTest │ │ │ └── NeoPixelMosaicTest.ino │ │ │ ├── NeoPixelRingTopologyTest │ │ │ └── NeoPixelRingTopologyTest.ino │ │ │ ├── NeoPixelTilesDump │ │ │ └── NeoPixelTilesDump.ino │ │ │ ├── NeoPixelTilesTest │ │ │ └── NeoPixelTilesTest.ino │ │ │ ├── NeoPixelTopologyDump │ │ │ └── NeoPixelTopologyDump.ino │ │ │ └── NeoPixelTopologyTest │ │ │ └── NeoPixelTopologyTest.ino │ ├── extras │ │ └── curves │ │ │ ├── circular.png │ │ │ ├── cubic.png │ │ │ ├── different.png │ │ │ ├── exponential.png │ │ │ ├── gamma.png │ │ │ ├── pronounced.png │ │ │ ├── quadratic.png │ │ │ ├── quintic.png │ │ │ └── sinusoidal.png │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── NeoPixelAnimator.h │ │ ├── NeoPixelBrightnessBus.h │ │ ├── NeoPixelBus.h │ │ └── internal │ │ ├── DotStarAvrMethod.h │ │ ├── DotStarColorFeatures.h │ │ ├── DotStarGenericMethod.h │ │ ├── DotStarSpiMethod.h │ │ ├── Esp32_i2s.c │ │ ├── Esp32_i2s.h │ │ ├── HsbColor.cpp │ │ ├── HsbColor.h │ │ ├── HslColor.cpp │ │ ├── HslColor.h │ │ ├── HtmlColor.cpp │ │ ├── HtmlColor.h │ │ ├── HtmlColorNameStrings.cpp │ │ ├── HtmlColorNameStrings.h │ │ ├── HtmlColorNames.cpp │ │ ├── HtmlColorShortNames.cpp │ │ ├── Layouts.h │ │ ├── NeoArmMethod.h │ │ ├── NeoAvrMethod.h │ │ ├── NeoBitmapFile.h │ │ ├── NeoBuffer.h │ │ ├── NeoBufferContext.h │ │ ├── NeoBufferMethods.h │ │ ├── NeoColorFeatures.h │ │ ├── NeoDib.h │ │ ├── NeoEase.h │ │ ├── NeoEsp32I2sMethod.h │ │ ├── NeoEsp32RmtMethod.h │ │ ├── NeoEsp8266DmaMethod.h │ │ ├── NeoEsp8266UartMethod.cpp │ │ ├── NeoEsp8266UartMethod.h │ │ ├── NeoEspBitBangMethod.h │ │ ├── NeoGamma.cpp │ │ ├── NeoGamma.h │ │ ├── NeoHueBlend.h │ │ ├── NeoMosaic.h │ │ ├── NeoPixelAnimator.cpp │ │ ├── NeoPixelAvr.c │ │ ├── NeoPixelEsp.c │ │ ├── NeoRingTopology.h │ │ ├── NeoSpriteSheet.h │ │ ├── NeoTiles.h │ │ ├── NeoTopology.h │ │ ├── RgbColor.cpp │ │ ├── RgbColor.h │ │ ├── RgbwColor.cpp │ │ └── RgbwColor.h ├── NewPing-1.9.1 │ ├── README.md │ ├── examples │ │ ├── NewPing15SensorsTimer │ │ │ └── NewPing15SensorsTimer.pde │ │ ├── NewPing3Sensors │ │ │ └── NewPing3Sensors.pde │ │ ├── NewPingEventTimer │ │ │ └── NewPingEventTimer.pde │ │ ├── NewPingExample │ │ │ └── NewPingExample.pde │ │ ├── NewPingTimerMedian │ │ │ └── NewPingTimerMedian.pde │ │ └── TimerExample │ │ │ └── TimerExample.pde │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── NewPing.cpp │ │ └── NewPing.h ├── OneWire-2.3.3.06 │ ├── OneWire.cpp │ ├── OneWire.h │ ├── examples │ │ ├── DS18x20_Temperature │ │ │ └── DS18x20_Temperature.pde │ │ ├── DS2408_Switch │ │ │ └── DS2408_Switch.pde │ │ └── DS250x_PROM │ │ │ └── DS250x_PROM.pde │ ├── keywords.txt │ ├── library.json │ └── library.properties ├── OpenTherm-0.9.0 │ ├── LICENSE │ ├── README.md │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── OpenTherm.cpp │ │ └── OpenTherm.h ├── PubSubClient-EspEasy-2.7.12 │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES.txt │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── mqtt_auth │ │ │ └── mqtt_auth.ino │ │ ├── mqtt_basic │ │ │ └── mqtt_basic.ino │ │ ├── mqtt_esp8266 │ │ │ └── mqtt_esp8266.ino │ │ ├── mqtt_large_message │ │ │ └── mqtt_large_message.ino │ │ ├── mqtt_publish_in_callback │ │ │ └── mqtt_publish_in_callback.ino │ │ ├── mqtt_reconnect_nonblocking │ │ │ └── mqtt_reconnect_nonblocking.ino │ │ └── mqtt_stream │ │ │ └── mqtt_stream.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── src │ │ ├── PubSubClient.cpp │ │ └── PubSubClient.h │ └── tests │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── src │ │ ├── connect_spec.cpp │ │ ├── keepalive_spec.cpp │ │ ├── lib │ │ │ ├── Arduino.h │ │ │ ├── BDDTest.cpp │ │ │ ├── BDDTest.h │ │ │ ├── Buffer.cpp │ │ │ ├── Buffer.h │ │ │ ├── Client.h │ │ │ ├── IPAddress.cpp │ │ │ ├── IPAddress.h │ │ │ ├── Print.h │ │ │ ├── ShimClient.cpp │ │ │ ├── ShimClient.h │ │ │ ├── Stream.cpp │ │ │ ├── Stream.h │ │ │ └── trace.h │ │ ├── publish_spec.cpp │ │ ├── receive_spec.cpp │ │ └── subscribe_spec.cpp │ │ ├── testcases │ │ ├── __init__.py │ │ ├── mqtt_basic.py │ │ ├── mqtt_publish_in_callback.py │ │ └── settings.py │ │ └── testsuite.py ├── RF24 │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── Doxyfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RF24.cpp │ ├── RF24.h │ ├── RF24_config.h │ ├── configure │ ├── doxygen-custom.css │ ├── examples │ │ ├── GettingStarted │ │ │ └── GettingStarted.ino │ │ ├── GettingStarted_CallResponse │ │ │ └── GettingStarted_CallResponse.ino │ │ ├── GettingStarted_HandlingData │ │ │ └── GettingStarted_HandlingData.ino │ │ ├── GettingStarted_HandlingFailures │ │ │ └── GettingStarted_HandlingFailures.ino │ │ ├── Transfer │ │ │ └── Transfer.ino │ │ ├── TransferTimeouts │ │ │ └── TransferTimeouts.ino │ │ ├── Usage │ │ │ ├── led_remote │ │ │ │ ├── Jamfile │ │ │ │ └── led_remote.pde │ │ │ ├── nordic_fob │ │ │ │ ├── Jamfile │ │ │ │ └── nordic_fob.pde │ │ │ ├── pingpair_maple │ │ │ │ ├── Jamfile │ │ │ │ ├── main.cpp │ │ │ │ └── pingpair_maple.pde │ │ │ └── readme.md │ │ ├── pingpair_ack │ │ │ └── pingpair_ack.ino │ │ ├── pingpair_dyn │ │ │ ├── Jamfile │ │ │ └── pingpair_dyn.ino │ │ ├── pingpair_irq │ │ │ └── pingpair_irq.ino │ │ ├── pingpair_irq_simple │ │ │ └── pingpair_irq_simple.ino │ │ ├── pingpair_multi_dyn │ │ │ ├── Jamfile │ │ │ └── pingpair_multi_dyn.ino │ │ ├── pingpair_sleepy │ │ │ └── pingpair_sleepy.ino │ │ ├── rf24_ATTiny │ │ │ ├── rf24ping85 │ │ │ │ └── rf24ping85.ino │ │ │ └── timingSearch3pin │ │ │ │ └── timingSearch3pin.ino │ │ ├── scanner │ │ │ ├── Jamfile │ │ │ └── scanner.ino │ │ └── starping │ │ │ ├── Jamfile │ │ │ └── starping.pde │ ├── examples_linux │ │ ├── Makefile.examples │ │ ├── extra │ │ │ ├── Makefile │ │ │ ├── rpi-hub.cpp │ │ │ └── scanner.cpp │ │ ├── gettingstarted.cpp │ │ ├── gettingstarted_call_response.cpp │ │ ├── interrupts │ │ │ ├── Makefile │ │ │ ├── gettingstarted_call_response_int.cpp │ │ │ ├── gettingstarted_call_response_int2.cpp │ │ │ ├── pingpair_dyn_int.cpp │ │ │ └── transfer_interrupt.cpp │ │ ├── pingpair_dyn.cpp │ │ ├── pingpair_dyn.py │ │ ├── readme.md │ │ └── transfer.cpp │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── nRF24L01.h │ ├── printf.h │ ├── pyRF24 │ │ ├── crossunixccompiler.py │ │ ├── pyRF24.cpp │ │ ├── pyRF24 │ │ │ ├── crossunixccompiler.py │ │ │ ├── pyRF24.cpp │ │ │ ├── readme.md │ │ │ └── setup.py │ │ ├── pyRF24Mesh │ │ │ ├── example_master.py │ │ │ ├── pyRF24Mesh.cpp │ │ │ └── setup.py │ │ ├── pyRF24Network │ │ │ ├── examples │ │ │ │ ├── helloworld_rx.py │ │ │ │ └── helloworld_tx.py │ │ │ ├── pyRF24Network.cpp │ │ │ └── setup.py │ │ ├── readme.md │ │ └── setup.py │ ├── tests │ │ ├── README │ │ ├── native │ │ │ ├── Jamfile │ │ │ ├── pingpair_irq.pde │ │ │ └── printf.h │ │ ├── pingpair_blocking │ │ │ ├── Jamfile │ │ │ ├── pingpair_blocking.pde │ │ │ ├── printf.h │ │ │ ├── runtest.py │ │ │ ├── runtests.sh │ │ │ └── test.ex │ │ └── pingpair_test │ │ │ ├── Jamfile │ │ │ ├── pingpair_test.pde │ │ │ ├── printf.h │ │ │ ├── runtest.py │ │ │ ├── runtests.sh │ │ │ └── test.ex │ ├── utility │ │ ├── ATTiny │ │ │ ├── RF24_arch_config.h │ │ │ └── spi.h │ │ ├── ATXMegaD3 │ │ │ ├── README.md │ │ │ ├── RF24_arch_config.h │ │ │ ├── compatibility.c │ │ │ ├── compatibility.h │ │ │ ├── gpio.cpp │ │ │ ├── gpio.h │ │ │ ├── gpio_helper.c │ │ │ ├── gpio_helper.h │ │ │ ├── includes.h │ │ │ ├── spi.cpp │ │ │ └── spi.h │ │ ├── Due │ │ │ └── RF24_arch_config.h │ │ ├── LittleWire │ │ │ ├── RF24_arch_config.h │ │ │ └── includes.h │ │ ├── MRAA │ │ │ ├── RF24_arch_config.h │ │ │ ├── compatibility.c │ │ │ ├── compatibility.h │ │ │ ├── gpio.cpp │ │ │ ├── gpio.h │ │ │ ├── includes.h │ │ │ ├── spi.cpp │ │ │ └── spi.h │ │ ├── RPi │ │ │ ├── RF24_arch_config.h │ │ │ ├── bcm2835.c │ │ │ ├── bcm2835.h │ │ │ ├── includes.h │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── spi.cpp │ │ │ └── spi.h │ │ ├── SPIDEV │ │ │ ├── RF24_arch_config.h │ │ │ ├── compatibility.c │ │ │ ├── compatibility.h │ │ │ ├── gpio.cpp │ │ │ ├── gpio.h │ │ │ ├── includes.h │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── spi.cpp │ │ │ └── spi.h │ │ ├── Teensy │ │ │ └── RF24_arch_config.h │ │ ├── Template │ │ │ ├── RF24_arch_config.h │ │ │ ├── compatibility.h │ │ │ ├── gpio.h │ │ │ ├── includes.h │ │ │ └── spi.h │ │ └── wiringPi │ │ │ ├── RF24_arch_config.h │ │ │ ├── includes.h │ │ │ ├── spi.cpp │ │ │ └── spi.h │ └── wikidoc.xslt ├── TasmotaModbus-1.2.0 │ ├── README.md │ ├── examples │ │ └── modbustest │ │ │ └── modbustest.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── TasmotaModbus.cpp │ │ └── TasmotaModbus.h ├── TasmotaSerial-3.1.0 │ ├── README.md │ ├── examples │ │ └── swsertest │ │ │ └── swsertest.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── TasmotaSerial.cpp │ │ └── TasmotaSerial.h ├── UdpListener │ ├── library.properties │ └── src │ │ └── UdpListener.h ├── Unishox-1.0-shadinger │ ├── generator │ │ ├── generator.c │ │ └── remapping.xlsx │ ├── library.properties │ ├── python │ │ └── unishox.py │ └── src │ │ ├── unishox.cpp │ │ └── unishox.h ├── Xlatb_RA8876-gemu-1.0 │ ├── RA8876.cpp │ ├── RA8876.h │ ├── README.md │ ├── keywords.txt │ ├── library.properties │ └── spi_register.h ├── base64-1.1.1 │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── catch.cpp │ ├── catch.hpp │ ├── library.properties │ └── src │ │ └── base64.hpp ├── bearssl-esp8266 │ ├── bearssl_esp8266-customized.txt │ ├── conf │ │ └── esp8266.mk │ ├── library.properties │ └── src │ │ ├── aead │ │ ├── ccm.c │ │ ├── eax.c │ │ └── gcm.c │ │ ├── codec │ │ ├── ccopy.c │ │ ├── dec16be.c │ │ ├── dec16le.c │ │ ├── dec32be.c │ │ ├── dec32le.c │ │ ├── dec64be.c │ │ ├── dec64le.c │ │ ├── enc16be.c │ │ ├── enc16le.c │ │ ├── enc32be.c │ │ ├── enc32le.c │ │ ├── enc64be.c │ │ ├── enc64le.c │ │ ├── pemdec.c │ │ └── pemenc.c │ │ ├── ec │ │ ├── ec_all_m15.c │ │ ├── ec_c25519_i15.c │ │ ├── ec_curve25519.c │ │ ├── ec_default.c │ │ ├── ec_keygen.c │ │ ├── ec_p256_m15.c │ │ ├── ec_prime_i15.c │ │ ├── ec_pubkey.c │ │ ├── ec_secp256r1.c │ │ ├── ec_secp384r1.c │ │ ├── ec_secp521r1.c │ │ ├── ecdsa_atr.c │ │ ├── ecdsa_default_sign_asn1.c │ │ ├── ecdsa_default_sign_raw.c │ │ ├── ecdsa_default_vrfy_asn1.c │ │ ├── ecdsa_default_vrfy_raw.c │ │ ├── ecdsa_i15_bits.c │ │ ├── ecdsa_i15_sign_asn1.c │ │ ├── ecdsa_i15_sign_raw.c │ │ ├── ecdsa_i15_vrfy_asn1.c │ │ ├── ecdsa_i15_vrfy_raw.c │ │ └── ecdsa_rta.c │ │ ├── hash │ │ ├── dig_oid.c │ │ ├── dig_size.c │ │ ├── ghash_ctmul.c │ │ ├── ghash_ctmul32.c │ │ ├── ghash_ctmul64.c │ │ ├── ghash_pclmul.c │ │ ├── md5.c │ │ ├── md5sha1.c │ │ ├── mgf1.c │ │ ├── multihash.c │ │ ├── sha1.c │ │ ├── sha2big.c │ │ └── sha2small.c │ │ ├── int │ │ ├── i15_add.c │ │ ├── i15_bitlen.c │ │ ├── i15_decmod.c │ │ ├── i15_decode.c │ │ ├── i15_decred.c │ │ ├── i15_encode.c │ │ ├── i15_fmont.c │ │ ├── i15_iszero.c │ │ ├── i15_moddiv.c │ │ ├── i15_modpow.c │ │ ├── i15_modpow2.c │ │ ├── i15_montmul.c │ │ ├── i15_mulacc.c │ │ ├── i15_muladd.c │ │ ├── i15_ninv15.c │ │ ├── i15_reduce.c │ │ ├── i15_rshift.c │ │ ├── i15_sub.c │ │ └── i15_tmont.c │ │ ├── kdf │ │ ├── hkdf.c │ │ └── shake.c │ │ ├── mac │ │ ├── hmac.c │ │ └── hmac_ct.c │ │ ├── pgmspace_bearssl.h │ │ ├── rand │ │ ├── aesctr_drbg.c │ │ ├── hmac_drbg.c │ │ └── sysrng.c │ │ ├── rsa │ │ ├── rsa_default_keygen.c │ │ ├── rsa_default_modulus.c │ │ ├── rsa_default_oaep_decrypt.c │ │ ├── rsa_default_oaep_encrypt.c │ │ ├── rsa_default_pkcs1_sign.c │ │ ├── rsa_default_pkcs1_vrfy.c │ │ ├── rsa_default_priv.c │ │ ├── rsa_default_privexp.c │ │ ├── rsa_default_pss_sign.c │ │ ├── rsa_default_pss_vrfy.c │ │ ├── rsa_default_pub.c │ │ ├── rsa_default_pubexp.c │ │ ├── rsa_i15_keygen.c │ │ ├── rsa_i15_modulus.c │ │ ├── rsa_i15_oaep_decrypt.c │ │ ├── rsa_i15_oaep_encrypt.c │ │ ├── rsa_i15_pkcs1_sign.c │ │ ├── rsa_i15_pkcs1_vrfy.c │ │ ├── rsa_i15_priv.c │ │ ├── rsa_i15_privexp.c │ │ ├── rsa_i15_pss_sign.c │ │ ├── rsa_i15_pss_vrfy.c │ │ ├── rsa_i15_pub.c │ │ ├── rsa_i15_pubexp.c │ │ ├── rsa_oaep_pad.c │ │ ├── rsa_oaep_unpad.c │ │ ├── rsa_pkcs1_sig_pad.c │ │ ├── rsa_pkcs1_sig_unpad.c │ │ ├── rsa_pss_sig_pad.c │ │ ├── rsa_pss_sig_unpad.c │ │ └── rsa_ssl_decrypt.c │ │ ├── settings.c │ │ ├── ssl │ │ ├── prf.c │ │ ├── prf_md5sha1.c │ │ ├── prf_sha256.c │ │ ├── prf_sha384.c │ │ ├── ssl_ccert_single_ec.c │ │ ├── ssl_ccert_single_rsa.c │ │ ├── ssl_client.c │ │ ├── ssl_client_default_rsapub.c │ │ ├── ssl_client_full.c │ │ ├── ssl_engine.c │ │ ├── ssl_engine_default_aescbc.c │ │ ├── ssl_engine_default_aesccm.c │ │ ├── ssl_engine_default_aesgcm.c │ │ ├── ssl_engine_default_chapol.c │ │ ├── ssl_engine_default_descbc.c │ │ ├── ssl_engine_default_ec.c │ │ ├── ssl_engine_default_ecdsa.c │ │ ├── ssl_engine_default_rsavrfy.c │ │ ├── ssl_hashes.c │ │ ├── ssl_hs_client.c │ │ ├── ssl_hs_server.c │ │ ├── ssl_io.c │ │ ├── ssl_keyexport.c │ │ ├── ssl_lru.c │ │ ├── ssl_rec_cbc.c │ │ ├── ssl_rec_ccm.c │ │ ├── ssl_rec_chapol.c │ │ ├── ssl_rec_gcm.c │ │ ├── ssl_scert_single_ec.c │ │ └── ssl_scert_single_rsa.c │ │ ├── symcipher │ │ ├── aes_big_cbcdec.c │ │ ├── aes_big_cbcenc.c │ │ ├── aes_big_ctr.c │ │ ├── aes_big_ctrcbc.c │ │ ├── aes_big_dec.c │ │ ├── aes_big_enc.c │ │ ├── aes_common.c │ │ ├── aes_ct.c │ │ ├── aes_ct64.c │ │ ├── aes_ct64_cbcdec.c │ │ ├── aes_ct64_cbcenc.c │ │ ├── aes_ct64_ctr.c │ │ ├── aes_ct64_ctrcbc.c │ │ ├── aes_ct64_dec.c │ │ ├── aes_ct64_enc.c │ │ ├── aes_ct_cbcdec.c │ │ ├── aes_ct_cbcenc.c │ │ ├── aes_ct_ctr.c │ │ ├── aes_ct_ctrcbc.c │ │ ├── aes_ct_dec.c │ │ ├── aes_ct_enc.c │ │ ├── aes_small_cbcdec.c │ │ ├── aes_small_cbcenc.c │ │ ├── aes_small_ctr.c │ │ ├── aes_small_ctrcbc.c │ │ ├── aes_small_dec.c │ │ ├── aes_small_enc.c │ │ ├── chacha20_ct.c │ │ ├── chacha20_sse2.c │ │ ├── des_ct.c │ │ ├── des_ct_cbcdec.c │ │ ├── des_ct_cbcenc.c │ │ ├── des_support.c │ │ ├── des_tab.c │ │ ├── des_tab_cbcdec.c │ │ ├── des_tab_cbcenc.c │ │ ├── poly1305_ctmul.c │ │ ├── poly1305_ctmul32.c │ │ ├── poly1305_ctmulq.c │ │ └── poly1305_i15.c │ │ ├── t_bearssl.h │ │ ├── t_bearssl_aead.h │ │ ├── t_bearssl_block.h │ │ ├── t_bearssl_ec.h │ │ ├── t_bearssl_hash.h │ │ ├── t_bearssl_hmac.h │ │ ├── t_bearssl_kdf.h │ │ ├── t_bearssl_pem.h │ │ ├── t_bearssl_prf.h │ │ ├── t_bearssl_rand.h │ │ ├── t_bearssl_rsa.h │ │ ├── t_bearssl_ssl.h │ │ ├── t_bearssl_tasmota_config.h │ │ ├── t_bearssl_x509.h │ │ ├── t_config.h │ │ ├── t_inner.h │ │ └── x509 │ │ ├── asn1enc.c │ │ ├── encode_ec_pk8der.c │ │ ├── encode_ec_rawder.c │ │ ├── encode_rsa_pk8der.c │ │ ├── encode_rsa_rawder.c │ │ ├── pkey_decoder.c │ │ ├── skey_decoder.c │ │ ├── x509_decoder.c │ │ ├── x509_knownkey.c │ │ ├── x509_minimal.c │ │ └── x509_minimal_full.c ├── cc1101 │ ├── README.md │ ├── cc1101.cpp │ ├── cc1101.h │ ├── cc1101.h.txt │ └── ccpacket.h ├── esp-epaper-29-ws-20171230-gemu-1.1 │ ├── .gitignore │ ├── .travis.yml │ ├── Arduino │ │ ├── epd2in9-demo │ │ │ └── epd2in9-demo.ino │ │ └── libraries │ │ │ └── readme.txt │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── components │ │ └── epaper-29-ws │ │ │ ├── component.mk │ │ │ ├── epaper-29-ws.c │ │ │ ├── epaper-29-ws.h │ │ │ ├── epaper_font.c │ │ │ ├── epaper_fonts.h │ │ │ ├── font16.c │ │ │ ├── font20.c │ │ │ ├── font8.c │ │ │ ├── imagedata.cpp │ │ │ └── imagedata.h │ ├── docs │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── conf.py │ │ ├── gen-dxd.py │ │ ├── index.rst │ │ ├── link-roles.py │ │ ├── repo_util.py │ │ └── requirements.txt │ ├── library.properties │ ├── main │ │ ├── README.md │ │ ├── component.mk │ │ ├── esp-epaper-29-ws.c │ │ ├── imagedata.c │ │ └── imagedata.h │ ├── pictures │ │ ├── 2.9inch_e-Paper_Datasheet.pdf │ │ ├── e-paper-and-esp-sample-image.jpg │ │ ├── e-paper-and-esp-sample-text.jpg │ │ ├── espresif-logo.bmp │ │ └── image-conversion-setup.png │ └── src │ │ ├── epd2in9.cpp │ │ ├── epd2in9.h │ │ ├── epd4in2.cpp │ │ ├── epd4in2.h │ │ ├── epdif.cpp │ │ ├── epdif.h │ │ ├── epdpaint.cpp │ │ ├── epdpaint.h │ │ ├── font12.c │ │ ├── font16.c │ │ ├── font20.c │ │ ├── font24.c │ │ ├── font8.c │ │ ├── fonts.h │ │ ├── renderer.cpp │ │ └── renderer.h ├── esp-knx-ip-0.5.2 │ ├── DPT.h │ ├── LICENSE │ ├── README.md │ ├── esp-knx-ip-config.cpp │ ├── esp-knx-ip-conversion.cpp │ ├── esp-knx-ip-send.cpp │ ├── esp-knx-ip-webserver.cpp │ ├── esp-knx-ip.cpp │ ├── esp-knx-ip.h │ ├── examples │ │ ├── environment-sensor │ │ │ └── environment-sensor.ino │ │ ├── sonoff │ │ │ └── sonoff.ino │ │ └── static-config │ │ │ └── static-config.ino │ ├── keywords.txt │ └── library.properties ├── jsmn-shadinger-1.0 │ ├── README.md │ ├── library.properties │ ├── src │ │ ├── JsonParser.cpp │ │ ├── JsonParser.h │ │ ├── JsonParser.hpp.gch │ │ ├── jsmn.cpp │ │ └── jsmn.h │ └── test │ │ └── test-json.cpp ├── mlx90640-library │ ├── MLX90640_API.cpp │ └── MLX90640_API.h ├── rc-switch │ ├── .gitignore │ ├── README.md │ ├── examples │ │ ├── ReceiveDemo_Advanced │ │ │ ├── ReceiveDemo_Advanced.ino │ │ │ └── output.ino │ │ ├── ReceiveDemo_Simple │ │ │ └── ReceiveDemo_Simple.ino │ │ ├── SendDemo │ │ │ └── SendDemo.ino │ │ ├── TypeA_WithDIPSwitches │ │ │ └── TypeA_WithDIPSwitches.ino │ │ ├── TypeA_WithDIPSwitches_Lightweight │ │ │ └── TypeA_WithDIPSwitches_Lightweight.ino │ │ ├── TypeB_WithRotaryOrSlidingSwitches │ │ │ └── TypeB_WithRotaryOrSlidingSwitches.ino │ │ ├── TypeC_Intertechno │ │ │ └── TypeC_Intertechno.ino │ │ ├── TypeD_REV │ │ │ └── TypeD_REV.ino │ │ └── Webserver │ │ │ └── Webserver.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── platformio.ini │ └── src │ │ ├── RCSwitch.cpp │ │ └── RCSwitch.h └── vl53l0x-arduino-1.02 │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── VL53L0X.cpp │ ├── VL53L0X.h │ ├── examples │ ├── Continuous │ │ └── Continuous.ino │ └── Single │ │ └── Single.ino │ ├── keywords.txt │ └── library.properties ├── libesp32 ├── ESP32-Ethernet │ ├── README.md │ ├── examples │ │ └── EthernetLAN_IP101 │ │ │ └── EthernetLAN_IP101.ino │ ├── library.properties │ └── src │ │ ├── ETH.cpp │ │ └── ETH.h ├── ESP32-Mail-Client │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Receive_email │ │ │ └── Receive_email.ino │ │ ├── Send_email │ │ │ ├── Send_email.ino │ │ │ └── image.h │ │ ├── Set_flag │ │ │ └── Set_flag.ino │ │ └── Time │ │ │ └── Time.ino │ ├── keywords.txt │ ├── library.properties │ ├── media │ │ └── images │ │ │ ├── esp32-mail.jpg │ │ │ └── esp32-mail.png │ └── src │ │ ├── ESP32MailHTTPClient.cpp │ │ ├── ESP32MailHTTPClient.h │ │ ├── ESP32TimeHelper.cpp │ │ ├── ESP32TimeHelper.h │ │ ├── ESP32_MailClient.cpp │ │ ├── ESP32_MailClient.h │ │ ├── RFC2047.cpp │ │ ├── RFC2047.h │ │ ├── WiFiClientSecureESP32.cpp │ │ ├── WiFiClientSecureESP32.h │ │ ├── ssl_client32.cpp │ │ └── ssl_client32.h ├── ESP32-to-ESP8266-compat │ ├── README.adoc │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── AddrList.h │ │ ├── ESP32Wifi.cpp │ │ ├── ESP8266HTTPClient.h │ │ ├── ESP8266WebServer.h │ │ ├── ESP8266WiFi.h │ │ ├── ESP8266httpUpdate.h │ │ ├── ESP8266mDNS.h │ │ ├── c_types.h │ │ ├── eboot_command.h │ │ ├── esp8266toEsp32.cpp │ │ ├── esp8266toEsp32.h │ │ ├── ets_sys.h │ │ ├── gpio.h │ │ ├── os_type.h │ │ ├── osapi.h │ │ ├── sntp.h │ │ ├── spi_flash.h │ │ ├── twi.h │ │ └── user_interface.h ├── ESP32README.md ├── NimBLE-Arduino │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── docs │ │ ├── Improvements_and_updates.md │ │ ├── Migration_guide.md │ │ └── New_user_guide.md │ ├── examples │ │ ├── BLE_Beacon_Scanner │ │ │ ├── BLE_Beacon_Scanner.ino │ │ │ └── BLE_Beacon_Scanner.md │ │ ├── BLE_EddystoneTLM_Beacon │ │ │ ├── BLE_EddystoneTLM_Beacon.ino │ │ │ └── BLE_EddystoneTLM_Beacon.md │ │ ├── BLE_EddystoneURL_Beacon │ │ │ ├── BLE_EddystoneURL_Beacon.ino │ │ │ └── BLE_EddystoneURL_Beacon.md │ │ ├── NimBLE_Client │ │ │ └── NimBLE_Client.ino │ │ ├── NimBLE_Server │ │ │ └── NimBLE_Server.ino │ │ └── Refactored_original_examples │ │ │ ├── BLE_client │ │ │ └── BLE_client.ino │ │ │ ├── BLE_iBeacon │ │ │ └── BLE_iBeacon.ino │ │ │ ├── BLE_notify │ │ │ └── BLE_notify.ino │ │ │ ├── BLE_scan │ │ │ └── BLE_scan.ino │ │ │ ├── BLE_server │ │ │ └── BLE_server.ino │ │ │ ├── BLE_server_multiconnect │ │ │ └── BLE_server_multiconnect.ino │ │ │ ├── BLE_uart │ │ │ └── BLE_uart.ino │ │ │ └── BLE_write │ │ │ └── BLE_write.ino │ ├── library.properties │ └── src │ │ ├── CODING_STANDARDS.md │ │ ├── FreeRTOS.cpp │ │ ├── FreeRTOS.h │ │ ├── HIDKeyboardTypes.h │ │ ├── HIDTypes.h │ │ ├── NOTICE │ │ ├── NimBLE2904.cpp │ │ ├── NimBLE2904.h │ │ ├── NimBLEAddress.cpp │ │ ├── NimBLEAddress.h │ │ ├── NimBLEAdvertisedDevice.cpp │ │ ├── NimBLEAdvertisedDevice.h │ │ ├── NimBLEAdvertising.cpp │ │ ├── NimBLEAdvertising.h │ │ ├── NimBLEBeacon.cpp │ │ ├── NimBLEBeacon.h │ │ ├── NimBLECharacteristic.cpp │ │ ├── NimBLECharacteristic.h │ │ ├── NimBLEClient.cpp │ │ ├── NimBLEClient.h │ │ ├── NimBLEDescriptor.cpp │ │ ├── NimBLEDescriptor.h │ │ ├── NimBLEDevice.cpp │ │ ├── NimBLEDevice.h │ │ ├── NimBLEEddystoneTLM.cpp │ │ ├── NimBLEEddystoneTLM.h │ │ ├── NimBLEEddystoneURL.cpp │ │ ├── NimBLEEddystoneURL.h │ │ ├── NimBLELog.h │ │ ├── NimBLERemoteCharacteristic.cpp │ │ ├── NimBLERemoteCharacteristic.h │ │ ├── NimBLERemoteDescriptor.cpp │ │ ├── NimBLERemoteDescriptor.h │ │ ├── NimBLERemoteService.cpp │ │ ├── NimBLERemoteService.h │ │ ├── NimBLEScan.cpp │ │ ├── NimBLEScan.h │ │ ├── NimBLESecurity.cpp │ │ ├── NimBLESecurity.h │ │ ├── NimBLEServer.cpp │ │ ├── NimBLEServer.h │ │ ├── NimBLEService.cpp │ │ ├── NimBLEService.h │ │ ├── NimBLEUUID.cpp │ │ ├── NimBLEUUID.h │ │ ├── NimBLEUtils.cpp │ │ ├── NimBLEUtils.h │ │ ├── README.md │ │ ├── RELEASE_NOTES.md │ │ ├── console │ │ └── console.h │ │ ├── esp-hci │ │ └── src │ │ │ └── esp_nimble_hci.c │ │ ├── esp_compiler.h │ │ ├── esp_nimble_cfg.h │ │ ├── esp_nimble_hci.h │ │ ├── esp_nimble_mem.h │ │ ├── ext │ │ └── tinycrypt │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── documentation │ │ │ └── tinycrypt.rst │ │ │ └── src │ │ │ ├── aes_decrypt.c │ │ │ ├── aes_encrypt.c │ │ │ ├── cbc_mode.c │ │ │ ├── ccm_mode.c │ │ │ ├── cmac_mode.c │ │ │ ├── ctr_mode.c │ │ │ ├── ctr_prng.c │ │ │ ├── ecc.c │ │ │ ├── ecc_dh.c │ │ │ ├── ecc_dsa.c │ │ │ ├── ecc_platform_specific.c │ │ │ ├── hmac.c │ │ │ ├── hmac_prng.c │ │ │ ├── sha256.c │ │ │ └── utils.c │ │ ├── hal │ │ └── hal_timer.h │ │ ├── host │ │ ├── ble_att.h │ │ ├── ble_eddystone.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_hs.h │ │ ├── ble_hs_adv.h │ │ ├── ble_hs_hci.h │ │ ├── ble_hs_id.h │ │ ├── ble_hs_log.h │ │ ├── ble_hs_mbuf.h │ │ ├── ble_hs_pvcy.h │ │ ├── ble_hs_stop.h │ │ ├── ble_ibeacon.h │ │ ├── ble_l2cap.h │ │ ├── ble_monitor.h │ │ ├── ble_sm.h │ │ ├── ble_store.h │ │ ├── ble_uuid.h │ │ └── util │ │ │ └── util.h │ │ ├── log │ │ └── log.h │ │ ├── mem │ │ └── mem.h │ │ ├── mesh │ │ ├── access.h │ │ ├── cfg_cli.h │ │ ├── cfg_srv.h │ │ ├── glue.h │ │ ├── health_cli.h │ │ ├── health_srv.h │ │ ├── main.h │ │ ├── mesh.h │ │ ├── model_cli.h │ │ ├── model_srv.h │ │ ├── porting.h │ │ ├── proxy.h │ │ ├── slist.h │ │ └── testing.h │ │ ├── modlog │ │ └── modlog.h │ │ ├── nimble │ │ ├── ble.h │ │ ├── ble_hci_trans.h │ │ ├── hci_common.h │ │ ├── host │ │ │ ├── mesh │ │ │ │ └── src │ │ │ │ │ ├── access.c │ │ │ │ │ ├── access.h │ │ │ │ │ ├── adv.c │ │ │ │ │ ├── adv.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── beacon.c │ │ │ │ │ ├── beacon.h │ │ │ │ │ ├── ble_att_priv.h │ │ │ │ │ ├── ble_gatt_priv.h │ │ │ │ │ ├── ble_hs_conn_priv.h │ │ │ │ │ ├── ble_l2cap_coc_priv.h │ │ │ │ │ ├── ble_l2cap_priv.h │ │ │ │ │ ├── ble_l2cap_sig_priv.h │ │ │ │ │ ├── cfg_cli.c │ │ │ │ │ ├── cfg_srv.c │ │ │ │ │ ├── crypto.c │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── foundation.h │ │ │ │ │ ├── friend.c │ │ │ │ │ ├── friend.h │ │ │ │ │ ├── glue.c │ │ │ │ │ ├── health_cli.c │ │ │ │ │ ├── health_srv.c │ │ │ │ │ ├── light_model.c │ │ │ │ │ ├── light_model.h │ │ │ │ │ ├── lpn.c │ │ │ │ │ ├── lpn.h │ │ │ │ │ ├── mesh.c │ │ │ │ │ ├── mesh_priv.h │ │ │ │ │ ├── model_cli.c │ │ │ │ │ ├── model_srv.c │ │ │ │ │ ├── net.c │ │ │ │ │ ├── net.h │ │ │ │ │ ├── prov.c │ │ │ │ │ ├── prov.h │ │ │ │ │ ├── proxy.c │ │ │ │ │ ├── proxy.h │ │ │ │ │ ├── settings.c │ │ │ │ │ ├── settings.h │ │ │ │ │ ├── shell.c │ │ │ │ │ ├── shell.h │ │ │ │ │ ├── src │ │ │ │ │ ├── ble_att_cmd_priv.h │ │ │ │ │ ├── ble_att_priv.h │ │ │ │ │ ├── ble_gap_priv.h │ │ │ │ │ ├── ble_gatt_priv.h │ │ │ │ │ ├── ble_hs_adv_priv.h │ │ │ │ │ ├── ble_hs_atomic_priv.h │ │ │ │ │ ├── ble_hs_conn_priv.h │ │ │ │ │ ├── ble_hs_dbg_priv.h │ │ │ │ │ ├── ble_hs_flow_priv.h │ │ │ │ │ ├── ble_hs_hci_priv.h │ │ │ │ │ ├── ble_hs_id_priv.h │ │ │ │ │ ├── ble_hs_mbuf_priv.h │ │ │ │ │ ├── ble_hs_periodic_sync_priv.h │ │ │ │ │ ├── ble_hs_priv.h │ │ │ │ │ ├── ble_hs_pvcy_priv.h │ │ │ │ │ ├── ble_hs_resolv_priv.h │ │ │ │ │ ├── ble_hs_startup_priv.h │ │ │ │ │ ├── ble_l2cap_coc_priv.h │ │ │ │ │ ├── ble_l2cap_priv.h │ │ │ │ │ ├── ble_l2cap_sig_priv.h │ │ │ │ │ ├── ble_monitor_priv.h │ │ │ │ │ ├── ble_sm_priv.h │ │ │ │ │ └── ble_uuid_priv.h │ │ │ │ │ ├── testing.c │ │ │ │ │ ├── testing.h │ │ │ │ │ ├── transport.c │ │ │ │ │ └── transport.h │ │ │ ├── services │ │ │ │ ├── ans │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_ans.c │ │ │ │ ├── bas │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_bas.c │ │ │ │ ├── gap │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_gap.c │ │ │ │ ├── gatt │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_gatt.c │ │ │ │ ├── ias │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_ias.c │ │ │ │ ├── ipss │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_ipss.c │ │ │ │ ├── lls │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_lls.c │ │ │ │ └── tps │ │ │ │ │ └── src │ │ │ │ │ ├── ble_hs_hci_priv.h │ │ │ │ │ └── ble_svc_tps.c │ │ │ ├── src │ │ │ │ ├── ble_att.c │ │ │ │ ├── ble_att_clt.c │ │ │ │ ├── ble_att_cmd.c │ │ │ │ ├── ble_att_cmd_priv.h │ │ │ │ ├── ble_att_priv.h │ │ │ │ ├── ble_att_svr.c │ │ │ │ ├── ble_eddystone.c │ │ │ │ ├── ble_gap.c │ │ │ │ ├── ble_gap_priv.h │ │ │ │ ├── ble_gatt_priv.h │ │ │ │ ├── ble_gattc.c │ │ │ │ ├── ble_gatts.c │ │ │ │ ├── ble_gatts_lcl.c │ │ │ │ ├── ble_hs.c │ │ │ │ ├── ble_hs_adv.c │ │ │ │ ├── ble_hs_adv_priv.h │ │ │ │ ├── ble_hs_atomic.c │ │ │ │ ├── ble_hs_atomic_priv.h │ │ │ │ ├── ble_hs_cfg.c │ │ │ │ ├── ble_hs_conn.c │ │ │ │ ├── ble_hs_conn_priv.h │ │ │ │ ├── ble_hs_dbg.c │ │ │ │ ├── ble_hs_dbg_priv.h │ │ │ │ ├── ble_hs_flow.c │ │ │ │ ├── ble_hs_flow_priv.h │ │ │ │ ├── ble_hs_hci.c │ │ │ │ ├── ble_hs_hci_cmd.c │ │ │ │ ├── ble_hs_hci_evt.c │ │ │ │ ├── ble_hs_hci_priv.h │ │ │ │ ├── ble_hs_hci_util.c │ │ │ │ ├── ble_hs_id.c │ │ │ │ ├── ble_hs_id_priv.h │ │ │ │ ├── ble_hs_log.c │ │ │ │ ├── ble_hs_mbuf.c │ │ │ │ ├── ble_hs_mbuf_priv.h │ │ │ │ ├── ble_hs_misc.c │ │ │ │ ├── ble_hs_mqueue.c │ │ │ │ ├── ble_hs_periodic_sync.c │ │ │ │ ├── ble_hs_periodic_sync_priv.h │ │ │ │ ├── ble_hs_priv.h │ │ │ │ ├── ble_hs_pvcy.c │ │ │ │ ├── ble_hs_pvcy_priv.h │ │ │ │ ├── ble_hs_resolv.c │ │ │ │ ├── ble_hs_resolv_priv.h │ │ │ │ ├── ble_hs_shutdown.c │ │ │ │ ├── ble_hs_startup.c │ │ │ │ ├── ble_hs_startup_priv.h │ │ │ │ ├── ble_hs_stop.c │ │ │ │ ├── ble_ibeacon.c │ │ │ │ ├── ble_l2cap.c │ │ │ │ ├── ble_l2cap_coc.c │ │ │ │ ├── ble_l2cap_coc_priv.h │ │ │ │ ├── ble_l2cap_priv.h │ │ │ │ ├── ble_l2cap_sig.c │ │ │ │ ├── ble_l2cap_sig_cmd.c │ │ │ │ ├── ble_l2cap_sig_priv.h │ │ │ │ ├── ble_monitor.c │ │ │ │ ├── ble_monitor_priv.h │ │ │ │ ├── ble_sm.c │ │ │ │ ├── ble_sm_alg.c │ │ │ │ ├── ble_sm_cmd.c │ │ │ │ ├── ble_sm_lgcy.c │ │ │ │ ├── ble_sm_priv.h │ │ │ │ ├── ble_sm_sc.c │ │ │ │ ├── ble_store.c │ │ │ │ ├── ble_store_util.c │ │ │ │ ├── ble_uuid.c │ │ │ │ └── ble_uuid_priv.h │ │ │ ├── store │ │ │ │ ├── config │ │ │ │ │ └── src │ │ │ │ │ │ ├── ble_store_config.c │ │ │ │ │ │ ├── ble_store_config_priv.h │ │ │ │ │ │ └── ble_store_nvs.c │ │ │ │ └── ram │ │ │ │ │ └── src │ │ │ │ │ └── ble_store_ram.c │ │ │ └── util │ │ │ │ └── src │ │ │ │ └── addr.c │ │ ├── nimble_npl.h │ │ ├── nimble_npl_os.h │ │ ├── nimble_opt.h │ │ ├── nimble_opt_auto.h │ │ ├── nimble_port.h │ │ ├── nimble_port_freertos.h │ │ └── npl_freertos.h │ │ ├── nimconfig.h │ │ ├── os │ │ ├── endian.h │ │ ├── os.h │ │ ├── os_cputime.h │ │ ├── os_error.h │ │ ├── os_mbuf.h │ │ ├── os_mempool.h │ │ ├── os_trace_api.h │ │ └── queue.h │ │ ├── port │ │ └── src │ │ │ └── esp_nimble_mem.c │ │ ├── porting │ │ ├── nimble │ │ │ ├── include │ │ │ │ └── nimble │ │ │ │ │ └── nimble_port.h │ │ │ └── src │ │ │ │ ├── endian.c │ │ │ │ ├── hal_timer.c │ │ │ │ ├── mem.c │ │ │ │ ├── nimble_port.c │ │ │ │ ├── os_cputime.c │ │ │ │ ├── os_cputime_pwr2.c │ │ │ │ ├── os_mbuf.c │ │ │ │ ├── os_mempool.c │ │ │ │ └── os_msys_init.c │ │ └── npl │ │ │ └── freertos │ │ │ └── src │ │ │ ├── nimble_port_freertos.c │ │ │ └── npl_os_freertos.c │ │ ├── services │ │ ├── ans │ │ │ └── ble_svc_ans.h │ │ ├── bas │ │ │ └── ble_svc_bas.h │ │ ├── gap │ │ │ └── ble_svc_gap.h │ │ ├── gatt │ │ │ └── ble_svc_gatt.h │ │ ├── ias │ │ │ └── ble_svc_ias.h │ │ ├── ipss │ │ │ └── ble_svc_ipss.h │ │ ├── lls │ │ │ └── ble_svc_lls.h │ │ └── tps │ │ │ └── ble_svc_tps.h │ │ ├── src │ │ ├── ble_hs_hci_priv.h │ │ └── ble_sm_priv.h │ │ ├── stats │ │ └── stats.h │ │ ├── store │ │ ├── config │ │ │ └── ble_store_config.h │ │ └── ram │ │ │ └── ble_store_ram.h │ │ ├── syscfg │ │ └── syscfg.h │ │ ├── sysinit │ │ └── sysinit.h │ │ └── tinycrypt │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README │ │ ├── VERSION │ │ ├── aes.h │ │ ├── cbc_mode.h │ │ ├── ccm_mode.h │ │ ├── cmac_mode.h │ │ ├── constants.h │ │ ├── ctr_mode.h │ │ ├── ctr_prng.h │ │ ├── documentation │ │ └── tinycrypt.rst │ │ ├── ecc.h │ │ ├── ecc_dh.h │ │ ├── ecc_dsa.h │ │ ├── ecc_platform_specific.h │ │ ├── hmac.h │ │ ├── hmac_prng.h │ │ ├── sha256.h │ │ └── utils.h └── TTGO_TWatch_Library │ ├── LICENSE │ ├── README.MD │ ├── library.json │ ├── library.properties │ └── src │ ├── axp20x.cpp │ ├── axp20x.h │ ├── bma.cpp │ ├── bma.h │ ├── bma4.c │ ├── bma4.h │ ├── bma423.c │ ├── bma423.h │ ├── bma4_defs.h │ ├── i2c_bus.cpp │ └── i2c_bus.h ├── pio ├── espupload.py ├── gzip-firmware.py ├── http-uploader.py ├── name-firmware.py ├── obj-dump.py ├── override_copy.py ├── sftp-uploader.py └── strip-floats.py ├── platformio.ini ├── platformio_override_sample.ini ├── platformio_tasmota32.ini ├── platformio_tasmota_env.ini ├── platformio_tasmota_env32.ini ├── releases └── releases.bat ├── tasmota ├── CHANGELOG.md ├── StackThunk_light.cpp ├── StackThunk_light.h ├── WiFiClientSecureLightBearSSL.cpp ├── WiFiClientSecureLightBearSSL.h ├── i18n.h ├── language │ ├── bg_BG.h │ ├── cs_CZ.h │ ├── de_DE.h │ ├── el_GR.h │ ├── en_GB.h │ ├── es_ES.h │ ├── fr_FR.h │ ├── he_HE.h │ ├── hu_HU.h │ ├── it-IT.h │ ├── it_IT.h │ ├── ko_KO.h │ ├── nl_NL.h │ ├── pl_PL.h │ ├── pt_BR.h │ ├── pt_PT.h │ ├── ro_RO.h │ ├── ru_RU.h │ ├── sk_SK.h │ ├── sv_SE.h │ ├── tr_TR.h │ ├── uk_UA.h │ ├── zh_CN.h │ └── zh_TW.h ├── my_user_config.h ├── sendemail.h ├── sendemail.ino ├── settings.h ├── settings.ino ├── support.ino ├── support_button.ino ├── support_command.ino ├── support_cores.ino ├── support_crash_recorder.ino ├── support_device_groups.ino ├── support_eeprom.ino ├── support_esp32.ino ├── support_esptool.ino ├── support_features.ino ├── support_flash_log.ino ├── support_float.ino ├── support_jpeg.ino ├── support_json.ino ├── support_light_list.ino ├── support_network.ino ├── support_rotary.ino ├── support_rtc.ino ├── support_static_buffer.ino ├── support_statistics.ino ├── support_switch.ino ├── support_tasmota.ino ├── support_udp.ino ├── support_wifi.ino ├── tasmota.h ├── tasmota.ino ├── tasmota_ca.ino ├── tasmota_compat.h ├── tasmota_configurations.h ├── tasmota_configurations_ESP32.h ├── tasmota_globals.h ├── tasmota_template.h ├── tasmota_template_ESP32.h ├── tasmota_version.h ├── user_config_override_sample.h ├── xdrv_01_webserver.ino ├── xdrv_02_mqtt.ino ├── xdrv_03_energy.ino ├── xdrv_04_light.ino ├── xdrv_05_irremote.ino ├── xdrv_05_irremote_full.ino ├── xdrv_06_snfbridge.ino ├── xdrv_07_domoticz.ino ├── xdrv_08_serial_bridge.ino ├── xdrv_09_timers.ino ├── xdrv_10_rules.ino ├── xdrv_10_scripter.ino ├── xdrv_11_knx.ino ├── xdrv_12_home_assistant.ino ├── xdrv_13_display.ino ├── xdrv_14_mp3.ino ├── xdrv_15_pca9685.ino ├── xdrv_16_tuyamcu.ino ├── xdrv_17_rcswitch.ino ├── xdrv_18_armtronix_dimmers.ino ├── xdrv_19_ps16dz_dimmer.ino ├── xdrv_20_hue.ino ├── xdrv_21_wemo.ino ├── xdrv_22_sonoff_ifan.ino ├── xdrv_23_zigbee_0_constants.ino ├── xdrv_23_zigbee_1_headers.ino ├── xdrv_23_zigbee_1z_libs.ino ├── xdrv_23_zigbee_2_devices.ino ├── xdrv_23_zigbee_3_hue.ino ├── xdrv_23_zigbee_4_persistence.ino ├── xdrv_23_zigbee_5__constants.ino ├── xdrv_23_zigbee_5_converters.ino ├── xdrv_23_zigbee_6_commands.ino ├── xdrv_23_zigbee_7_statemachine.ino ├── xdrv_23_zigbee_8_parsers.ino ├── xdrv_23_zigbee_9_serial.ino ├── xdrv_23_zigbee_9a_upload.ino ├── xdrv_23_zigbee_A_impl.ino ├── xdrv_24_buzzer.ino ├── xdrv_25_A4988_Stepper.ino ├── xdrv_26_ariluxrf.ino ├── xdrv_27_shutter.ino ├── xdrv_28_pcf8574.ino ├── xdrv_29_deepsleep.ino ├── xdrv_30_exs_dimmer.ino ├── xdrv_31_tasmota_client.ino ├── xdrv_32_hotplug.ino ├── xdrv_33_nrf24l01.ino ├── xdrv_34_wemos_motor_v1.ino ├── xdrv_35_pwm_dimmer.ino ├── xdrv_36_keeloq.ino ├── xdrv_37_sonoff_d1.ino ├── xdrv_38_ping.ino ├── xdrv_39_thermostat.ino ├── xdrv_40_telegram.ino ├── xdrv_41_tcp_bridge.ino ├── xdrv_42_i2s_audio.ino ├── xdrv_43_mlx90640.ino ├── xdrv_81_webcam.ino ├── xdrv_82_ethernet.ino ├── xdrv_83_esp32watch.ino ├── xdrv_99_debug.ino ├── xdrv_interface.ino ├── xdsp_01_lcd.ino ├── xdsp_02_ssd1306.ino ├── xdsp_03_matrix.ino ├── xdsp_04_ili9341.ino ├── xdsp_05_epaper_29.ino ├── xdsp_06_epaper_42.ino ├── xdsp_07_sh1106.ino ├── xdsp_08_ILI9488.ino ├── xdsp_09_SSD1351.ino ├── xdsp_10_RA8876.ino ├── xdsp_11_sevenseg.ino ├── xdsp_12_ST7789.ino ├── xdsp_interface.ino ├── xlgt_01_ws2812.ino ├── xlgt_02_my92x1.ino ├── xlgt_03_sm16716.ino ├── xlgt_04_sm2135.ino ├── xlgt_05_sonoff_l1.ino ├── xlgt_06_electriq_moodl.ino ├── xlgt_interface.ino ├── xnrg_01_hlw8012.ino ├── xnrg_02_cse7766.ino ├── xnrg_03_pzem004t.ino ├── xnrg_04_mcp39f501.ino ├── xnrg_05_pzem_ac.ino ├── xnrg_06_pzem_dc.ino ├── xnrg_07_ade7953.ino ├── xnrg_08_sdm120.ino ├── xnrg_09_dds2382.ino ├── xnrg_10_sdm630.ino ├── xnrg_11_ddsu666.ino ├── xnrg_12_solaxX1.ino ├── xnrg_13_fif_le01mr.ino ├── xnrg_14_bl0940.ino ├── xnrg_15_teleinfo.ino ├── xnrg_16_iem3000.ino ├── xnrg_interface.ino ├── xsns_01_counter.ino ├── xsns_02_analog.ino ├── xsns_02_analog_esp32.ino ├── xsns_04_snfsc.ino ├── xsns_05_ds18x20.ino ├── xsns_06_dht.ino ├── xsns_07_sht1x.ino ├── xsns_08_htu21.ino ├── xsns_09_bmp.ino ├── xsns_10_bh1750.ino ├── xsns_11_veml6070.ino ├── xsns_12_ads1115.ino ├── xsns_13_ina219.ino ├── xsns_14_sht3x.ino ├── xsns_15_mhz19.ino ├── xsns_16_tsl2561.ino ├── xsns_17_senseair.ino ├── xsns_18_pms5003.ino ├── xsns_19_mgs.ino ├── xsns_20_novasds.ino ├── xsns_21_sgp30.ino ├── xsns_22_sr04.ino ├── xsns_24_si1145.ino ├── xsns_26_lm75ad.ino ├── xsns_27_apds9960.ino ├── xsns_28_tm1638.ino ├── xsns_29_mcp230xx.ino ├── xsns_30_mpr121.ino ├── xsns_31_ccs811.ino ├── xsns_32_mpu6050.ino ├── xsns_33_ds3231.ino ├── xsns_34_hx711.ino ├── xsns_35_tx20.ino ├── xsns_36_mgc3130.ino ├── xsns_37_rfsensor.ino ├── xsns_38_az7798.ino ├── xsns_39_max31855.ino ├── xsns_40_pn532.ino ├── xsns_41_max44009.ino ├── xsns_42_scd30.ino ├── xsns_43_hre.ino ├── xsns_44_sps30.ino ├── xsns_45_vl53l0x.ino ├── xsns_46_MLX90614.ino ├── xsns_47_max31865.ino ├── xsns_48_chirp.ino ├── xsns_50_paj7620.ino ├── xsns_51_rdm6300.ino ├── xsns_52_ibeacon.ino ├── xsns_53_sml.ino ├── xsns_54_ina226.ino ├── xsns_55_hih_series.ino ├── xsns_56_hpma.ino ├── xsns_57_tsl2591.ino ├── xsns_58_dht12.ino ├── xsns_59_ds1624.ino ├── xsns_60_GPS.ino ├── xsns_61_MI_NRF24.ino ├── xsns_62_MI_ESP32.ino ├── xsns_62_MI_HM10.ino ├── xsns_63_aht1x.ino ├── xsns_64_hrxl.ino ├── xsns_65_hdc1080.ino ├── xsns_66_iAQ.ino ├── xsns_67_as3935.ino ├── xsns_68_windmeter.ino ├── xsns_69_opentherm.ino ├── xsns_69_opentherm_protocol.ino ├── xsns_70_veml6075.ino ├── xsns_71_veml7700.ino ├── xsns_72_mcp9808.ino ├── xsns_73_hp303b.ino ├── xsns_74_lmt01.ino ├── xsns_75_prometheus.ino ├── xsns_76_dyp.ino ├── xsns_interface.ino └── xx2c_interface.ino └── tools ├── Esptool ├── ESP32 │ ├── boot_app0.bin │ ├── bootloader_dout_40m.bin │ ├── partitions.bin │ └── readme.txt ├── EraseFlash.bat ├── ReadFlash.bat ├── VerifyFlash.bat └── WriteFlash.bat ├── decode-config.md ├── decode-status.py ├── fw_efm8bb1 ├── RF-Bridge-EFM8BB1-20181023.hex ├── RF-Bridge-EFM8BB1-20181102.hex ├── RF-Bridge-EFM8BB1-20181127.hex ├── RF-Bridge-EFM8BB1-20190220.hex └── RF_Bridge_iTead_Original.hex ├── fw_server ├── fw-server.py └── fw │ └── README ├── fw_zbbridge ├── ncp-uart-sw_6.5.5_115200.ota ├── ncp-uart-sw_6.7.6_115200.ota └── readme.txt ├── logo ├── TASMOTA_FullLogo_Vector.svg └── TASMOTA_Symbol_Vector.svg ├── serial-plotter.py ├── templates └── templates.py ├── theov2_attiny85 ├── TheoV2Sensor1 │ └── TheoV2Sensor1.ino ├── TheoV2Sensor2 │ └── TheoV2Sensor2.ino └── info.txt └── unishox ├── clipboard-const-converter.py └── unishox.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/issue-close-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.github/issue-close-app.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/CI_github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.github/workflows/CI_github.yml -------------------------------------------------------------------------------- /.github/workflows/CI_github_ESP32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.github/workflows/CI_github_ESP32.yml -------------------------------------------------------------------------------- /.github/workflows/Tasmota_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.github/workflows/Tasmota_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.travis.yml.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/.travis.yml.off -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/API.md -------------------------------------------------------------------------------- /BUILDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/BUILDS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/Doxyfile -------------------------------------------------------------------------------- /FIRMWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/FIRMWARE.md -------------------------------------------------------------------------------- /I2CDEVICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/I2CDEVICES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MODULES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/MODULES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /TEMPLATES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/TEMPLATES.md -------------------------------------------------------------------------------- /api/upload-arduino.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/api/upload-arduino.php -------------------------------------------------------------------------------- /arduino/espupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/arduino/espupload.py -------------------------------------------------------------------------------- /arduino/version 2.7.1/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/arduino/version 2.7.1/boards.txt -------------------------------------------------------------------------------- /arduino/version 2.7.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/arduino/version 2.7.1/platform.txt -------------------------------------------------------------------------------- /esp32_partition_app1572k_ffat983k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/esp32_partition_app1572k_ffat983k.csv -------------------------------------------------------------------------------- /esp32_partition_app1984k_ffat12M.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/esp32_partition_app1984k_ffat12M.csv -------------------------------------------------------------------------------- /esp32_partition_app1984k_spiffs60k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/esp32_partition_app1984k_spiffs60k.csv -------------------------------------------------------------------------------- /esp32_partition_app1984k_spiffs64k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/esp32_partition_app1984k_spiffs64k.csv -------------------------------------------------------------------------------- /include/dummy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/A4988_Stepper/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/A4988_Stepper/README.adoc -------------------------------------------------------------------------------- /lib/A4988_Stepper/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/A4988_Stepper/keywords.txt -------------------------------------------------------------------------------- /lib/A4988_Stepper/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/A4988_Stepper/library.properties -------------------------------------------------------------------------------- /lib/A4988_Stepper/src/A4988_Stepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/A4988_Stepper/src/A4988_Stepper.cpp -------------------------------------------------------------------------------- /lib/A4988_Stepper/src/A4988_Stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/A4988_Stepper/src/A4988_Stepper.h -------------------------------------------------------------------------------- /lib/AT24C256/Eeprom24C128_256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/AT24C256/Eeprom24C128_256.cpp -------------------------------------------------------------------------------- /lib/AT24C256/Eeprom24C128_256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/AT24C256/Eeprom24C128_256.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_BusIO/.travis.yml -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_I2CDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_BusIO/Adafruit_I2CDevice.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_SPIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_BusIO/Adafruit_SPIDevice.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_BusIO/LICENSE -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_BusIO/README.md -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_BusIO/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_CCS811-1.0.0.14/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_CCS811-1.0.0.14/.travis.yml -------------------------------------------------------------------------------- /lib/Adafruit_CCS811-1.0.0.14/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_CCS811-1.0.0.14/LICENSE -------------------------------------------------------------------------------- /lib/Adafruit_CCS811-1.0.0.14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_CCS811-1.0.0.14/README.md -------------------------------------------------------------------------------- /lib/Adafruit_ILI9341-1.2.0-Tasmota-1.0/.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /lib/Adafruit_ILI9341-1.2.0-Tasmota-1.0/examples/breakouttouchpaint/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_ILI9341-1.2.0-Tasmota-1.0/examples/fulltest_featherwing/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_ILI9341-1.2.0-Tasmota-1.0/examples/graphicstest_featherwing/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_ILI9341-1.2.0-Tasmota-1.0/examples/onoffbutton_breakout/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_ILI9341-1.2.0-Tasmota-1.0/examples/touchpaint_featherwing/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_MCP9808_Tasmota/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_MCP9808_Tasmota/.gitignore -------------------------------------------------------------------------------- /lib/Adafruit_MCP9808_Tasmota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_MCP9808_Tasmota/README.md -------------------------------------------------------------------------------- /lib/Adafruit_MCP9808_Tasmota/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_MCP9808_Tasmota/license.txt -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-1.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_SGP30-1.2.0/README.md -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-1.2.0/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_SGP30-1.2.0/license.txt -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-1.2.0/travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_SGP30-1.2.0/travis.yml -------------------------------------------------------------------------------- /lib/Adafruit_SH1106-gemu-1.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_SH1106-gemu-1.0/LICENSE.txt -------------------------------------------------------------------------------- /lib/Adafruit_SH1106-gemu-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_SH1106-gemu-1.0/README.md -------------------------------------------------------------------------------- /lib/Adafruit_SSD1306-1.3.0-gemu-1.1/.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /lib/Adafruit_SSD1351-gemu-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_SSD1351-gemu-1.0/README.md -------------------------------------------------------------------------------- /lib/Adafruit_SSD1351-gemu-1.0/SSD1351.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_SSD1351-gemu-1.0/SSD1351.h -------------------------------------------------------------------------------- /lib/Adafruit_SSD1351-gemu-1.0/Tiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_SSD1351-gemu-1.0/Tiger.c -------------------------------------------------------------------------------- /lib/Adafruit_SSD1351-gemu-1.0/Tiger.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_SSD1351-gemu-1.0/Tiger.rgb -------------------------------------------------------------------------------- /lib/Adafruit_VEML7700/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_VEML7700/.gitignore -------------------------------------------------------------------------------- /lib/Adafruit_VEML7700/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_VEML7700/.travis.yml -------------------------------------------------------------------------------- /lib/Adafruit_VEML7700/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_VEML7700/README.md -------------------------------------------------------------------------------- /lib/Adafruit_VEML7700/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_VEML7700/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_VEML7700/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Adafruit_VEML7700/license.txt -------------------------------------------------------------------------------- /lib/ArduinoJson-5.13.4/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoJson-5.13.4/ArduinoJson.h -------------------------------------------------------------------------------- /lib/ArduinoJson-5.13.4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoJson-5.13.4/CHANGELOG.md -------------------------------------------------------------------------------- /lib/ArduinoJson-5.13.4/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoJson-5.13.4/LICENSE.md -------------------------------------------------------------------------------- /lib/ArduinoJson-5.13.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoJson-5.13.4/README.md -------------------------------------------------------------------------------- /lib/ArduinoJson-5.13.4/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoJson-5.13.4/keywords.txt -------------------------------------------------------------------------------- /lib/ArduinoJson-5.13.4/src/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoJson-5.13.4/src/ArduinoJson.h -------------------------------------------------------------------------------- /lib/ArduinoNTPd/NTPPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoNTPd/NTPPacket.cpp -------------------------------------------------------------------------------- /lib/ArduinoNTPd/NTPPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoNTPd/NTPPacket.h -------------------------------------------------------------------------------- /lib/ArduinoNTPd/NTPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoNTPd/NTPServer.cpp -------------------------------------------------------------------------------- /lib/ArduinoNTPd/NTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ArduinoNTPd/NTPServer.h -------------------------------------------------------------------------------- /lib/Arduino_ST7789-gemu-1.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Arduino_ST7789-gemu-1.0/README.txt -------------------------------------------------------------------------------- /lib/Arduino_ST7789-gemu-1.0/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Arduino_ST7789-gemu-1.0/keywords.txt -------------------------------------------------------------------------------- /lib/BME680_driver-bme680_v3.5.9/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/BME680_driver-bme680_v3.5.9/LICENSE -------------------------------------------------------------------------------- /lib/BME680_driver-bme680_v3.5.9/bme680.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/BME680_driver-bme680_v3.5.9/bme680.c -------------------------------------------------------------------------------- /lib/BME680_driver-bme680_v3.5.9/bme680.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/BME680_driver-bme680_v3.5.9/bme680.h -------------------------------------------------------------------------------- /lib/C2Programmer-1.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/C2Programmer-1.0.0/README.md -------------------------------------------------------------------------------- /lib/C2Programmer-1.0.0/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/C2Programmer-1.0.0/keywords.txt -------------------------------------------------------------------------------- /lib/C2Programmer-1.0.0/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/C2Programmer-1.0.0/library.json -------------------------------------------------------------------------------- /lib/C2Programmer-1.0.0/src/c2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/C2Programmer-1.0.0/src/c2.cpp -------------------------------------------------------------------------------- /lib/C2Programmer-1.0.0/src/c2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/C2Programmer-1.0.0/src/c2.h -------------------------------------------------------------------------------- /lib/C2Programmer-1.0.0/src/ihx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/C2Programmer-1.0.0/src/ihx.cpp -------------------------------------------------------------------------------- /lib/C2Programmer-1.0.0/src/ihx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/C2Programmer-1.0.0/src/ihx.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/LICENSE -------------------------------------------------------------------------------- /lib/ESP8266Audio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/README.md -------------------------------------------------------------------------------- /lib/ESP8266Audio/examples/WebRadio/web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/examples/WebRadio/web.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/keywords.txt -------------------------------------------------------------------------------- /lib/ESP8266Audio/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/library.json -------------------------------------------------------------------------------- /lib/ESP8266Audio/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/library.properties -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioFileSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioFileSource.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioFileSourceFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioFileSourceFS.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioFileSourceSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioFileSourceSD.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioFileStream.cpp -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioFileStream.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioGenerator.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioGeneratorAAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioGeneratorAAC.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioGeneratorMOD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioGeneratorMOD.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioGeneratorMP3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioGeneratorMP3.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioGeneratorWAV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioGeneratorWAV.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioLogger.cpp -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioLogger.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioOutput.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioOutputBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioOutputBuffer.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioOutputI2S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioOutputI2S.cpp -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioOutputI2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioOutputI2S.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioOutputMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioOutputMixer.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioOutputNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioOutputNull.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioOutputSPDIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioOutputSPDIF.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/AudioStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/AudioStatus.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/AUTHORS -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/README -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/config.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/cpu.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/crc.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/fixed.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/float.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/format.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/lpc.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/md5.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/memory.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libflac/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libflac/window.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/CHANGES -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/COPYING -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/COPYRIGHT -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/CREDITS -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/D.dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/D.dat.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/LICENSE -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/README -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/TODO -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/VERSION -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/bit.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/bit.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/config.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/decoder.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/decoder.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/fixed.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/fixed.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/frame.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/frame.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/global.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/huffman.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/huffman.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/layer3.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/layer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/layer3.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/mad.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/mad.h.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/mad.h.sed -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/stream.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/stream.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/synth.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/synth.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/timer.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/timer.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/version.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libmad/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libmad/version.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libogg/AUTHORS -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libogg/CHANGES -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libogg/COPYING -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libogg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libogg/README.md -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libogg/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libogg/bitwise.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libogg/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libogg/config.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libogg/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libogg/framing.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libogg/ogg.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libogg/ogg.pc -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libogg/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libogg/ogg/ogg.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libopus/AUTHORS -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libopus/COPYING -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libopus/INSTALL -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libopus/README -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libopus/config.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libopus/mlp.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libopus/opus.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libopus/opus.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/libopus/opus.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/libopus/opus.pc -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/opusfile/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/opusfile/AUTHORS -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/opusfile/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/opusfile/COPYING -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/opusfile/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/opusfile/info.c -------------------------------------------------------------------------------- /lib/ESP8266Audio/src/spiram-fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/src/spiram-fast.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/tests/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/tests/common.sh -------------------------------------------------------------------------------- /lib/ESP8266Audio/tests/host/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/tests/host/Arduino.h -------------------------------------------------------------------------------- /lib/ESP8266Audio/tests/host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/tests/host/Makefile -------------------------------------------------------------------------------- /lib/ESP8266Audio/tests/host/aac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/tests/host/aac.cpp -------------------------------------------------------------------------------- /lib/ESP8266Audio/tests/host/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/tests/host/midi.cpp -------------------------------------------------------------------------------- /lib/ESP8266Audio/tests/host/mp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/tests/host/mp3.cpp -------------------------------------------------------------------------------- /lib/ESP8266Audio/tests/host/opus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/tests/host/opus.cpp -------------------------------------------------------------------------------- /lib/ESP8266Audio/tests/host/pgmspace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ESP8266Audio/tests/host/wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266Audio/tests/host/wav.cpp -------------------------------------------------------------------------------- /lib/ESP8266SAM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/README.md -------------------------------------------------------------------------------- /lib/ESP8266SAM/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/library.json -------------------------------------------------------------------------------- /lib/ESP8266SAM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/library.properties -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/ESP8266SAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/ESP8266SAM.cpp -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/ESP8266SAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/ESP8266SAM.h -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/ReciterTabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/ReciterTabs.h -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/RenderTabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/RenderTabs.h -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/SamData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/SamData.h -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/SamTabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/SamTabs.h -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/reciter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/reciter.c -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/reciter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/reciter.h -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/render.c -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/render.h -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/sam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/sam.c -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/sam.h -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/samdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/samdebug.c -------------------------------------------------------------------------------- /lib/ESP8266SAM/src/samdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/ESP8266SAM/src/samdebug.h -------------------------------------------------------------------------------- /lib/FT5206_Library/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store -------------------------------------------------------------------------------- /lib/FT5206_Library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/FT5206_Library/LICENSE -------------------------------------------------------------------------------- /lib/FT5206_Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/FT5206_Library/README.md -------------------------------------------------------------------------------- /lib/FT5206_Library/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/FT5206_Library/keywords.txt -------------------------------------------------------------------------------- /lib/FT5206_Library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/FT5206_Library/library.properties -------------------------------------------------------------------------------- /lib/FT5206_Library/src/FT5206.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/FT5206_Library/src/FT5206.cpp -------------------------------------------------------------------------------- /lib/FT5206_Library/src/FT5206.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/FT5206_Library/src/FT5206.h -------------------------------------------------------------------------------- /lib/FrogmoreScd30/FrogmoreScd30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/FrogmoreScd30/FrogmoreScd30.cpp -------------------------------------------------------------------------------- /lib/FrogmoreScd30/FrogmoreScd30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/FrogmoreScd30/FrogmoreScd30.h -------------------------------------------------------------------------------- /lib/HPMA115S0/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/HPMA115S0/LICENSE.md -------------------------------------------------------------------------------- /lib/HPMA115S0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/HPMA115S0/README.md -------------------------------------------------------------------------------- /lib/HPMA115S0/example/example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/HPMA115S0/example/example.ino -------------------------------------------------------------------------------- /lib/HPMA115S0/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/HPMA115S0/library.properties -------------------------------------------------------------------------------- /lib/HPMA115S0/src/hpma115S0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/HPMA115S0/src/hpma115S0.cpp -------------------------------------------------------------------------------- /lib/HPMA115S0/src/hpma115S0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/HPMA115S0/src/hpma115S0.h -------------------------------------------------------------------------------- /lib/I2Cdevlib-Core/.library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/I2Cdevlib-Core/.library.json -------------------------------------------------------------------------------- /lib/I2Cdevlib-Core/I2Cdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/I2Cdevlib-Core/I2Cdev.cpp -------------------------------------------------------------------------------- /lib/I2Cdevlib-Core/I2Cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/I2Cdevlib-Core/I2Cdev.h -------------------------------------------------------------------------------- /lib/I2Cdevlib-Core/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/I2Cdevlib-Core/keywords.txt -------------------------------------------------------------------------------- /lib/I2Cdevlib-Core/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/I2Cdevlib-Core/library.json -------------------------------------------------------------------------------- /lib/I2Cdevlib-MPU6050/MPU6050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/I2Cdevlib-MPU6050/MPU6050.cpp -------------------------------------------------------------------------------- /lib/I2Cdevlib-MPU6050/MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/I2Cdevlib-MPU6050/MPU6050.h -------------------------------------------------------------------------------- /lib/I2Cdevlib-MPU6050/helper_3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/I2Cdevlib-MPU6050/helper_3dmath.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/IRremoteESP8266-2.7.10/.gitignore -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | set noparent 2 | root=src 3 | linelength=80 4 | -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/IRremoteESP8266-2.7.10/Doxyfile -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/IRremoteESP8266-2.7.10/README.md -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRAirwellAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 03d57403f5e261a4d149af6d97df8c4e -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRAmcorAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 163192504ac8319807adb950a6186ac0 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRArgoAC__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 7d040225d2db5b4715532b7d4ba5268b -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRCarrierAc64__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c88965083519dee20186a15bc2f69a8c -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRCoolixAC__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 4ccbb54c1327fe4f53812f4cc284a8f1 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRCoronaAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 2a8dc27b8683799250ee74acb6173d8f -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRDaikin128__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a05c0f73a95b804c11a7e31c5e3a1d8a -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRDaikin152__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3bbfb60d234bb57df5106a32f8aecca3 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRDaikin160__coll__graph.md5: -------------------------------------------------------------------------------- 1 | fbc66f5a6991bf58f0872d9bbb55a5da -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRDaikin176__coll__graph.md5: -------------------------------------------------------------------------------- 1 | e1b4fd7ddfe8c5ab5d5bb1cf9d344bc4 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRDaikin216__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 376e63c140c9b990fbd05013138184b0 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRDaikin2__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 36c4ca8dee2a48c9012eb53961c84d46 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRDaikin64__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b2bb54fe62558d21dee90dc29baf242d -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRDaikinESP__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 68cef74e6daf013f3d7f49c1a7c4d7f5 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRDelonghiAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | e2babeacb4dc45c7ae998d66cca5b36e -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRElectraAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b6e5f96f14e5e22330cef83a09e5f30d -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRFujitsuAC__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 338c5a3ac726e2794d93445b33b8db6c -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRGoodweatherAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | bce379f76240220988c09046a0d5f283 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRGreeAC__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 223397f2019d344aca6bcc75d6a4b8e1 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRHaierACYRW02__coll__graph.md5: -------------------------------------------------------------------------------- 1 | bbe7ca08b7bf97faaab60524b2e2b117 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRHaierAC__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 7589ca81430e305874791fbe16c1741f -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRHitachiAc1__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 887e1bb9117f6436abfa2cfbb296e5b6 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRHitachiAc344__coll__graph.md5: -------------------------------------------------------------------------------- 1 | bc686b22e4ddf734f61a87c2609dac47 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRHitachiAc344__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 35cefb94d2f36be1ad5c9d511cbdbb17 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRHitachiAc3__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 83b1a000783b5409d1f40cfaae3aa3e3 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRHitachiAc424__coll__graph.md5: -------------------------------------------------------------------------------- 1 | e27758fabb1539bba026d03c86a2d75d -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRHitachiAc424__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 83321b013f1eecd9a72546893407d4cc -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRHitachiAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | aeb4ec71968654b70565a578d510a768 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRKelvinatorAC__coll__graph.md5: -------------------------------------------------------------------------------- 1 | bb0276d1879b23e51b948f404eb3a682 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRLgAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 56fb7c83360ef1487cea622f026510d6 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRMideaAC__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 331e64d477510c44f468a1a2430d510d -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRMitsubishi112__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 223b9c8835f063bd0e54b8c43f9fdd5f -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRMitsubishi136__coll__graph.md5: -------------------------------------------------------------------------------- 1 | de5d5156a942dd05dd10b0b63147e763 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRMitsubishiAC__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 4c3d4b6965f9a2344e78bf45e6ae2b18 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRMitsubishiHeavy152Ac__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 6ea04c88e8883bfc89458f5de25fdcea -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRMitsubishiHeavy88Ac__coll__graph.md5: -------------------------------------------------------------------------------- 1 | efa3e5f38fe575e86f5114c55d9276b8 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRNeoclimaAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1e6ee18f808b645d10f6652b3a78aca2 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRPanasonicAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | d3db02dc98d87de4f04f73ee0ebb90c7 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRSamsungAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 383f10b4ef1888fea2358fde261598f6 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRSanyoAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f6001a30fa104f98434d740081ebee62 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRSharpAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a87b7a535dbb4358d51525a2278a117d -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRTcl112Ac__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b01bf74458107df4a91e8d68cd7bd7c2 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRTecoAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 70b332a49408f4e1d8c532bf7d103f45 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRToshibaAC__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c09eeaf5909d6c222783788bba05faaf -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRTrotecESP__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 247690158326910cfd854f7b6909ded9 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRVestelAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f54c4cec990e7a1ff1e10a366cb92198 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRVoltas__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 53fa1f7a656a8aea1c43d73b92ba5ce7 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRWhirlpoolAc__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 67506f3229bc12f62882dd42ed993175 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRac__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ee790889d0070a5bbe071b50dd75d157 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/classIRrecv__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 86a4a18f846668b6a3cf862d7669306a -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/graph_legend.md5: -------------------------------------------------------------------------------- 1 | f51bf6e9a10430aafef59831b08dcbfe -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_0.md5: -------------------------------------------------------------------------------- 1 | 313c58c1dac65d31e999693f00c85f41 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_1.md5: -------------------------------------------------------------------------------- 1 | a846ea81466572d0dcd38c89e164f553 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_10.md5: -------------------------------------------------------------------------------- 1 | bc950b2a380edb2222e6039af29b1619 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_11.md5: -------------------------------------------------------------------------------- 1 | b8916d3b51e3fb200c11a55d0ce781f3 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_12.md5: -------------------------------------------------------------------------------- 1 | 6b967bafafc5ee48cdee425b2d760352 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_13.md5: -------------------------------------------------------------------------------- 1 | e31d247ca830d0fbc9b398310b889137 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_14.md5: -------------------------------------------------------------------------------- 1 | e8d46fafad2734ff1ba6435e75760054 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_15.md5: -------------------------------------------------------------------------------- 1 | ef00148bc0f51868126f49db7c64045c -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_16.md5: -------------------------------------------------------------------------------- 1 | e335bea658051c107eec6a04c15ecf07 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_17.md5: -------------------------------------------------------------------------------- 1 | 4d7d1c5757d6d8c2ba1dee85111694e8 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_18.md5: -------------------------------------------------------------------------------- 1 | bac1b057abc6acdf006c520a2648695e -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_19.md5: -------------------------------------------------------------------------------- 1 | beb2e4a39c2932d475766be916f606b6 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_2.md5: -------------------------------------------------------------------------------- 1 | 9161ff251366d33d3ca48d53fad5348b -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_20.md5: -------------------------------------------------------------------------------- 1 | 82db646c1e50878e4bc1d2d8e42f9084 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_21.md5: -------------------------------------------------------------------------------- 1 | 8f9d660abbc70be4c1cf621adf15df03 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_22.md5: -------------------------------------------------------------------------------- 1 | 8463fec8e273d2b003400f5fc52905d2 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_23.md5: -------------------------------------------------------------------------------- 1 | 494470899dc7bc1f09771a91824eb25c -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_24.md5: -------------------------------------------------------------------------------- 1 | ef1756185927c9dc031ac38fa0bd7314 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_25.md5: -------------------------------------------------------------------------------- 1 | b7a5f99a38a961494782496866818bd7 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_26.md5: -------------------------------------------------------------------------------- 1 | 1a4371fa075bf61e18fb4a59f6c1ee8b -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_27.md5: -------------------------------------------------------------------------------- 1 | 8fe022190fb8b4af703989db74b3df09 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_28.md5: -------------------------------------------------------------------------------- 1 | 1cc4c4dcff122c327c69c3c13dedc3fa -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_29.md5: -------------------------------------------------------------------------------- 1 | 8cd321ec10c446c399675698b2c22573 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_3.md5: -------------------------------------------------------------------------------- 1 | a9adb06cbbb8bf64b6c10e2efb433807 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_30.md5: -------------------------------------------------------------------------------- 1 | a08686bcc5f729a82c296a6cc288080f -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_31.md5: -------------------------------------------------------------------------------- 1 | f936b6c8bdc58c028bb8933191b34c6c -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_32.md5: -------------------------------------------------------------------------------- 1 | 87662e5ac3f382c4e9890e2f0c246809 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_33.md5: -------------------------------------------------------------------------------- 1 | ba89299cb349c224517905a60a70be44 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_34.md5: -------------------------------------------------------------------------------- 1 | eb71d536aec5ae0d21d8a53ba95024dc -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_35.md5: -------------------------------------------------------------------------------- 1 | 388b2bb7b074fbc6b23cb65b17a2d52c -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_36.md5: -------------------------------------------------------------------------------- 1 | 9653a701b37038caec48b8234f5297bb -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_37.md5: -------------------------------------------------------------------------------- 1 | a45b337701fd72c704017f44bd397e8d -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_38.md5: -------------------------------------------------------------------------------- 1 | 189c2435c324f1057aaf97e832f8d5e8 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_39.md5: -------------------------------------------------------------------------------- 1 | db104ffd0bed1c2b2b66be9a2d94884c -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_4.md5: -------------------------------------------------------------------------------- 1 | 3690b67e7e582816654288cc9e8c5c12 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_40.md5: -------------------------------------------------------------------------------- 1 | 47e03bef0106d920f6df1a4650c42161 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_41.md5: -------------------------------------------------------------------------------- 1 | f161f3f640d27ec87610fe7e0258daa2 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_42.md5: -------------------------------------------------------------------------------- 1 | 2ba122d741860d8a73f208c9d30316bb -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_43.md5: -------------------------------------------------------------------------------- 1 | 094d47bf89b4692d513b3c18447ea38c -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_44.md5: -------------------------------------------------------------------------------- 1 | 1128a9ede24483b544d298f3c8250127 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_45.md5: -------------------------------------------------------------------------------- 1 | 091acded027244d4f3129e0f10946f38 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_46.md5: -------------------------------------------------------------------------------- 1 | 6be102575488e73fd84b8d956f0802b7 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_47.md5: -------------------------------------------------------------------------------- 1 | 513e53cdbd67e1c3be296e616b5088fe -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_48.md5: -------------------------------------------------------------------------------- 1 | 8496a1131f5933bedde7a327a5d4457d -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_49.md5: -------------------------------------------------------------------------------- 1 | a935188f62a719f63a835716ebeb0681 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_5.md5: -------------------------------------------------------------------------------- 1 | 91b56b36df4d5e06f27aa19a6435eaf2 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_50.md5: -------------------------------------------------------------------------------- 1 | 0bd47951338d799baa7faad737d93c2f -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_51.md5: -------------------------------------------------------------------------------- 1 | e2cd65da5815253bc9bf312036b6aaa3 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_52.md5: -------------------------------------------------------------------------------- 1 | 40c25360d6e911f460499817a1f66d2f -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_53.md5: -------------------------------------------------------------------------------- 1 | 2bde18bd04140ab070f8debabb4e2b8e -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_54.md5: -------------------------------------------------------------------------------- 1 | 8e6e75ba5587c932001eae5a688a6d27 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_55.md5: -------------------------------------------------------------------------------- 1 | 912bf27b3c1ff508088dbbabcad26cef -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_56.md5: -------------------------------------------------------------------------------- 1 | 8d39cd46dd30d6c731fd7374f101062f -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_57.md5: -------------------------------------------------------------------------------- 1 | 7bb220231cd331dbe7541c4dc5393dc8 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_58.md5: -------------------------------------------------------------------------------- 1 | f1bcb75b933276ee5fde30f34c416529 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_59.md5: -------------------------------------------------------------------------------- 1 | 4e3d563629aab8add0e751db7f109a22 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_6.md5: -------------------------------------------------------------------------------- 1 | b0065efa5bef64d3e2da91bb9ee1e68d -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_60.md5: -------------------------------------------------------------------------------- 1 | b685f5c041badc4c79146f98ecfd2d45 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_7.md5: -------------------------------------------------------------------------------- 1 | fd77e92eb539b07b298ba28c872ed33a -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_8.md5: -------------------------------------------------------------------------------- 1 | c57cc0030c7d3a9e44b4f20708a8d83f -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/docs/doxygen/html/inherit_graph_9.md5: -------------------------------------------------------------------------------- 1 | d0bba657e71229bb0975d1d5e96b55e1 -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/IRremoteESP8266-2.7.10/pylintrc -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/src/IRac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/IRremoteESP8266-2.7.10/src/IRac.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266-2.7.10/src/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/IRremoteESP8266-2.7.10/src/i18n.h -------------------------------------------------------------------------------- /lib/Joba_Tsl2561-2.0.10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Joba_Tsl2561-2.0.10/.gitignore -------------------------------------------------------------------------------- /lib/Joba_Tsl2561-2.0.10/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Joba_Tsl2561-2.0.10/.hgignore -------------------------------------------------------------------------------- /lib/Joba_Tsl2561-2.0.10/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Joba_Tsl2561-2.0.10/.travis.yml -------------------------------------------------------------------------------- /lib/Joba_Tsl2561-2.0.10/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Joba_Tsl2561-2.0.10/COPYING -------------------------------------------------------------------------------- /lib/Joba_Tsl2561-2.0.10/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Joba_Tsl2561-2.0.10/README -------------------------------------------------------------------------------- /lib/Joba_Tsl2561-2.0.10/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Joba_Tsl2561-2.0.10/library.json -------------------------------------------------------------------------------- /lib/Joba_Tsl2561-2.0.10/src/Tsl2561.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Joba_Tsl2561-2.0.10/src/Tsl2561.h -------------------------------------------------------------------------------- /lib/KeeloqLib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/KeeloqLib/README.md -------------------------------------------------------------------------------- /lib/KeeloqLib/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/KeeloqLib/keywords.txt -------------------------------------------------------------------------------- /lib/KeeloqLib/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/KeeloqLib/library.properties -------------------------------------------------------------------------------- /lib/KeeloqLib/src/KeeloqLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/KeeloqLib/src/KeeloqLib.cpp -------------------------------------------------------------------------------- /lib/KeeloqLib/src/KeeloqLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/KeeloqLib/src/KeeloqLib.h -------------------------------------------------------------------------------- /lib/LOLIN_HP303B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LOLIN_HP303B/README.md -------------------------------------------------------------------------------- /lib/LOLIN_HP303B/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LOLIN_HP303B/keywords.txt -------------------------------------------------------------------------------- /lib/LOLIN_HP303B/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LOLIN_HP303B/library.properties -------------------------------------------------------------------------------- /lib/LOLIN_HP303B/src/LOLIN_HP303B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LOLIN_HP303B/src/LOLIN_HP303B.cpp -------------------------------------------------------------------------------- /lib/LOLIN_HP303B/src/LOLIN_HP303B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LOLIN_HP303B/src/LOLIN_HP303B.h -------------------------------------------------------------------------------- /lib/LibTeleinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LibTeleinfo/README.md -------------------------------------------------------------------------------- /lib/LibTeleinfo/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LibTeleinfo/library.json -------------------------------------------------------------------------------- /lib/LibTeleinfo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LibTeleinfo/library.properties -------------------------------------------------------------------------------- /lib/LibTeleinfo/src/LibTeleinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LibTeleinfo/src/LibTeleinfo.cpp -------------------------------------------------------------------------------- /lib/LibTeleinfo/src/LibTeleinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LibTeleinfo/src/LibTeleinfo.h -------------------------------------------------------------------------------- /lib/LinkedList-1.2.3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LinkedList-1.2.3/LICENSE.txt -------------------------------------------------------------------------------- /lib/LinkedList-1.2.3/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LinkedList-1.2.3/LinkedList.h -------------------------------------------------------------------------------- /lib/LinkedList-1.2.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LinkedList-1.2.3/README.md -------------------------------------------------------------------------------- /lib/LinkedList-1.2.3/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LinkedList-1.2.3/keywords.txt -------------------------------------------------------------------------------- /lib/LinkedList-1.2.3/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LinkedList-1.2.3/library.json -------------------------------------------------------------------------------- /lib/LiquidCrystal_I2C-1.1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/LiquidCrystal_I2C-1.1.3/README.md -------------------------------------------------------------------------------- /lib/Mutichannel_Gas_Sensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Mutichannel_Gas_Sensor/README.md -------------------------------------------------------------------------------- /lib/NeoPixelBus-2.5.0.09/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NeoPixelBus-2.5.0.09/.gitignore -------------------------------------------------------------------------------- /lib/NeoPixelBus-2.5.0.09/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NeoPixelBus-2.5.0.09/COPYING -------------------------------------------------------------------------------- /lib/NeoPixelBus-2.5.0.09/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NeoPixelBus-2.5.0.09/ReadMe.md -------------------------------------------------------------------------------- /lib/NeoPixelBus-2.5.0.09/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NeoPixelBus-2.5.0.09/keywords.txt -------------------------------------------------------------------------------- /lib/NeoPixelBus-2.5.0.09/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NeoPixelBus-2.5.0.09/library.json -------------------------------------------------------------------------------- /lib/NewPing-1.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NewPing-1.9.1/README.md -------------------------------------------------------------------------------- /lib/NewPing-1.9.1/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NewPing-1.9.1/keywords.txt -------------------------------------------------------------------------------- /lib/NewPing-1.9.1/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NewPing-1.9.1/library.properties -------------------------------------------------------------------------------- /lib/NewPing-1.9.1/src/NewPing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NewPing-1.9.1/src/NewPing.cpp -------------------------------------------------------------------------------- /lib/NewPing-1.9.1/src/NewPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/NewPing-1.9.1/src/NewPing.h -------------------------------------------------------------------------------- /lib/OneWire-2.3.3.06/OneWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/OneWire-2.3.3.06/OneWire.cpp -------------------------------------------------------------------------------- /lib/OneWire-2.3.3.06/OneWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/OneWire-2.3.3.06/OneWire.h -------------------------------------------------------------------------------- /lib/OneWire-2.3.3.06/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/OneWire-2.3.3.06/keywords.txt -------------------------------------------------------------------------------- /lib/OneWire-2.3.3.06/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/OneWire-2.3.3.06/library.json -------------------------------------------------------------------------------- /lib/OpenTherm-0.9.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/OpenTherm-0.9.0/LICENSE -------------------------------------------------------------------------------- /lib/OpenTherm-0.9.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/OpenTherm-0.9.0/README.md -------------------------------------------------------------------------------- /lib/OpenTherm-0.9.0/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/OpenTherm-0.9.0/keywords.txt -------------------------------------------------------------------------------- /lib/OpenTherm-0.9.0/src/OpenTherm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/OpenTherm-0.9.0/src/OpenTherm.cpp -------------------------------------------------------------------------------- /lib/OpenTherm-0.9.0/src/OpenTherm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/OpenTherm-0.9.0/src/OpenTherm.h -------------------------------------------------------------------------------- /lib/PubSubClient-EspEasy-2.7.12/.gitignore: -------------------------------------------------------------------------------- 1 | tests/bin 2 | -------------------------------------------------------------------------------- /lib/PubSubClient-EspEasy-2.7.12/tests/.gitignore: -------------------------------------------------------------------------------- 1 | .build 2 | tmpbin 3 | logs 4 | *.pyc 5 | -------------------------------------------------------------------------------- /lib/PubSubClient-EspEasy-2.7.12/tests/testcases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/RF24/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/.gitignore -------------------------------------------------------------------------------- /lib/RF24/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/RF24/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/Doxyfile -------------------------------------------------------------------------------- /lib/RF24/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/LICENSE -------------------------------------------------------------------------------- /lib/RF24/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/Makefile -------------------------------------------------------------------------------- /lib/RF24/README.md: -------------------------------------------------------------------------------- 1 | 2 | **See http://tmrh20.github.io/RF24 for all documentation** -------------------------------------------------------------------------------- /lib/RF24/RF24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/RF24.cpp -------------------------------------------------------------------------------- /lib/RF24/RF24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/RF24.h -------------------------------------------------------------------------------- /lib/RF24/RF24_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/RF24_config.h -------------------------------------------------------------------------------- /lib/RF24/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/configure -------------------------------------------------------------------------------- /lib/RF24/doxygen-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/doxygen-custom.css -------------------------------------------------------------------------------- /lib/RF24/examples/Usage/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/examples/Usage/readme.md -------------------------------------------------------------------------------- /lib/RF24/examples/scanner/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/examples/scanner/Jamfile -------------------------------------------------------------------------------- /lib/RF24/examples/scanner/scanner.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/examples/scanner/scanner.ino -------------------------------------------------------------------------------- /lib/RF24/examples/starping/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/examples/starping/Jamfile -------------------------------------------------------------------------------- /lib/RF24/examples_linux/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/examples_linux/readme.md -------------------------------------------------------------------------------- /lib/RF24/examples_linux/transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/examples_linux/transfer.cpp -------------------------------------------------------------------------------- /lib/RF24/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/keywords.txt -------------------------------------------------------------------------------- /lib/RF24/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/library.json -------------------------------------------------------------------------------- /lib/RF24/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/library.properties -------------------------------------------------------------------------------- /lib/RF24/nRF24L01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/nRF24L01.h -------------------------------------------------------------------------------- /lib/RF24/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/printf.h -------------------------------------------------------------------------------- /lib/RF24/pyRF24/crossunixccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/pyRF24/crossunixccompiler.py -------------------------------------------------------------------------------- /lib/RF24/pyRF24/pyRF24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/pyRF24/pyRF24.cpp -------------------------------------------------------------------------------- /lib/RF24/pyRF24/pyRF24/pyRF24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/pyRF24/pyRF24/pyRF24.cpp -------------------------------------------------------------------------------- /lib/RF24/pyRF24/pyRF24/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/pyRF24/pyRF24/readme.md -------------------------------------------------------------------------------- /lib/RF24/pyRF24/pyRF24/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/pyRF24/pyRF24/setup.py -------------------------------------------------------------------------------- /lib/RF24/pyRF24/pyRF24Mesh/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/pyRF24/pyRF24Mesh/setup.py -------------------------------------------------------------------------------- /lib/RF24/pyRF24/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/pyRF24/readme.md -------------------------------------------------------------------------------- /lib/RF24/pyRF24/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/pyRF24/setup.py -------------------------------------------------------------------------------- /lib/RF24/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/tests/README -------------------------------------------------------------------------------- /lib/RF24/tests/native/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/tests/native/Jamfile -------------------------------------------------------------------------------- /lib/RF24/tests/native/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/tests/native/printf.h -------------------------------------------------------------------------------- /lib/RF24/tests/pingpair_test/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/tests/pingpair_test/Jamfile -------------------------------------------------------------------------------- /lib/RF24/tests/pingpair_test/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/tests/pingpair_test/printf.h -------------------------------------------------------------------------------- /lib/RF24/tests/pingpair_test/test.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/tests/pingpair_test/test.ex -------------------------------------------------------------------------------- /lib/RF24/utility/ATTiny/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/ATTiny/spi.h -------------------------------------------------------------------------------- /lib/RF24/utility/ATXMegaD3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/ATXMegaD3/README.md -------------------------------------------------------------------------------- /lib/RF24/utility/ATXMegaD3/gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/ATXMegaD3/gpio.cpp -------------------------------------------------------------------------------- /lib/RF24/utility/ATXMegaD3/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/ATXMegaD3/gpio.h -------------------------------------------------------------------------------- /lib/RF24/utility/ATXMegaD3/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/ATXMegaD3/includes.h -------------------------------------------------------------------------------- /lib/RF24/utility/ATXMegaD3/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/ATXMegaD3/spi.cpp -------------------------------------------------------------------------------- /lib/RF24/utility/ATXMegaD3/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/ATXMegaD3/spi.h -------------------------------------------------------------------------------- /lib/RF24/utility/MRAA/compatibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/MRAA/compatibility.c -------------------------------------------------------------------------------- /lib/RF24/utility/MRAA/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/MRAA/compatibility.h -------------------------------------------------------------------------------- /lib/RF24/utility/MRAA/gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/MRAA/gpio.cpp -------------------------------------------------------------------------------- /lib/RF24/utility/MRAA/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/MRAA/gpio.h -------------------------------------------------------------------------------- /lib/RF24/utility/MRAA/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/MRAA/includes.h -------------------------------------------------------------------------------- /lib/RF24/utility/MRAA/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/MRAA/spi.cpp -------------------------------------------------------------------------------- /lib/RF24/utility/MRAA/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/MRAA/spi.h -------------------------------------------------------------------------------- /lib/RF24/utility/RPi/bcm2835.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/RPi/bcm2835.c -------------------------------------------------------------------------------- /lib/RF24/utility/RPi/bcm2835.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/RPi/bcm2835.h -------------------------------------------------------------------------------- /lib/RF24/utility/RPi/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/RPi/includes.h -------------------------------------------------------------------------------- /lib/RF24/utility/RPi/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/RPi/interrupt.c -------------------------------------------------------------------------------- /lib/RF24/utility/RPi/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/RPi/interrupt.h -------------------------------------------------------------------------------- /lib/RF24/utility/RPi/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/RPi/spi.cpp -------------------------------------------------------------------------------- /lib/RF24/utility/RPi/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/RPi/spi.h -------------------------------------------------------------------------------- /lib/RF24/utility/SPIDEV/gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/SPIDEV/gpio.cpp -------------------------------------------------------------------------------- /lib/RF24/utility/SPIDEV/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/SPIDEV/gpio.h -------------------------------------------------------------------------------- /lib/RF24/utility/SPIDEV/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/SPIDEV/includes.h -------------------------------------------------------------------------------- /lib/RF24/utility/SPIDEV/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/SPIDEV/interrupt.c -------------------------------------------------------------------------------- /lib/RF24/utility/SPIDEV/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/SPIDEV/interrupt.h -------------------------------------------------------------------------------- /lib/RF24/utility/SPIDEV/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/SPIDEV/spi.cpp -------------------------------------------------------------------------------- /lib/RF24/utility/SPIDEV/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/SPIDEV/spi.h -------------------------------------------------------------------------------- /lib/RF24/utility/Template/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/Template/gpio.h -------------------------------------------------------------------------------- /lib/RF24/utility/Template/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/Template/includes.h -------------------------------------------------------------------------------- /lib/RF24/utility/Template/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/Template/spi.h -------------------------------------------------------------------------------- /lib/RF24/utility/wiringPi/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/wiringPi/includes.h -------------------------------------------------------------------------------- /lib/RF24/utility/wiringPi/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/wiringPi/spi.cpp -------------------------------------------------------------------------------- /lib/RF24/utility/wiringPi/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/utility/wiringPi/spi.h -------------------------------------------------------------------------------- /lib/RF24/wikidoc.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/RF24/wikidoc.xslt -------------------------------------------------------------------------------- /lib/TasmotaModbus-1.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/TasmotaModbus-1.2.0/README.md -------------------------------------------------------------------------------- /lib/TasmotaModbus-1.2.0/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/TasmotaModbus-1.2.0/keywords.txt -------------------------------------------------------------------------------- /lib/TasmotaModbus-1.2.0/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/TasmotaModbus-1.2.0/library.json -------------------------------------------------------------------------------- /lib/TasmotaSerial-3.1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/TasmotaSerial-3.1.0/README.md -------------------------------------------------------------------------------- /lib/TasmotaSerial-3.1.0/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/TasmotaSerial-3.1.0/keywords.txt -------------------------------------------------------------------------------- /lib/TasmotaSerial-3.1.0/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/TasmotaSerial-3.1.0/library.json -------------------------------------------------------------------------------- /lib/UdpListener/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/UdpListener/library.properties -------------------------------------------------------------------------------- /lib/UdpListener/src/UdpListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/UdpListener/src/UdpListener.h -------------------------------------------------------------------------------- /lib/Xlatb_RA8876-gemu-1.0/RA8876.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Xlatb_RA8876-gemu-1.0/RA8876.cpp -------------------------------------------------------------------------------- /lib/Xlatb_RA8876-gemu-1.0/RA8876.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Xlatb_RA8876-gemu-1.0/RA8876.h -------------------------------------------------------------------------------- /lib/Xlatb_RA8876-gemu-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/Xlatb_RA8876-gemu-1.0/README.md -------------------------------------------------------------------------------- /lib/base64-1.1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/base64-1.1.1/LICENSE -------------------------------------------------------------------------------- /lib/base64-1.1.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/base64-1.1.1/Makefile -------------------------------------------------------------------------------- /lib/base64-1.1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/base64-1.1.1/README.md -------------------------------------------------------------------------------- /lib/base64-1.1.1/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/base64-1.1.1/catch.cpp -------------------------------------------------------------------------------- /lib/base64-1.1.1/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/base64-1.1.1/catch.hpp -------------------------------------------------------------------------------- /lib/base64-1.1.1/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/base64-1.1.1/library.properties -------------------------------------------------------------------------------- /lib/base64-1.1.1/src/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/base64-1.1.1/src/base64.hpp -------------------------------------------------------------------------------- /lib/bearssl-esp8266/conf/esp8266.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/conf/esp8266.mk -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/aead/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/aead/ccm.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/aead/eax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/aead/eax.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/aead/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/aead/gcm.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/codec/ccopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/codec/ccopy.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/hash/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/hash/md5.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/hash/mgf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/hash/mgf1.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/hash/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/hash/sha1.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/int/i15_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/int/i15_add.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/int/i15_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/int/i15_sub.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/kdf/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/kdf/hkdf.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/kdf/shake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/kdf/shake.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/mac/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/mac/hmac.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/mac/hmac_ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/mac/hmac_ct.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/rand/sysrng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/rand/sysrng.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/settings.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/ssl/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/ssl/prf.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/ssl/ssl_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/ssl/ssl_io.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/ssl/ssl_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/ssl/ssl_lru.c -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/t_bearssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/t_bearssl.h -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/t_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/t_config.h -------------------------------------------------------------------------------- /lib/bearssl-esp8266/src/t_inner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/bearssl-esp8266/src/t_inner.h -------------------------------------------------------------------------------- /lib/cc1101/README.md: -------------------------------------------------------------------------------- 1 | Port of panStamp's CC1101 Library to ESP8266. 2 | -------------------------------------------------------------------------------- /lib/cc1101/cc1101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/cc1101/cc1101.cpp -------------------------------------------------------------------------------- /lib/cc1101/cc1101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/cc1101/cc1101.h -------------------------------------------------------------------------------- /lib/cc1101/cc1101.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/cc1101/cc1101.h.txt -------------------------------------------------------------------------------- /lib/cc1101/ccpacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/cc1101/ccpacket.h -------------------------------------------------------------------------------- /lib/esp-epaper-29-ws-20171230-gemu-1.1/components/epaper-29-ws/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | 3 | -------------------------------------------------------------------------------- /lib/esp-knx-ip-0.5.2/DPT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/esp-knx-ip-0.5.2/DPT.h -------------------------------------------------------------------------------- /lib/esp-knx-ip-0.5.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/esp-knx-ip-0.5.2/LICENSE -------------------------------------------------------------------------------- /lib/esp-knx-ip-0.5.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/esp-knx-ip-0.5.2/README.md -------------------------------------------------------------------------------- /lib/esp-knx-ip-0.5.2/esp-knx-ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/esp-knx-ip-0.5.2/esp-knx-ip.cpp -------------------------------------------------------------------------------- /lib/esp-knx-ip-0.5.2/esp-knx-ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/esp-knx-ip-0.5.2/esp-knx-ip.h -------------------------------------------------------------------------------- /lib/esp-knx-ip-0.5.2/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/esp-knx-ip-0.5.2/keywords.txt -------------------------------------------------------------------------------- /lib/jsmn-shadinger-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/jsmn-shadinger-1.0/README.md -------------------------------------------------------------------------------- /lib/jsmn-shadinger-1.0/src/jsmn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/jsmn-shadinger-1.0/src/jsmn.cpp -------------------------------------------------------------------------------- /lib/jsmn-shadinger-1.0/src/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/jsmn-shadinger-1.0/src/jsmn.h -------------------------------------------------------------------------------- /lib/mlx90640-library/MLX90640_API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/mlx90640-library/MLX90640_API.cpp -------------------------------------------------------------------------------- /lib/mlx90640-library/MLX90640_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/mlx90640-library/MLX90640_API.h -------------------------------------------------------------------------------- /lib/rc-switch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/rc-switch/.gitignore -------------------------------------------------------------------------------- /lib/rc-switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/rc-switch/README.md -------------------------------------------------------------------------------- /lib/rc-switch/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/rc-switch/keywords.txt -------------------------------------------------------------------------------- /lib/rc-switch/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/rc-switch/library.json -------------------------------------------------------------------------------- /lib/rc-switch/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/rc-switch/library.properties -------------------------------------------------------------------------------- /lib/rc-switch/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/rc-switch/platformio.ini -------------------------------------------------------------------------------- /lib/rc-switch/src/RCSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/rc-switch/src/RCSwitch.cpp -------------------------------------------------------------------------------- /lib/rc-switch/src/RCSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/rc-switch/src/RCSwitch.h -------------------------------------------------------------------------------- /lib/vl53l0x-arduino-1.02/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/vl53l0x-arduino-1.02/.travis.yml -------------------------------------------------------------------------------- /lib/vl53l0x-arduino-1.02/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/vl53l0x-arduino-1.02/LICENSE.txt -------------------------------------------------------------------------------- /lib/vl53l0x-arduino-1.02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/vl53l0x-arduino-1.02/README.md -------------------------------------------------------------------------------- /lib/vl53l0x-arduino-1.02/VL53L0X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/vl53l0x-arduino-1.02/VL53L0X.cpp -------------------------------------------------------------------------------- /lib/vl53l0x-arduino-1.02/VL53L0X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/vl53l0x-arduino-1.02/VL53L0X.h -------------------------------------------------------------------------------- /lib/vl53l0x-arduino-1.02/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/lib/vl53l0x-arduino-1.02/keywords.txt -------------------------------------------------------------------------------- /libesp32/ESP32-Ethernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/ESP32-Ethernet/README.md -------------------------------------------------------------------------------- /libesp32/ESP32-Ethernet/src/ETH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/ESP32-Ethernet/src/ETH.cpp -------------------------------------------------------------------------------- /libesp32/ESP32-Ethernet/src/ETH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/ESP32-Ethernet/src/ETH.h -------------------------------------------------------------------------------- /libesp32/ESP32-Mail-Client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/ESP32-Mail-Client/LICENSE -------------------------------------------------------------------------------- /libesp32/ESP32-Mail-Client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/ESP32-Mail-Client/README.md -------------------------------------------------------------------------------- /libesp32/ESP32-to-ESP8266-compat/src/ESP8266HTTPClient.h: -------------------------------------------------------------------------------- 1 | // 2 | // Compat with ESP32 3 | // 4 | #include 5 | 6 | -------------------------------------------------------------------------------- /libesp32/ESP32-to-ESP8266-compat/src/ESP8266mDNS.h: -------------------------------------------------------------------------------- 1 | // 2 | // Compat with ESP32 3 | // 4 | #include 5 | -------------------------------------------------------------------------------- /libesp32/ESP32-to-ESP8266-compat/src/eboot_command.h: -------------------------------------------------------------------------------- 1 | // 2 | // Compat with ESP32 3 | // 4 | -------------------------------------------------------------------------------- /libesp32/ESP32-to-ESP8266-compat/src/twi.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | /**/ -------------------------------------------------------------------------------- /libesp32/ESP32README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/ESP32README.md -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/NimBLE-Arduino/CHANGELOG.md -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/NimBLE-Arduino/LICENSE -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/NimBLE-Arduino/README.md -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/src/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/NimBLE-Arduino/src/NOTICE -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/NimBLE-Arduino/src/README.md -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/src/ext/tinycrypt/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.8 2 | -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/src/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/NimBLE-Arduino/src/log/log.h -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/src/mem/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/NimBLE-Arduino/src/mem/mem.h -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/src/os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/NimBLE-Arduino/src/os/os.h -------------------------------------------------------------------------------- /libesp32/NimBLE-Arduino/src/tinycrypt/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.8 2 | -------------------------------------------------------------------------------- /libesp32/TTGO_TWatch_Library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/libesp32/TTGO_TWatch_Library/LICENSE -------------------------------------------------------------------------------- /pio/espupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/pio/espupload.py -------------------------------------------------------------------------------- /pio/gzip-firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/pio/gzip-firmware.py -------------------------------------------------------------------------------- /pio/http-uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/pio/http-uploader.py -------------------------------------------------------------------------------- /pio/name-firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/pio/name-firmware.py -------------------------------------------------------------------------------- /pio/obj-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/pio/obj-dump.py -------------------------------------------------------------------------------- /pio/override_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/pio/override_copy.py -------------------------------------------------------------------------------- /pio/sftp-uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/pio/sftp-uploader.py -------------------------------------------------------------------------------- /pio/strip-floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/pio/strip-floats.py -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/platformio.ini -------------------------------------------------------------------------------- /platformio_override_sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/platformio_override_sample.ini -------------------------------------------------------------------------------- /platformio_tasmota32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/platformio_tasmota32.ini -------------------------------------------------------------------------------- /platformio_tasmota_env.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/platformio_tasmota_env.ini -------------------------------------------------------------------------------- /platformio_tasmota_env32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/platformio_tasmota_env32.ini -------------------------------------------------------------------------------- /releases/releases.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/releases/releases.bat -------------------------------------------------------------------------------- /tasmota/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/CHANGELOG.md -------------------------------------------------------------------------------- /tasmota/StackThunk_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/StackThunk_light.cpp -------------------------------------------------------------------------------- /tasmota/StackThunk_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/StackThunk_light.h -------------------------------------------------------------------------------- /tasmota/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/i18n.h -------------------------------------------------------------------------------- /tasmota/language/bg_BG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/bg_BG.h -------------------------------------------------------------------------------- /tasmota/language/cs_CZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/cs_CZ.h -------------------------------------------------------------------------------- /tasmota/language/de_DE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/de_DE.h -------------------------------------------------------------------------------- /tasmota/language/el_GR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/el_GR.h -------------------------------------------------------------------------------- /tasmota/language/en_GB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/en_GB.h -------------------------------------------------------------------------------- /tasmota/language/es_ES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/es_ES.h -------------------------------------------------------------------------------- /tasmota/language/fr_FR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/fr_FR.h -------------------------------------------------------------------------------- /tasmota/language/he_HE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/he_HE.h -------------------------------------------------------------------------------- /tasmota/language/hu_HU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/hu_HU.h -------------------------------------------------------------------------------- /tasmota/language/it-IT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/it-IT.h -------------------------------------------------------------------------------- /tasmota/language/it_IT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/it_IT.h -------------------------------------------------------------------------------- /tasmota/language/ko_KO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/ko_KO.h -------------------------------------------------------------------------------- /tasmota/language/nl_NL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/nl_NL.h -------------------------------------------------------------------------------- /tasmota/language/pl_PL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/pl_PL.h -------------------------------------------------------------------------------- /tasmota/language/pt_BR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/pt_BR.h -------------------------------------------------------------------------------- /tasmota/language/pt_PT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/pt_PT.h -------------------------------------------------------------------------------- /tasmota/language/ro_RO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/ro_RO.h -------------------------------------------------------------------------------- /tasmota/language/ru_RU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/ru_RU.h -------------------------------------------------------------------------------- /tasmota/language/sk_SK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/sk_SK.h -------------------------------------------------------------------------------- /tasmota/language/sv_SE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/sv_SE.h -------------------------------------------------------------------------------- /tasmota/language/tr_TR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/tr_TR.h -------------------------------------------------------------------------------- /tasmota/language/uk_UA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/uk_UA.h -------------------------------------------------------------------------------- /tasmota/language/zh_CN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/zh_CN.h -------------------------------------------------------------------------------- /tasmota/language/zh_TW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/language/zh_TW.h -------------------------------------------------------------------------------- /tasmota/my_user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/my_user_config.h -------------------------------------------------------------------------------- /tasmota/sendemail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/sendemail.h -------------------------------------------------------------------------------- /tasmota/sendemail.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/sendemail.ino -------------------------------------------------------------------------------- /tasmota/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/settings.h -------------------------------------------------------------------------------- /tasmota/settings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/settings.ino -------------------------------------------------------------------------------- /tasmota/support.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support.ino -------------------------------------------------------------------------------- /tasmota/support_button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_button.ino -------------------------------------------------------------------------------- /tasmota/support_command.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_command.ino -------------------------------------------------------------------------------- /tasmota/support_cores.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_cores.ino -------------------------------------------------------------------------------- /tasmota/support_crash_recorder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_crash_recorder.ino -------------------------------------------------------------------------------- /tasmota/support_device_groups.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_device_groups.ino -------------------------------------------------------------------------------- /tasmota/support_eeprom.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_eeprom.ino -------------------------------------------------------------------------------- /tasmota/support_esp32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_esp32.ino -------------------------------------------------------------------------------- /tasmota/support_esptool.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_esptool.ino -------------------------------------------------------------------------------- /tasmota/support_features.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_features.ino -------------------------------------------------------------------------------- /tasmota/support_flash_log.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_flash_log.ino -------------------------------------------------------------------------------- /tasmota/support_float.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_float.ino -------------------------------------------------------------------------------- /tasmota/support_jpeg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_jpeg.ino -------------------------------------------------------------------------------- /tasmota/support_json.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_json.ino -------------------------------------------------------------------------------- /tasmota/support_light_list.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_light_list.ino -------------------------------------------------------------------------------- /tasmota/support_network.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_network.ino -------------------------------------------------------------------------------- /tasmota/support_rotary.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_rotary.ino -------------------------------------------------------------------------------- /tasmota/support_rtc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_rtc.ino -------------------------------------------------------------------------------- /tasmota/support_static_buffer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_static_buffer.ino -------------------------------------------------------------------------------- /tasmota/support_statistics.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_statistics.ino -------------------------------------------------------------------------------- /tasmota/support_switch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_switch.ino -------------------------------------------------------------------------------- /tasmota/support_tasmota.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_tasmota.ino -------------------------------------------------------------------------------- /tasmota/support_udp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_udp.ino -------------------------------------------------------------------------------- /tasmota/support_wifi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/support_wifi.ino -------------------------------------------------------------------------------- /tasmota/tasmota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/tasmota.h -------------------------------------------------------------------------------- /tasmota/tasmota.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/tasmota.ino -------------------------------------------------------------------------------- /tasmota/tasmota_ca.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/tasmota_ca.ino -------------------------------------------------------------------------------- /tasmota/tasmota_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/tasmota_compat.h -------------------------------------------------------------------------------- /tasmota/tasmota_configurations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/tasmota_configurations.h -------------------------------------------------------------------------------- /tasmota/tasmota_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/tasmota_globals.h -------------------------------------------------------------------------------- /tasmota/tasmota_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/tasmota_template.h -------------------------------------------------------------------------------- /tasmota/tasmota_template_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/tasmota_template_ESP32.h -------------------------------------------------------------------------------- /tasmota/tasmota_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/tasmota_version.h -------------------------------------------------------------------------------- /tasmota/user_config_override_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/user_config_override_sample.h -------------------------------------------------------------------------------- /tasmota/xdrv_01_webserver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_01_webserver.ino -------------------------------------------------------------------------------- /tasmota/xdrv_02_mqtt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_02_mqtt.ino -------------------------------------------------------------------------------- /tasmota/xdrv_03_energy.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_03_energy.ino -------------------------------------------------------------------------------- /tasmota/xdrv_04_light.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_04_light.ino -------------------------------------------------------------------------------- /tasmota/xdrv_05_irremote.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_05_irremote.ino -------------------------------------------------------------------------------- /tasmota/xdrv_05_irremote_full.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_05_irremote_full.ino -------------------------------------------------------------------------------- /tasmota/xdrv_06_snfbridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_06_snfbridge.ino -------------------------------------------------------------------------------- /tasmota/xdrv_07_domoticz.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_07_domoticz.ino -------------------------------------------------------------------------------- /tasmota/xdrv_08_serial_bridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_08_serial_bridge.ino -------------------------------------------------------------------------------- /tasmota/xdrv_09_timers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_09_timers.ino -------------------------------------------------------------------------------- /tasmota/xdrv_10_rules.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_10_rules.ino -------------------------------------------------------------------------------- /tasmota/xdrv_10_scripter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_10_scripter.ino -------------------------------------------------------------------------------- /tasmota/xdrv_11_knx.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_11_knx.ino -------------------------------------------------------------------------------- /tasmota/xdrv_12_home_assistant.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_12_home_assistant.ino -------------------------------------------------------------------------------- /tasmota/xdrv_13_display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_13_display.ino -------------------------------------------------------------------------------- /tasmota/xdrv_14_mp3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_14_mp3.ino -------------------------------------------------------------------------------- /tasmota/xdrv_15_pca9685.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_15_pca9685.ino -------------------------------------------------------------------------------- /tasmota/xdrv_16_tuyamcu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_16_tuyamcu.ino -------------------------------------------------------------------------------- /tasmota/xdrv_17_rcswitch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_17_rcswitch.ino -------------------------------------------------------------------------------- /tasmota/xdrv_18_armtronix_dimmers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_18_armtronix_dimmers.ino -------------------------------------------------------------------------------- /tasmota/xdrv_19_ps16dz_dimmer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_19_ps16dz_dimmer.ino -------------------------------------------------------------------------------- /tasmota/xdrv_20_hue.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_20_hue.ino -------------------------------------------------------------------------------- /tasmota/xdrv_21_wemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_21_wemo.ino -------------------------------------------------------------------------------- /tasmota/xdrv_22_sonoff_ifan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_22_sonoff_ifan.ino -------------------------------------------------------------------------------- /tasmota/xdrv_23_zigbee_1_headers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_23_zigbee_1_headers.ino -------------------------------------------------------------------------------- /tasmota/xdrv_23_zigbee_1z_libs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_23_zigbee_1z_libs.ino -------------------------------------------------------------------------------- /tasmota/xdrv_23_zigbee_2_devices.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_23_zigbee_2_devices.ino -------------------------------------------------------------------------------- /tasmota/xdrv_23_zigbee_3_hue.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_23_zigbee_3_hue.ino -------------------------------------------------------------------------------- /tasmota/xdrv_23_zigbee_6_commands.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_23_zigbee_6_commands.ino -------------------------------------------------------------------------------- /tasmota/xdrv_23_zigbee_8_parsers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_23_zigbee_8_parsers.ino -------------------------------------------------------------------------------- /tasmota/xdrv_23_zigbee_9_serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_23_zigbee_9_serial.ino -------------------------------------------------------------------------------- /tasmota/xdrv_23_zigbee_9a_upload.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_23_zigbee_9a_upload.ino -------------------------------------------------------------------------------- /tasmota/xdrv_23_zigbee_A_impl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_23_zigbee_A_impl.ino -------------------------------------------------------------------------------- /tasmota/xdrv_24_buzzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_24_buzzer.ino -------------------------------------------------------------------------------- /tasmota/xdrv_25_A4988_Stepper.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_25_A4988_Stepper.ino -------------------------------------------------------------------------------- /tasmota/xdrv_26_ariluxrf.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_26_ariluxrf.ino -------------------------------------------------------------------------------- /tasmota/xdrv_27_shutter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_27_shutter.ino -------------------------------------------------------------------------------- /tasmota/xdrv_28_pcf8574.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_28_pcf8574.ino -------------------------------------------------------------------------------- /tasmota/xdrv_29_deepsleep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_29_deepsleep.ino -------------------------------------------------------------------------------- /tasmota/xdrv_30_exs_dimmer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_30_exs_dimmer.ino -------------------------------------------------------------------------------- /tasmota/xdrv_31_tasmota_client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_31_tasmota_client.ino -------------------------------------------------------------------------------- /tasmota/xdrv_32_hotplug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_32_hotplug.ino -------------------------------------------------------------------------------- /tasmota/xdrv_33_nrf24l01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_33_nrf24l01.ino -------------------------------------------------------------------------------- /tasmota/xdrv_34_wemos_motor_v1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_34_wemos_motor_v1.ino -------------------------------------------------------------------------------- /tasmota/xdrv_35_pwm_dimmer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_35_pwm_dimmer.ino -------------------------------------------------------------------------------- /tasmota/xdrv_36_keeloq.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_36_keeloq.ino -------------------------------------------------------------------------------- /tasmota/xdrv_37_sonoff_d1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_37_sonoff_d1.ino -------------------------------------------------------------------------------- /tasmota/xdrv_38_ping.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_38_ping.ino -------------------------------------------------------------------------------- /tasmota/xdrv_39_thermostat.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_39_thermostat.ino -------------------------------------------------------------------------------- /tasmota/xdrv_40_telegram.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_40_telegram.ino -------------------------------------------------------------------------------- /tasmota/xdrv_41_tcp_bridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_41_tcp_bridge.ino -------------------------------------------------------------------------------- /tasmota/xdrv_42_i2s_audio.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_42_i2s_audio.ino -------------------------------------------------------------------------------- /tasmota/xdrv_43_mlx90640.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_43_mlx90640.ino -------------------------------------------------------------------------------- /tasmota/xdrv_81_webcam.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_81_webcam.ino -------------------------------------------------------------------------------- /tasmota/xdrv_82_ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_82_ethernet.ino -------------------------------------------------------------------------------- /tasmota/xdrv_83_esp32watch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_83_esp32watch.ino -------------------------------------------------------------------------------- /tasmota/xdrv_99_debug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_99_debug.ino -------------------------------------------------------------------------------- /tasmota/xdrv_interface.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdrv_interface.ino -------------------------------------------------------------------------------- /tasmota/xdsp_01_lcd.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_01_lcd.ino -------------------------------------------------------------------------------- /tasmota/xdsp_02_ssd1306.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_02_ssd1306.ino -------------------------------------------------------------------------------- /tasmota/xdsp_03_matrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_03_matrix.ino -------------------------------------------------------------------------------- /tasmota/xdsp_04_ili9341.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_04_ili9341.ino -------------------------------------------------------------------------------- /tasmota/xdsp_05_epaper_29.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_05_epaper_29.ino -------------------------------------------------------------------------------- /tasmota/xdsp_06_epaper_42.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_06_epaper_42.ino -------------------------------------------------------------------------------- /tasmota/xdsp_07_sh1106.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_07_sh1106.ino -------------------------------------------------------------------------------- /tasmota/xdsp_08_ILI9488.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_08_ILI9488.ino -------------------------------------------------------------------------------- /tasmota/xdsp_09_SSD1351.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_09_SSD1351.ino -------------------------------------------------------------------------------- /tasmota/xdsp_10_RA8876.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_10_RA8876.ino -------------------------------------------------------------------------------- /tasmota/xdsp_11_sevenseg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_11_sevenseg.ino -------------------------------------------------------------------------------- /tasmota/xdsp_12_ST7789.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_12_ST7789.ino -------------------------------------------------------------------------------- /tasmota/xdsp_interface.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xdsp_interface.ino -------------------------------------------------------------------------------- /tasmota/xlgt_01_ws2812.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xlgt_01_ws2812.ino -------------------------------------------------------------------------------- /tasmota/xlgt_02_my92x1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xlgt_02_my92x1.ino -------------------------------------------------------------------------------- /tasmota/xlgt_03_sm16716.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xlgt_03_sm16716.ino -------------------------------------------------------------------------------- /tasmota/xlgt_04_sm2135.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xlgt_04_sm2135.ino -------------------------------------------------------------------------------- /tasmota/xlgt_05_sonoff_l1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xlgt_05_sonoff_l1.ino -------------------------------------------------------------------------------- /tasmota/xlgt_06_electriq_moodl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xlgt_06_electriq_moodl.ino -------------------------------------------------------------------------------- /tasmota/xlgt_interface.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xlgt_interface.ino -------------------------------------------------------------------------------- /tasmota/xnrg_01_hlw8012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_01_hlw8012.ino -------------------------------------------------------------------------------- /tasmota/xnrg_02_cse7766.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_02_cse7766.ino -------------------------------------------------------------------------------- /tasmota/xnrg_03_pzem004t.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_03_pzem004t.ino -------------------------------------------------------------------------------- /tasmota/xnrg_04_mcp39f501.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_04_mcp39f501.ino -------------------------------------------------------------------------------- /tasmota/xnrg_05_pzem_ac.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_05_pzem_ac.ino -------------------------------------------------------------------------------- /tasmota/xnrg_06_pzem_dc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_06_pzem_dc.ino -------------------------------------------------------------------------------- /tasmota/xnrg_07_ade7953.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_07_ade7953.ino -------------------------------------------------------------------------------- /tasmota/xnrg_08_sdm120.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_08_sdm120.ino -------------------------------------------------------------------------------- /tasmota/xnrg_09_dds2382.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_09_dds2382.ino -------------------------------------------------------------------------------- /tasmota/xnrg_10_sdm630.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_10_sdm630.ino -------------------------------------------------------------------------------- /tasmota/xnrg_11_ddsu666.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_11_ddsu666.ino -------------------------------------------------------------------------------- /tasmota/xnrg_12_solaxX1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_12_solaxX1.ino -------------------------------------------------------------------------------- /tasmota/xnrg_13_fif_le01mr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_13_fif_le01mr.ino -------------------------------------------------------------------------------- /tasmota/xnrg_14_bl0940.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_14_bl0940.ino -------------------------------------------------------------------------------- /tasmota/xnrg_15_teleinfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_15_teleinfo.ino -------------------------------------------------------------------------------- /tasmota/xnrg_16_iem3000.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_16_iem3000.ino -------------------------------------------------------------------------------- /tasmota/xnrg_interface.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xnrg_interface.ino -------------------------------------------------------------------------------- /tasmota/xsns_01_counter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_01_counter.ino -------------------------------------------------------------------------------- /tasmota/xsns_02_analog.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_02_analog.ino -------------------------------------------------------------------------------- /tasmota/xsns_02_analog_esp32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_02_analog_esp32.ino -------------------------------------------------------------------------------- /tasmota/xsns_04_snfsc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_04_snfsc.ino -------------------------------------------------------------------------------- /tasmota/xsns_05_ds18x20.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_05_ds18x20.ino -------------------------------------------------------------------------------- /tasmota/xsns_06_dht.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_06_dht.ino -------------------------------------------------------------------------------- /tasmota/xsns_07_sht1x.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_07_sht1x.ino -------------------------------------------------------------------------------- /tasmota/xsns_08_htu21.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_08_htu21.ino -------------------------------------------------------------------------------- /tasmota/xsns_09_bmp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_09_bmp.ino -------------------------------------------------------------------------------- /tasmota/xsns_10_bh1750.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_10_bh1750.ino -------------------------------------------------------------------------------- /tasmota/xsns_11_veml6070.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_11_veml6070.ino -------------------------------------------------------------------------------- /tasmota/xsns_12_ads1115.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_12_ads1115.ino -------------------------------------------------------------------------------- /tasmota/xsns_13_ina219.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_13_ina219.ino -------------------------------------------------------------------------------- /tasmota/xsns_14_sht3x.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_14_sht3x.ino -------------------------------------------------------------------------------- /tasmota/xsns_15_mhz19.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_15_mhz19.ino -------------------------------------------------------------------------------- /tasmota/xsns_16_tsl2561.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_16_tsl2561.ino -------------------------------------------------------------------------------- /tasmota/xsns_17_senseair.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_17_senseair.ino -------------------------------------------------------------------------------- /tasmota/xsns_18_pms5003.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_18_pms5003.ino -------------------------------------------------------------------------------- /tasmota/xsns_19_mgs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_19_mgs.ino -------------------------------------------------------------------------------- /tasmota/xsns_20_novasds.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_20_novasds.ino -------------------------------------------------------------------------------- /tasmota/xsns_21_sgp30.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_21_sgp30.ino -------------------------------------------------------------------------------- /tasmota/xsns_22_sr04.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_22_sr04.ino -------------------------------------------------------------------------------- /tasmota/xsns_24_si1145.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_24_si1145.ino -------------------------------------------------------------------------------- /tasmota/xsns_26_lm75ad.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_26_lm75ad.ino -------------------------------------------------------------------------------- /tasmota/xsns_27_apds9960.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_27_apds9960.ino -------------------------------------------------------------------------------- /tasmota/xsns_28_tm1638.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_28_tm1638.ino -------------------------------------------------------------------------------- /tasmota/xsns_29_mcp230xx.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_29_mcp230xx.ino -------------------------------------------------------------------------------- /tasmota/xsns_30_mpr121.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_30_mpr121.ino -------------------------------------------------------------------------------- /tasmota/xsns_31_ccs811.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_31_ccs811.ino -------------------------------------------------------------------------------- /tasmota/xsns_32_mpu6050.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_32_mpu6050.ino -------------------------------------------------------------------------------- /tasmota/xsns_33_ds3231.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_33_ds3231.ino -------------------------------------------------------------------------------- /tasmota/xsns_34_hx711.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_34_hx711.ino -------------------------------------------------------------------------------- /tasmota/xsns_35_tx20.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_35_tx20.ino -------------------------------------------------------------------------------- /tasmota/xsns_36_mgc3130.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_36_mgc3130.ino -------------------------------------------------------------------------------- /tasmota/xsns_37_rfsensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_37_rfsensor.ino -------------------------------------------------------------------------------- /tasmota/xsns_38_az7798.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_38_az7798.ino -------------------------------------------------------------------------------- /tasmota/xsns_39_max31855.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_39_max31855.ino -------------------------------------------------------------------------------- /tasmota/xsns_40_pn532.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_40_pn532.ino -------------------------------------------------------------------------------- /tasmota/xsns_41_max44009.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_41_max44009.ino -------------------------------------------------------------------------------- /tasmota/xsns_42_scd30.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_42_scd30.ino -------------------------------------------------------------------------------- /tasmota/xsns_43_hre.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_43_hre.ino -------------------------------------------------------------------------------- /tasmota/xsns_44_sps30.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_44_sps30.ino -------------------------------------------------------------------------------- /tasmota/xsns_45_vl53l0x.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_45_vl53l0x.ino -------------------------------------------------------------------------------- /tasmota/xsns_46_MLX90614.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_46_MLX90614.ino -------------------------------------------------------------------------------- /tasmota/xsns_47_max31865.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_47_max31865.ino -------------------------------------------------------------------------------- /tasmota/xsns_48_chirp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_48_chirp.ino -------------------------------------------------------------------------------- /tasmota/xsns_50_paj7620.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_50_paj7620.ino -------------------------------------------------------------------------------- /tasmota/xsns_51_rdm6300.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_51_rdm6300.ino -------------------------------------------------------------------------------- /tasmota/xsns_52_ibeacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_52_ibeacon.ino -------------------------------------------------------------------------------- /tasmota/xsns_53_sml.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_53_sml.ino -------------------------------------------------------------------------------- /tasmota/xsns_54_ina226.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_54_ina226.ino -------------------------------------------------------------------------------- /tasmota/xsns_55_hih_series.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_55_hih_series.ino -------------------------------------------------------------------------------- /tasmota/xsns_56_hpma.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_56_hpma.ino -------------------------------------------------------------------------------- /tasmota/xsns_57_tsl2591.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_57_tsl2591.ino -------------------------------------------------------------------------------- /tasmota/xsns_58_dht12.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_58_dht12.ino -------------------------------------------------------------------------------- /tasmota/xsns_59_ds1624.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_59_ds1624.ino -------------------------------------------------------------------------------- /tasmota/xsns_60_GPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_60_GPS.ino -------------------------------------------------------------------------------- /tasmota/xsns_61_MI_NRF24.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_61_MI_NRF24.ino -------------------------------------------------------------------------------- /tasmota/xsns_62_MI_ESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_62_MI_ESP32.ino -------------------------------------------------------------------------------- /tasmota/xsns_62_MI_HM10.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_62_MI_HM10.ino -------------------------------------------------------------------------------- /tasmota/xsns_63_aht1x.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_63_aht1x.ino -------------------------------------------------------------------------------- /tasmota/xsns_64_hrxl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_64_hrxl.ino -------------------------------------------------------------------------------- /tasmota/xsns_65_hdc1080.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_65_hdc1080.ino -------------------------------------------------------------------------------- /tasmota/xsns_66_iAQ.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_66_iAQ.ino -------------------------------------------------------------------------------- /tasmota/xsns_67_as3935.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_67_as3935.ino -------------------------------------------------------------------------------- /tasmota/xsns_68_windmeter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_68_windmeter.ino -------------------------------------------------------------------------------- /tasmota/xsns_69_opentherm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_69_opentherm.ino -------------------------------------------------------------------------------- /tasmota/xsns_70_veml6075.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_70_veml6075.ino -------------------------------------------------------------------------------- /tasmota/xsns_71_veml7700.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_71_veml7700.ino -------------------------------------------------------------------------------- /tasmota/xsns_72_mcp9808.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_72_mcp9808.ino -------------------------------------------------------------------------------- /tasmota/xsns_73_hp303b.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_73_hp303b.ino -------------------------------------------------------------------------------- /tasmota/xsns_74_lmt01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_74_lmt01.ino -------------------------------------------------------------------------------- /tasmota/xsns_75_prometheus.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_75_prometheus.ino -------------------------------------------------------------------------------- /tasmota/xsns_76_dyp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_76_dyp.ino -------------------------------------------------------------------------------- /tasmota/xsns_interface.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xsns_interface.ino -------------------------------------------------------------------------------- /tasmota/xx2c_interface.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tasmota/xx2c_interface.ino -------------------------------------------------------------------------------- /tools/Esptool/ESP32/boot_app0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/Esptool/ESP32/boot_app0.bin -------------------------------------------------------------------------------- /tools/Esptool/ESP32/partitions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/Esptool/ESP32/partitions.bin -------------------------------------------------------------------------------- /tools/Esptool/ESP32/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/Esptool/ESP32/readme.txt -------------------------------------------------------------------------------- /tools/Esptool/EraseFlash.bat: -------------------------------------------------------------------------------- 1 | esptool.py --baud 115200 erase_flash 2 | -------------------------------------------------------------------------------- /tools/Esptool/ReadFlash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/Esptool/ReadFlash.bat -------------------------------------------------------------------------------- /tools/Esptool/VerifyFlash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/Esptool/VerifyFlash.bat -------------------------------------------------------------------------------- /tools/Esptool/WriteFlash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/Esptool/WriteFlash.bat -------------------------------------------------------------------------------- /tools/decode-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/decode-config.md -------------------------------------------------------------------------------- /tools/decode-status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/decode-status.py -------------------------------------------------------------------------------- /tools/fw_server/fw-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/fw_server/fw-server.py -------------------------------------------------------------------------------- /tools/fw_server/fw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/fw_server/fw/README -------------------------------------------------------------------------------- /tools/fw_zbbridge/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/fw_zbbridge/readme.txt -------------------------------------------------------------------------------- /tools/logo/TASMOTA_Symbol_Vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/logo/TASMOTA_Symbol_Vector.svg -------------------------------------------------------------------------------- /tools/serial-plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/serial-plotter.py -------------------------------------------------------------------------------- /tools/templates/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/templates/templates.py -------------------------------------------------------------------------------- /tools/theov2_attiny85/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/theov2_attiny85/info.txt -------------------------------------------------------------------------------- /tools/unishox/unishox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reloxx13/Sonoff-Tasmota-Modified/HEAD/tools/unishox/unishox.py --------------------------------------------------------------------------------