├── .DS_Store ├── .gitignore ├── README.md ├── STL 3D model ├── README.md ├── T5-ink v2.2 b.STL ├── T5-ink v2.2 t.STL ├── T5-ink v2.2.STL ├── T5-ink v2.3 a.STL ├── T5-ink v2.3 b.STL └── T5-ink v2.3 t.STL ├── image ├── .DS_Store ├── bilibili1.png ├── bilibili2.JPG ├── image.png ├── infopage.JPG ├── mainpage.JPG └── notepage.JPG ├── lib ├── Adafruit_BME280_Library │ ├── Adafruit_BME280.cpp │ ├── Adafruit_BME280.h │ ├── LICENSE │ ├── README.md │ ├── assets │ │ └── board.jpg │ ├── examples │ │ ├── advancedsettings │ │ │ └── advancedsettings.ino │ │ ├── bme280_unified │ │ │ └── bme280_unified.ino │ │ └── bme280test │ │ │ └── bme280test.ino │ └── library.properties ├── Adafruit_BME680_Library │ ├── Adafruit_BME680.cpp │ ├── Adafruit_BME680.h │ ├── Doxyfile │ ├── README.md │ ├── bme680.c │ ├── bme680.h │ ├── bme680_defs.h │ ├── examples │ │ ├── bme680async │ │ │ └── bme680async.ino │ │ ├── bme680oled │ │ │ └── bme680oled.ino │ │ └── bme680test │ │ │ └── bme680test.ino │ └── library.properties ├── Adafruit_GFX_Library │ ├── 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 │ │ ├── UserFont24pt7b.h │ │ └── simsun14pt.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 ├── ArduinoJson │ ├── ArduinoJson.h │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── SUPPORT.md │ ├── appveyor.yml │ ├── banner.svg │ ├── 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 │ ├── fuzzing │ │ ├── Makefile │ │ ├── fuzzer.cpp │ │ ├── my_corpus │ │ │ └── .gitignore │ │ └── seed_corpus │ │ │ ├── Comments.json │ │ │ ├── EmptyArray.json │ │ │ ├── EmptyObject.json │ │ │ ├── ExcessiveNesting.json │ │ │ ├── Numbers.json │ │ │ ├── OpenWeatherMap.json │ │ │ ├── Strings.json │ │ │ └── WeatherUnderground.json │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── scripts │ │ ├── build-arduino-package.sh │ │ ├── build-single-header.sh │ │ ├── create-build-envs.sh │ │ ├── oss-fuzz │ │ │ ├── .gitignore │ │ │ └── Vagrantfile │ │ ├── publish-particle-library.sh │ │ └── travis │ │ │ ├── arduino.sh │ │ │ ├── cmake.sh │ │ │ ├── coverage.sh │ │ │ ├── fuzz.sh │ │ │ └── platformio.sh │ ├── 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 │ │ │ ├── alias_cast.hpp │ │ │ ├── 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 │ │ │ ├── compatibility.hpp │ │ │ └── version.hpp │ ├── test │ │ ├── CMakeLists.txt │ │ ├── DynamicJsonBuffer │ │ │ ├── CMakeLists.txt │ │ │ ├── alloc.cpp │ │ │ ├── createArray.cpp │ │ │ ├── createObject.cpp │ │ │ ├── no_memory.cpp │ │ │ ├── size.cpp │ │ │ └── startString.cpp │ │ ├── IntegrationTests │ │ │ ├── CMakeLists.txt │ │ │ ├── gbathree.cpp │ │ │ └── round_trip.cpp │ │ ├── JsonArray │ │ │ ├── CMakeLists.txt │ │ │ ├── add.cpp │ │ │ ├── basics.cpp │ │ │ ├── copyFrom.cpp │ │ │ ├── copyTo.cpp │ │ │ ├── invalid.cpp │ │ │ ├── iterator.cpp │ │ │ ├── prettyPrintTo.cpp │ │ │ ├── printTo.cpp │ │ │ ├── remove.cpp │ │ │ ├── set.cpp │ │ │ ├── size.cpp │ │ │ └── subscript.cpp │ │ ├── JsonBuffer │ │ │ ├── CMakeLists.txt │ │ │ ├── nested.cpp │ │ │ ├── nestingLimit.cpp │ │ │ ├── parse.cpp │ │ │ ├── parseArray.cpp │ │ │ └── parseObject.cpp │ │ ├── JsonObject │ │ │ ├── CMakeLists.txt │ │ │ ├── basics.cpp │ │ │ ├── containsKey.cpp │ │ │ ├── get.cpp │ │ │ ├── invalid.cpp │ │ │ ├── iterator.cpp │ │ │ ├── prettyPrintTo.cpp │ │ │ ├── printTo.cpp │ │ │ ├── remove.cpp │ │ │ ├── set.cpp │ │ │ ├── size.cpp │ │ │ └── subscript.cpp │ │ ├── JsonVariant │ │ │ ├── CMakeLists.txt │ │ │ ├── as.cpp │ │ │ ├── compare.cpp │ │ │ ├── copy.cpp │ │ │ ├── is.cpp │ │ │ ├── or.cpp │ │ │ ├── printTo.cpp │ │ │ ├── set_get.cpp │ │ │ ├── subscript.cpp │ │ │ ├── success.cpp │ │ │ └── undefined.cpp │ │ ├── JsonWriter │ │ │ ├── CMakeLists.txt │ │ │ ├── writeFloat.cpp │ │ │ └── writeString.cpp │ │ ├── Misc │ │ │ ├── CMakeLists.txt │ │ │ ├── FloatParts.cpp │ │ │ ├── StringBuilder.cpp │ │ │ ├── StringTraits.cpp │ │ │ ├── TypeTraits.cpp │ │ │ ├── deprecated.cpp │ │ │ ├── empty.cpp │ │ │ ├── std_stream.cpp │ │ │ ├── std_string.cpp │ │ │ ├── unsigned_char.cpp │ │ │ ├── version.cpp │ │ │ └── vla.cpp │ │ ├── Polyfills │ │ │ ├── CMakeLists.txt │ │ │ ├── isFloat.cpp │ │ │ ├── isInteger.cpp │ │ │ ├── parseFloat.cpp │ │ │ └── parseInteger.cpp │ │ └── StaticJsonBuffer │ │ │ ├── CMakeLists.txt │ │ │ ├── alloc.cpp │ │ │ ├── createArray.cpp │ │ │ ├── createObject.cpp │ │ │ ├── parseArray.cpp │ │ │ ├── parseObject.cpp │ │ │ ├── size.cpp │ │ │ └── startString.cpp │ └── third-party │ │ └── catch │ │ ├── CMakeLists.txt │ │ ├── catch.cpp │ │ └── catch.hpp ├── Button2 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── LongpressHandler │ │ │ └── LongpressHandler.ino │ │ ├── MultiHandler │ │ │ └── MultiHandler.ino │ │ ├── MultipleButtons │ │ │ └── MultipleButtons.ino │ │ ├── SingleButton │ │ │ └── SingleButton.ino │ │ └── SingleButtonSimple │ │ │ └── SingleButtonSimple.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Button2.cpp │ │ └── Button2.h ├── ESPAsyncTCP │ ├── .github │ │ ├── scripts │ │ │ ├── install-arduino-core-esp8266.sh │ │ │ ├── install-arduino-ide.sh │ │ │ ├── install-platformio.sh │ │ │ └── on-push.sh │ │ ├── stale.yml │ │ └── workflows │ │ │ └── push.yml │ ├── .gitignore │ ├── .library.json │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── ClientServer │ │ │ ├── Client │ │ │ │ ├── Client.ino │ │ │ │ └── config.h │ │ │ └── Server │ │ │ │ ├── Server.ino │ │ │ │ └── config.h │ │ └── SyncClient │ │ │ ├── .esp31b.skip │ │ │ └── SyncClient.ino │ ├── library.json │ ├── library.properties │ ├── src │ │ ├── AsyncPrinter.cpp │ │ ├── AsyncPrinter.h │ │ ├── DebugPrintMacros.h │ │ ├── ESPAsyncTCP.cpp │ │ ├── ESPAsyncTCP.h │ │ ├── ESPAsyncTCPbuffer.cpp │ │ ├── ESPAsyncTCPbuffer.h │ │ ├── SyncClient.cpp │ │ ├── SyncClient.h │ │ ├── async_config.h │ │ ├── tcp_axtls.c │ │ └── tcp_axtls.h │ └── ssl │ │ ├── gen_server_cert.sh │ │ ├── server.cer │ │ └── server.key ├── ESPAsync_WebServer │ ├── .github │ │ ├── scripts │ │ │ ├── install-arduino-core-esp32.sh │ │ │ ├── install-arduino-core-esp8266.sh │ │ │ ├── install-arduino-ide.sh │ │ │ ├── install-platformio.sh │ │ │ └── on-push.sh │ │ ├── stale.yml │ │ └── workflows │ │ │ └── push.yml │ ├── .gitignore │ ├── .library.json │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── README.md │ ├── _config.yml │ ├── component.mk │ ├── examples │ │ ├── CaptivePortal │ │ │ └── CaptivePortal.ino │ │ ├── ESP_AsyncFSBrowser │ │ │ ├── ESP_AsyncFSBrowser.ino │ │ │ └── data │ │ │ │ ├── .exclude.files │ │ │ │ ├── ace.js.gz │ │ │ │ ├── ext-searchbox.js.gz │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.htm │ │ │ │ ├── mode-css.js.gz │ │ │ │ ├── mode-html.js.gz │ │ │ │ ├── mode-javascript.js.gz │ │ │ │ └── worker-html.js.gz │ │ ├── regex_patterns │ │ │ └── regex_patterns.ino │ │ └── simple_server │ │ │ └── simple_server.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── AsyncEventSource.cpp │ │ ├── AsyncEventSource.h │ │ ├── AsyncJson.h │ │ ├── AsyncWebSocket.cpp │ │ ├── AsyncWebSocket.h │ │ ├── AsyncWebSynchronization.h │ │ ├── ESPAsyncWebServer.h │ │ ├── SPIFFSEditor.cpp │ │ ├── SPIFFSEditor.h │ │ ├── StringArray.h │ │ ├── WebAuthentication.cpp │ │ ├── WebAuthentication.h │ │ ├── WebHandlerImpl.h │ │ ├── WebHandlers.cpp │ │ ├── WebRequest.cpp │ │ ├── WebResponseImpl.h │ │ ├── WebResponses.cpp │ │ ├── WebServer.cpp │ │ └── edit.htm ├── GxEPD │ ├── CONTRIBUTING.md │ ├── ConnectingHardware.md │ ├── LICENSE │ ├── MyEPDs_UpdateInfos.pdf │ ├── README.md │ ├── examples │ │ ├── GxEPD_Example │ │ │ ├── GxEPD_Example.ino │ │ │ └── IMG_0001.h │ │ ├── GxEPD_MultiDisplayExample │ │ │ └── GxEPD_MultiDisplayExample.ino │ │ ├── GxEPD_SD_Example │ │ │ ├── GxEPD_SD_Example.ino │ │ │ └── bitmaps │ │ │ │ ├── betty_1.bmp │ │ │ │ └── parrot.bmp │ │ ├── GxEPD_WiFi_Example │ │ │ └── GxEPD_WiFi_Example.ino │ │ ├── GxFont_GFX_Example │ │ │ └── GxFont_GFX_Example.ino │ │ ├── IoT_SHT31LP_Example_1.54inchEPD │ │ │ └── IoT_SHT31LP_Example_1.54inchEPD.ino │ │ ├── PagedDisplayForSmallRam │ │ │ └── PagedDisplayForSmallRam.ino │ │ ├── PartialUpdateExample │ │ │ └── PartialUpdateExample.ino │ │ └── PartialUpdateTest │ │ │ └── PartialUpdateTest.ino │ ├── issue_template.md │ ├── library.properties │ └── src │ │ ├── GxEPD.cpp │ │ ├── GxEPD.h │ │ ├── GxFont_GFX.cpp │ │ ├── GxFont_GFX.h │ │ ├── GxGDE0213B1 │ │ ├── BitmapExamples.h │ │ ├── GxGDE0213B1.cpp │ │ └── GxGDE0213B1.h │ │ ├── GxGDE0213B72 │ │ ├── BitmapExamples.h │ │ ├── GxGDE0213B72.cpp │ │ └── GxGDE0213B72.h │ │ ├── GxGDE0213B72B │ │ ├── BitmapExamples.h │ │ ├── GxGDE0213B72B.cpp │ │ └── GxGDE0213B72B.h │ │ ├── GxGDEH0213B72 │ │ ├── BitmapExamples.h │ │ ├── GxGDEH0213B72.cpp │ │ └── GxGDEH0213B72.h │ │ ├── GxGDEH0213B73 │ │ ├── BitmapExamples.h │ │ ├── GxGDEH0213B73.cpp │ │ └── GxGDEH0213B73.h │ │ ├── GxGDEH029A1 │ │ ├── BitmapExamples.h │ │ ├── GxGDEH029A1.cpp │ │ └── GxGDEH029A1.h │ │ ├── GxGDEP015OC1 │ │ ├── BitmapExamples.h │ │ ├── GxGDEP015OC1.cpp │ │ └── GxGDEP015OC1.h │ │ ├── GxGDEW0102I4F │ │ ├── BitmapExamples.h │ │ ├── GxGDEW0102I4F.cpp │ │ └── GxGDEW0102I4F.h │ │ ├── GxGDEW0154Z04 │ │ ├── BitmapExamples.h │ │ ├── BitmapWaveshare.h │ │ ├── GxGDEW0154Z04.cpp │ │ └── GxGDEW0154Z04.h │ │ ├── GxGDEW0154Z17 │ │ ├── BitmapExamples.h │ │ ├── GxGDEW0154Z17.cpp │ │ └── GxGDEW0154Z17.h │ │ ├── GxGDEW0213I5F │ │ ├── BitmapExamples.h │ │ ├── BitmapWaveshare.h │ │ ├── GxGDEW0213I5F.cpp │ │ └── GxGDEW0213I5F.h │ │ ├── GxGDEW0213Z16 │ │ ├── BitmapExamples.h │ │ ├── BitmapWaveshare.h │ │ ├── GxGDEW0213Z16.cpp │ │ └── GxGDEW0213Z16.h │ │ ├── GxGDEW027C44 │ │ ├── BitmapExamples.h │ │ ├── GxGDEW027C44.cpp │ │ └── GxGDEW027C44.h │ │ ├── GxGDEW027W3 │ │ ├── BitmapExamples.h │ │ ├── BitmapWaveshare.h │ │ ├── GxGDEW027W3.cpp │ │ └── GxGDEW027W3.h │ │ ├── GxGDEW029T5 │ │ ├── BitmapExamples.h │ │ ├── BitmapWaveshare.h │ │ ├── GxGDEW029T5.cpp │ │ └── GxGDEW029T5.h │ │ ├── GxGDEW029Z10 │ │ ├── BitmapExamples.h │ │ ├── BitmapWaveshare.h │ │ ├── GxGDEW029Z10.cpp │ │ └── GxGDEW029Z10.h │ │ ├── GxGDEW042T2 │ │ ├── BitmapExamples.h │ │ ├── GxGDEW042T2.cpp │ │ └── GxGDEW042T2.h │ │ ├── GxGDEW042Z15 │ │ ├── BitmapExamples.h │ │ ├── BitmapWaveshare.h │ │ ├── GxGDEW042Z15.cpp │ │ └── GxGDEW042Z15.h │ │ ├── GxGDEW0583T7 │ │ ├── BitmapExamples.h │ │ ├── GxGDEW0583T7.cpp │ │ └── GxGDEW0583T7.h │ │ ├── GxGDEW075T8 │ │ ├── BitmapExamples.h │ │ ├── GxGDEW075T8.cpp │ │ └── GxGDEW075T8.h │ │ ├── GxGDEW075Z09 │ │ ├── BitmapExamples.h │ │ ├── BitmapPicture_3C.h │ │ ├── GxGDEW075Z09.cpp │ │ └── GxGDEW075Z09.h │ │ ├── GxIO │ │ ├── GxIO.cpp │ │ ├── GxIO.h │ │ └── GxIO_SPI │ │ │ ├── GxIO_SPI.cpp │ │ │ └── GxIO_SPI.h │ │ └── imglib │ │ ├── gridicons_add.h │ │ ├── gridicons_add_image.h │ │ ├── gridicons_add_outline.h │ │ ├── gridicons_align_center.h │ │ ├── gridicons_align_image_center.h │ │ ├── gridicons_align_image_left.h │ │ ├── gridicons_align_image_none.h │ │ ├── gridicons_align_image_right.h │ │ ├── gridicons_align_justify.h │ │ ├── gridicons_align_left.h │ │ ├── gridicons_align_right.h │ │ ├── gridicons_arrow_down.h │ │ ├── gridicons_arrow_left.h │ │ ├── gridicons_arrow_right.h │ │ ├── gridicons_arrow_up.h │ │ ├── gridicons_aside.h │ │ ├── gridicons_attachment.h │ │ ├── gridicons_audio.h │ │ ├── gridicons_bell.h │ │ ├── gridicons_block.h │ │ ├── gridicons_bold.h │ │ ├── gridicons_book.h │ │ ├── gridicons_bookmark.h │ │ ├── gridicons_bookmark_outline.h │ │ ├── gridicons_briefcase.h │ │ ├── gridicons_bug.h │ │ ├── gridicons_calendar.h │ │ ├── gridicons_camera.h │ │ ├── gridicons_caption.h │ │ ├── gridicons_cart.h │ │ ├── gridicons_chat.h │ │ ├── gridicons_checkmark.h │ │ ├── gridicons_checkmark_circle.h │ │ ├── gridicons_chevron_down.h │ │ ├── gridicons_chevron_left.h │ │ ├── gridicons_chevron_right.h │ │ ├── gridicons_chevron_up.h │ │ ├── gridicons_clear_formatting.h │ │ ├── gridicons_clipboard.h │ │ ├── gridicons_cloud.h │ │ ├── gridicons_cloud_download.h │ │ ├── gridicons_cloud_upload.h │ │ ├── gridicons_code.h │ │ ├── gridicons_cog.h │ │ ├── gridicons_comment.h │ │ ├── gridicons_computer.h │ │ ├── gridicons_create.h │ │ ├── gridicons_credit_card.h │ │ ├── gridicons_crop.h │ │ ├── gridicons_cross.h │ │ ├── gridicons_cross_circle.h │ │ ├── gridicons_cross_small.h │ │ ├── gridicons_custom_post_type.h │ │ ├── gridicons_dropdown.h │ │ ├── gridicons_ellipsis.h │ │ ├── gridicons_ellipsis_circle.h │ │ ├── gridicons_external.h │ │ ├── gridicons_flag.h │ │ ├── gridicons_flip_horizontal.h │ │ ├── gridicons_flip_vertical.h │ │ ├── gridicons_folder.h │ │ ├── gridicons_folder_multiple.h │ │ ├── gridicons_fullscreen.h │ │ ├── gridicons_fullscreen_exit.h │ │ ├── gridicons_globe.h │ │ ├── gridicons_grid.h │ │ ├── gridicons_heading.h │ │ ├── gridicons_heading_h1.h │ │ ├── gridicons_heading_h2.h │ │ ├── gridicons_heading_h4.h │ │ ├── gridicons_heart.h │ │ ├── gridicons_heart_outline.h │ │ ├── gridicons_help.h │ │ ├── gridicons_help_outline.h │ │ ├── gridicons_history.h │ │ ├── gridicons_house.h │ │ ├── gridicons_image.h │ │ ├── gridicons_image_multiple.h │ │ ├── gridicons_indent_left.h │ │ ├── gridicons_indent_right.h │ │ ├── gridicons_info.h │ │ ├── gridicons_info_outline.h │ │ ├── gridicons_ink.h │ │ ├── gridicons_institution.h │ │ ├── gridicons_italic.h │ │ ├── gridicons_layout.h │ │ ├── gridicons_layout_blocks.h │ │ ├── gridicons_link.h │ │ ├── gridicons_link_break.h │ │ ├── gridicons_list_checkmark.h │ │ ├── gridicons_list_unordered.h │ │ ├── gridicons_location.h │ │ ├── gridicons_lock.h │ │ ├── gridicons_mail.h │ │ ├── gridicons_mention.h │ │ ├── gridicons_menu.h │ │ ├── gridicons_menus.h │ │ ├── gridicons_microphone.h │ │ ├── gridicons_minus.h │ │ ├── gridicons_minus_small.h │ │ ├── gridicons_money.h │ │ ├── gridicons_nametag.h │ │ ├── gridicons_next_page.h │ │ ├── gridicons_not_visible.h │ │ ├── gridicons_notice.h │ │ ├── gridicons_notice_outline.h │ │ ├── gridicons_offline.h │ │ ├── gridicons_pages.h │ │ ├── gridicons_pause.h │ │ ├── gridicons_pencil.h │ │ ├── gridicons_phone.h │ │ ├── gridicons_play.h │ │ ├── gridicons_plugins.h │ │ ├── gridicons_plus.h │ │ ├── gridicons_plus_small.h │ │ ├── gridicons_popout.h │ │ ├── gridicons_posts.h │ │ ├── gridicons_print.h │ │ ├── gridicons_product.h │ │ ├── gridicons_product_downloadable.h │ │ ├── gridicons_product_external.h │ │ ├── gridicons_product_virtual.h │ │ ├── gridicons_read_more.h │ │ ├── gridicons_reader.h │ │ ├── gridicons_reader_follow.h │ │ ├── gridicons_reader_following.h │ │ ├── gridicons_reblog.h │ │ ├── gridicons_redo.h │ │ ├── gridicons_refresh.h │ │ ├── gridicons_reply.h │ │ ├── gridicons_resize.h │ │ ├── gridicons_rotate.h │ │ ├── gridicons_scheduled.h │ │ ├── gridicons_search.h │ │ ├── gridicons_share_computer.h │ │ ├── gridicons_share_ios.h │ │ ├── gridicons_shipping.h │ │ ├── gridicons_sign_out.h │ │ ├── gridicons_spam.h │ │ ├── gridicons_speaker.h │ │ ├── gridicons_star.h │ │ ├── gridicons_star_outline.h │ │ ├── gridicons_stats.h │ │ ├── gridicons_stats_alt.h │ │ ├── gridicons_status.h │ │ ├── gridicons_sync.h │ │ ├── gridicons_tablet.h │ │ ├── gridicons_tag.h │ │ ├── gridicons_text_color.h │ │ ├── gridicons_themes.h │ │ ├── gridicons_thumbs_up.h │ │ ├── gridicons_time.h │ │ ├── gridicons_trash.h │ │ ├── gridicons_trophy.h │ │ ├── gridicons_types.h │ │ ├── gridicons_underline.h │ │ ├── gridicons_undo.h │ │ ├── gridicons_user.h │ │ ├── gridicons_user_add.h │ │ ├── gridicons_user_circle.h │ │ ├── gridicons_video.h │ │ ├── gridicons_video_camera.h │ │ ├── gridicons_visible.h │ │ └── source │ │ ├── gridicons_add.bmp │ │ ├── gridicons_add.svg │ │ ├── gridicons_add_image.bmp │ │ ├── gridicons_add_image.svg │ │ ├── gridicons_add_outline.bmp │ │ ├── gridicons_add_outline.svg │ │ ├── gridicons_align_center.bmp │ │ ├── gridicons_align_center.svg │ │ ├── gridicons_align_image_center.bmp │ │ ├── gridicons_align_image_center.svg │ │ ├── gridicons_align_image_left.bmp │ │ ├── gridicons_align_image_left.svg │ │ ├── gridicons_align_image_none.bmp │ │ ├── gridicons_align_image_none.svg │ │ ├── gridicons_align_image_right.bmp │ │ ├── gridicons_align_image_right.svg │ │ ├── gridicons_align_justify.bmp │ │ ├── gridicons_align_justify.svg │ │ ├── gridicons_align_left.bmp │ │ ├── gridicons_align_left.svg │ │ ├── gridicons_align_right.bmp │ │ ├── gridicons_align_right.svg │ │ ├── gridicons_arrow_down.bmp │ │ ├── gridicons_arrow_down.svg │ │ ├── gridicons_arrow_left.bmp │ │ ├── gridicons_arrow_left.svg │ │ ├── gridicons_arrow_right.bmp │ │ ├── gridicons_arrow_right.svg │ │ ├── gridicons_arrow_up.bmp │ │ ├── gridicons_arrow_up.svg │ │ ├── gridicons_aside.bmp │ │ ├── gridicons_aside.svg │ │ ├── gridicons_attachment.bmp │ │ ├── gridicons_attachment.svg │ │ ├── gridicons_audio.bmp │ │ ├── gridicons_audio.svg │ │ ├── gridicons_bell.bmp │ │ ├── gridicons_bell.svg │ │ ├── gridicons_block.bmp │ │ ├── gridicons_block.svg │ │ ├── gridicons_bold.bmp │ │ ├── gridicons_bold.svg │ │ ├── gridicons_book.bmp │ │ ├── gridicons_book.svg │ │ ├── gridicons_bookmark.bmp │ │ ├── gridicons_bookmark.svg │ │ ├── gridicons_bookmark_outline.bmp │ │ ├── gridicons_bookmark_outline.svg │ │ ├── gridicons_briefcase.bmp │ │ ├── gridicons_briefcase.svg │ │ ├── gridicons_bug.bmp │ │ ├── gridicons_bug.svg │ │ ├── gridicons_calendar.bmp │ │ ├── gridicons_calendar.svg │ │ ├── gridicons_camera.bmp │ │ ├── gridicons_camera.svg │ │ ├── gridicons_caption.bmp │ │ ├── gridicons_caption.svg │ │ ├── gridicons_cart.bmp │ │ ├── gridicons_cart.svg │ │ ├── gridicons_chat.bmp │ │ ├── gridicons_chat.svg │ │ ├── gridicons_checkmark.bmp │ │ ├── gridicons_checkmark.svg │ │ ├── gridicons_checkmark_circle.bmp │ │ ├── gridicons_checkmark_circle.svg │ │ ├── gridicons_chevron_down.bmp │ │ ├── gridicons_chevron_down.svg │ │ ├── gridicons_chevron_left.bmp │ │ ├── gridicons_chevron_left.svg │ │ ├── gridicons_chevron_right.bmp │ │ ├── gridicons_chevron_right.svg │ │ ├── gridicons_chevron_up.bmp │ │ ├── gridicons_chevron_up.svg │ │ ├── gridicons_clear_formatting.bmp │ │ ├── gridicons_clear_formatting.svg │ │ ├── gridicons_clipboard.bmp │ │ ├── gridicons_clipboard.svg │ │ ├── gridicons_cloud.bmp │ │ ├── gridicons_cloud.svg │ │ ├── gridicons_cloud_download.bmp │ │ ├── gridicons_cloud_download.svg │ │ ├── gridicons_cloud_upload.bmp │ │ ├── gridicons_cloud_upload.svg │ │ ├── gridicons_code.bmp │ │ ├── gridicons_code.svg │ │ ├── gridicons_cog.bmp │ │ ├── gridicons_cog.svg │ │ ├── gridicons_comment.bmp │ │ ├── gridicons_comment.svg │ │ ├── gridicons_computer.bmp │ │ ├── gridicons_computer.svg │ │ ├── gridicons_create.bmp │ │ ├── gridicons_create.svg │ │ ├── gridicons_credit_card.bmp │ │ ├── gridicons_credit_card.svg │ │ ├── gridicons_crop.bmp │ │ ├── gridicons_crop.svg │ │ ├── gridicons_cross.bmp │ │ ├── gridicons_cross.svg │ │ ├── gridicons_cross_circle.bmp │ │ ├── gridicons_cross_circle.svg │ │ ├── gridicons_cross_small.bmp │ │ ├── gridicons_cross_small.svg │ │ ├── gridicons_custom_post_type.bmp │ │ ├── gridicons_custom_post_type.svg │ │ ├── gridicons_dropdown.bmp │ │ ├── gridicons_dropdown.svg │ │ ├── gridicons_ellipsis.bmp │ │ ├── gridicons_ellipsis.svg │ │ ├── gridicons_ellipsis_circle.bmp │ │ ├── gridicons_ellipsis_circle.svg │ │ ├── gridicons_external.bmp │ │ ├── gridicons_external.svg │ │ ├── gridicons_flag.bmp │ │ ├── gridicons_flag.svg │ │ ├── gridicons_flip_horizontal.bmp │ │ ├── gridicons_flip_horizontal.svg │ │ ├── gridicons_flip_vertical.bmp │ │ ├── gridicons_flip_vertical.svg │ │ ├── gridicons_folder.bmp │ │ ├── gridicons_folder.svg │ │ ├── gridicons_folder_multiple.bmp │ │ ├── gridicons_folder_multiple.svg │ │ ├── gridicons_fullscreen.bmp │ │ ├── gridicons_fullscreen.svg │ │ ├── gridicons_fullscreen_exit.bmp │ │ ├── gridicons_fullscreen_exit.svg │ │ ├── gridicons_globe.bmp │ │ ├── gridicons_globe.svg │ │ ├── gridicons_grid.bmp │ │ ├── gridicons_grid.svg │ │ ├── gridicons_heading.bmp │ │ ├── gridicons_heading.svg │ │ ├── gridicons_heading_h1.bmp │ │ ├── gridicons_heading_h1.svg │ │ ├── gridicons_heading_h2.bmp │ │ ├── gridicons_heading_h2.svg │ │ ├── gridicons_heading_h4.bmp │ │ ├── gridicons_heading_h4.svg │ │ ├── gridicons_heart.bmp │ │ ├── gridicons_heart.svg │ │ ├── gridicons_heart_outline.bmp │ │ ├── gridicons_heart_outline.svg │ │ ├── gridicons_help.bmp │ │ ├── gridicons_help.svg │ │ ├── gridicons_help_outline.bmp │ │ ├── gridicons_help_outline.svg │ │ ├── gridicons_history.bmp │ │ ├── gridicons_history.svg │ │ ├── gridicons_house.bmp │ │ ├── gridicons_house.svg │ │ ├── gridicons_image.bmp │ │ ├── gridicons_image.svg │ │ ├── gridicons_image_multiple.bmp │ │ ├── gridicons_image_multiple.svg │ │ ├── gridicons_indent_left.bmp │ │ ├── gridicons_indent_left.svg │ │ ├── gridicons_indent_right.bmp │ │ ├── gridicons_indent_right.svg │ │ ├── gridicons_info.bmp │ │ ├── gridicons_info.svg │ │ ├── gridicons_info_outline.bmp │ │ ├── gridicons_info_outline.svg │ │ ├── gridicons_ink.bmp │ │ ├── gridicons_ink.svg │ │ ├── gridicons_institution.bmp │ │ ├── gridicons_institution.svg │ │ ├── gridicons_italic.bmp │ │ ├── gridicons_italic.svg │ │ ├── gridicons_layout.bmp │ │ ├── gridicons_layout.svg │ │ ├── gridicons_layout_blocks.bmp │ │ ├── gridicons_layout_blocks.svg │ │ ├── gridicons_link.bmp │ │ ├── gridicons_link.svg │ │ ├── gridicons_link_break.bmp │ │ ├── gridicons_link_break.svg │ │ ├── gridicons_list_checkmark.bmp │ │ ├── gridicons_list_checkmark.svg │ │ ├── gridicons_list_unordered.bmp │ │ ├── gridicons_list_unordered.svg │ │ ├── gridicons_location.bmp │ │ ├── gridicons_location.svg │ │ ├── gridicons_lock.bmp │ │ ├── gridicons_lock.svg │ │ ├── gridicons_mail.bmp │ │ ├── gridicons_mail.svg │ │ ├── gridicons_mention.bmp │ │ ├── gridicons_mention.svg │ │ ├── gridicons_menu.bmp │ │ ├── gridicons_menu.svg │ │ ├── gridicons_menus.bmp │ │ ├── gridicons_menus.svg │ │ ├── gridicons_microphone.bmp │ │ ├── gridicons_microphone.svg │ │ ├── gridicons_minus.bmp │ │ ├── gridicons_minus.svg │ │ ├── gridicons_minus_small.bmp │ │ ├── gridicons_minus_small.svg │ │ ├── gridicons_money.bmp │ │ ├── gridicons_money.svg │ │ ├── gridicons_nametag.bmp │ │ ├── gridicons_nametag.svg │ │ ├── gridicons_next_page.bmp │ │ ├── gridicons_next_page.svg │ │ ├── gridicons_not_visible.bmp │ │ ├── gridicons_not_visible.svg │ │ ├── gridicons_notice.bmp │ │ ├── gridicons_notice.svg │ │ ├── gridicons_notice_outline.bmp │ │ ├── gridicons_notice_outline.svg │ │ ├── gridicons_offline.bmp │ │ ├── gridicons_offline.svg │ │ ├── gridicons_pages.bmp │ │ ├── gridicons_pages.svg │ │ ├── gridicons_pause.bmp │ │ ├── gridicons_pause.svg │ │ ├── gridicons_pencil.bmp │ │ ├── gridicons_pencil.svg │ │ ├── gridicons_phone.bmp │ │ ├── gridicons_phone.svg │ │ ├── gridicons_play.bmp │ │ ├── gridicons_play.svg │ │ ├── gridicons_plugins.bmp │ │ ├── gridicons_plugins.svg │ │ ├── gridicons_plus.bmp │ │ ├── gridicons_plus.svg │ │ ├── gridicons_plus_small.bmp │ │ ├── gridicons_plus_small.svg │ │ ├── gridicons_popout.bmp │ │ ├── gridicons_popout.svg │ │ ├── gridicons_posts.bmp │ │ ├── gridicons_posts.svg │ │ ├── gridicons_print.bmp │ │ ├── gridicons_print.svg │ │ ├── gridicons_product.bmp │ │ ├── gridicons_product.svg │ │ ├── gridicons_product_downloadable.bmp │ │ ├── gridicons_product_downloadable.svg │ │ ├── gridicons_product_external.bmp │ │ ├── gridicons_product_external.svg │ │ ├── gridicons_product_virtual.bmp │ │ ├── gridicons_product_virtual.svg │ │ ├── gridicons_read_more.bmp │ │ ├── gridicons_read_more.svg │ │ ├── gridicons_reader.bmp │ │ ├── gridicons_reader.svg │ │ ├── gridicons_reader_follow.bmp │ │ ├── gridicons_reader_follow.svg │ │ ├── gridicons_reader_following.bmp │ │ ├── gridicons_reader_following.svg │ │ ├── gridicons_reblog.bmp │ │ ├── gridicons_reblog.svg │ │ ├── gridicons_redo.bmp │ │ ├── gridicons_redo.svg │ │ ├── gridicons_refresh.bmp │ │ ├── gridicons_refresh.svg │ │ ├── gridicons_reply.bmp │ │ ├── gridicons_reply.svg │ │ ├── gridicons_resize.bmp │ │ ├── gridicons_resize.svg │ │ ├── gridicons_rotate.bmp │ │ ├── gridicons_rotate.svg │ │ ├── gridicons_scheduled.bmp │ │ ├── gridicons_scheduled.svg │ │ ├── gridicons_search.bmp │ │ ├── gridicons_search.svg │ │ ├── gridicons_share_computer.bmp │ │ ├── gridicons_share_computer.svg │ │ ├── gridicons_share_ios.bmp │ │ ├── gridicons_share_ios.svg │ │ ├── gridicons_shipping.bmp │ │ ├── gridicons_shipping.svg │ │ ├── gridicons_sign_out.bmp │ │ ├── gridicons_sign_out.svg │ │ ├── gridicons_spam.bmp │ │ ├── gridicons_spam.svg │ │ ├── gridicons_speaker.bmp │ │ ├── gridicons_speaker.svg │ │ ├── gridicons_star.bmp │ │ ├── gridicons_star.svg │ │ ├── gridicons_star_outline.bmp │ │ ├── gridicons_star_outline.svg │ │ ├── gridicons_stats.bmp │ │ ├── gridicons_stats.svg │ │ ├── gridicons_stats_alt.bmp │ │ ├── gridicons_stats_alt.svg │ │ ├── gridicons_status.bmp │ │ ├── gridicons_status.svg │ │ ├── gridicons_sync.bmp │ │ ├── gridicons_sync.svg │ │ ├── gridicons_tablet.bmp │ │ ├── gridicons_tablet.svg │ │ ├── gridicons_tag.bmp │ │ ├── gridicons_tag.svg │ │ ├── gridicons_text_color.bmp │ │ ├── gridicons_text_color.svg │ │ ├── gridicons_themes.bmp │ │ ├── gridicons_themes.svg │ │ ├── gridicons_thumbs_up.bmp │ │ ├── gridicons_thumbs_up.svg │ │ ├── gridicons_time.bmp │ │ ├── gridicons_time.svg │ │ ├── gridicons_trash.bmp │ │ ├── gridicons_trash.svg │ │ ├── gridicons_trophy.bmp │ │ ├── gridicons_trophy.svg │ │ ├── gridicons_types.bmp │ │ ├── gridicons_types.svg │ │ ├── gridicons_underline.bmp │ │ ├── gridicons_underline.svg │ │ ├── gridicons_undo.bmp │ │ ├── gridicons_undo.svg │ │ ├── gridicons_user.bmp │ │ ├── gridicons_user.svg │ │ ├── gridicons_user_add.bmp │ │ ├── gridicons_user_add.svg │ │ ├── gridicons_user_circle.bmp │ │ ├── gridicons_user_circle.svg │ │ ├── gridicons_video.bmp │ │ ├── gridicons_video.svg │ │ ├── gridicons_video_camera.bmp │ │ ├── gridicons_video_camera.svg │ │ ├── gridicons_visible.bmp │ │ └── gridicons_visible.svg ├── PubSubClient │ ├── 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 ├── Time │ ├── DateStrings.cpp │ ├── Readme.txt │ ├── Time.cpp │ ├── Time.h │ ├── TimeLib.h │ ├── examples │ │ ├── Processing │ │ │ └── SyncArduinoClock │ │ │ │ ├── SyncArduinoClock.pde │ │ │ │ └── readme.txt │ │ ├── TimeArduinoDue │ │ │ └── TimeArduinoDue.ino │ │ ├── TimeGPS │ │ │ └── TimeGPS.ino │ │ ├── TimeNTP │ │ │ └── TimeNTP.ino │ │ ├── TimeNTP_ESP8266WiFi │ │ │ └── TimeNTP_ESP8266WiFi.ino │ │ ├── TimeRTC │ │ │ └── TimeRTC.ino │ │ ├── TimeRTCLog │ │ │ └── TimeRTCLog.ino │ │ ├── TimeRTCSet │ │ │ └── TimeRTCSet.ino │ │ ├── TimeSerial │ │ │ └── TimeSerial.ino │ │ ├── TimeSerialDateStrings │ │ │ └── TimeSerialDateStrings.ino │ │ └── TimeTeensy3 │ │ │ └── TimeTeensy3.ino │ ├── keywords.txt │ ├── library.json │ └── library.properties ├── U8g2 │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── full_buffer │ │ │ ├── FPS │ │ │ │ └── FPS.ino │ │ │ ├── FontUsage │ │ │ │ └── FontUsage.ino │ │ │ ├── GraphicsTest │ │ │ │ └── GraphicsTest.ino │ │ │ ├── HelloWorld │ │ │ │ └── HelloWorld.ino │ │ │ ├── IconMenu │ │ │ │ └── IconMenu.ino │ │ │ ├── PrintUTF8 │ │ │ │ └── PrintUTF8.ino │ │ │ ├── ScreenShot │ │ │ │ └── ScreenShot.ino │ │ │ ├── SelectionList │ │ │ │ └── SelectionList.ino │ │ │ ├── Shennong │ │ │ │ └── Shennong.ino │ │ │ ├── U8g2Logo │ │ │ │ └── U8g2Logo.ino │ │ │ ├── UpdateArea │ │ │ │ └── UpdateArea.ino │ │ │ └── Weather │ │ │ │ └── Weather.ino │ │ ├── games │ │ │ ├── LittleRookChess │ │ │ │ └── LittleRookChess.ino │ │ │ └── SpaceTrash │ │ │ │ └── SpaceTrash.ino │ │ ├── page_buffer │ │ │ ├── A2Printer │ │ │ │ └── A2Printer.ino │ │ │ ├── Chinese │ │ │ │ └── Chinese.ino │ │ │ ├── ClipWindow │ │ │ │ └── ClipWindow.ino │ │ │ ├── Clock │ │ │ │ └── Clock.ino │ │ │ ├── ContrastTest │ │ │ │ └── ContrastTest.ino │ │ │ ├── Devanagari │ │ │ │ └── Devanagari.ino │ │ │ ├── DirectAccess │ │ │ │ └── DirectAccess.ino │ │ │ ├── DrawLog │ │ │ │ └── DrawLog.ino │ │ │ ├── ExtUTF8 │ │ │ │ └── ExtUTF8.ino │ │ │ ├── FPS │ │ │ │ └── FPS.ino │ │ │ ├── FlipMode │ │ │ │ └── FlipMode.ino │ │ │ ├── GraphicsTest │ │ │ │ └── GraphicsTest.ino │ │ │ ├── HelloWorld │ │ │ │ └── HelloWorld.ino │ │ │ ├── IconMenu │ │ │ │ └── IconMenu.ino │ │ │ ├── Japanese │ │ │ │ └── Japanese.ino │ │ │ ├── Korean │ │ │ │ └── Korean.ino │ │ │ ├── LoadFromSD │ │ │ │ └── LoadFromSD.ino │ │ │ ├── PowerSaveTest │ │ │ │ └── PowerSaveTest.ino │ │ │ ├── PrintHelloWorld │ │ │ │ └── PrintHelloWorld.ino │ │ │ ├── PrintProgmem │ │ │ │ └── PrintProgmem.ino │ │ │ ├── PrintUTF8 │ │ │ │ └── PrintUTF8.ino │ │ │ ├── ScrollingText │ │ │ │ └── ScrollingText.ino │ │ │ ├── SelectionList │ │ │ │ └── SelectionList.ino │ │ │ ├── Serial │ │ │ │ └── Serial.ino │ │ │ ├── Shennong │ │ │ │ └── Shennong.ino │ │ │ ├── StateBufferLoop │ │ │ │ └── StateBufferLoop.ino │ │ │ ├── Terminal │ │ │ │ └── Terminal.ino │ │ │ ├── U8g2Logo │ │ │ │ └── U8g2Logo.ino │ │ │ ├── UpdatePartly │ │ │ │ └── UpdatePartly.ino │ │ │ ├── Weather │ │ │ │ └── Weather.ino │ │ │ ├── XBM │ │ │ │ └── XBM.ino │ │ │ └── XORTest │ │ │ │ └── XORTest.ino │ │ └── u8x8 │ │ │ ├── 16x16Font │ │ │ └── 16x16Font.ino │ │ │ ├── ArduboyTest │ │ │ └── ArduboyTest.ino │ │ │ ├── FlipMode │ │ │ └── FlipMode.ino │ │ │ ├── GraphicsTest │ │ │ └── GraphicsTest.ino │ │ │ ├── HelloWorld │ │ │ └── HelloWorld.ino │ │ │ ├── MessageBox │ │ │ └── MessageBox.ino │ │ │ └── Terminal │ │ │ └── Terminal.ino │ ├── extras │ │ └── ChangeLog │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── U8g2lib.cpp │ │ ├── U8g2lib.h │ │ ├── U8x8lib.cpp │ │ ├── U8x8lib.h │ │ └── clib │ │ ├── u8g2.h │ │ ├── u8g2_bitmap.c │ │ ├── u8g2_box.c │ │ ├── u8g2_buffer.c │ │ ├── u8g2_circle.c │ │ ├── u8g2_cleardisplay.c │ │ ├── u8g2_d_memory.c │ │ ├── u8g2_d_setup.c │ │ ├── u8g2_font.c │ │ ├── u8g2_fonts.c │ │ ├── u8g2_hvline.c │ │ ├── u8g2_input_value.c │ │ ├── u8g2_intersection.c │ │ ├── u8g2_kerning.c │ │ ├── u8g2_line.c │ │ ├── u8g2_ll_hvline.c │ │ ├── u8g2_message.c │ │ ├── u8g2_polygon.c │ │ ├── u8g2_selection_list.c │ │ ├── u8g2_setup.c │ │ ├── u8log.c │ │ ├── u8log_u8g2.c │ │ ├── u8log_u8x8.c │ │ ├── u8x8.h │ │ ├── u8x8_8x8.c │ │ ├── u8x8_byte.c │ │ ├── u8x8_cad.c │ │ ├── u8x8_capture.c │ │ ├── u8x8_d_a2printer.c │ │ ├── u8x8_d_il3820_296x128.c │ │ ├── u8x8_d_ist3020.c │ │ ├── u8x8_d_ist7920.c │ │ ├── u8x8_d_ks0108.c │ │ ├── u8x8_d_lc7981.c │ │ ├── u8x8_d_ld7032_60x32.c │ │ ├── u8x8_d_ls013b7dh03.c │ │ ├── u8x8_d_max7219.c │ │ ├── u8x8_d_pcd8544_84x48.c │ │ ├── u8x8_d_pcf8812.c │ │ ├── u8x8_d_pcf8814_hx1230.c │ │ ├── u8x8_d_sbn1661.c │ │ ├── u8x8_d_sed1330.c │ │ ├── u8x8_d_sh1106_64x32.c │ │ ├── u8x8_d_sh1106_72x40.c │ │ ├── u8x8_d_sh1107.c │ │ ├── u8x8_d_sh1108.c │ │ ├── u8x8_d_sh1122.c │ │ ├── u8x8_d_ssd1305.c │ │ ├── u8x8_d_ssd1306_128x32.c │ │ ├── u8x8_d_ssd1306_128x64_noname.c │ │ ├── u8x8_d_ssd1306_48x64.c │ │ ├── u8x8_d_ssd1306_64x32.c │ │ ├── u8x8_d_ssd1306_64x48.c │ │ ├── u8x8_d_ssd1306_72x40.c │ │ ├── u8x8_d_ssd1306_96x16.c │ │ ├── u8x8_d_ssd1309.c │ │ ├── u8x8_d_ssd1316.c │ │ ├── u8x8_d_ssd1317.c │ │ ├── u8x8_d_ssd1318.c │ │ ├── u8x8_d_ssd1322.c │ │ ├── u8x8_d_ssd1325.c │ │ ├── u8x8_d_ssd1326.c │ │ ├── u8x8_d_ssd1327.c │ │ ├── u8x8_d_ssd1329.c │ │ ├── u8x8_d_ssd1606_172x72.c │ │ ├── u8x8_d_ssd1607_200x200.c │ │ ├── u8x8_d_st7511.c │ │ ├── u8x8_d_st75256.c │ │ ├── u8x8_d_st7528.c │ │ ├── u8x8_d_st75320.c │ │ ├── u8x8_d_st7565.c │ │ ├── u8x8_d_st7567.c │ │ ├── u8x8_d_st7586s_erc240160.c │ │ ├── u8x8_d_st7586s_s028hn118a.c │ │ ├── u8x8_d_st7588.c │ │ ├── u8x8_d_st7920.c │ │ ├── u8x8_d_t6963.c │ │ ├── u8x8_d_uc1601.c │ │ ├── u8x8_d_uc1604.c │ │ ├── u8x8_d_uc1608.c │ │ ├── u8x8_d_uc1610.c │ │ ├── u8x8_d_uc1611.c │ │ ├── u8x8_d_uc1617.c │ │ ├── u8x8_d_uc1638.c │ │ ├── u8x8_d_uc1701_dogs102.c │ │ ├── u8x8_d_uc1701_mini12864.c │ │ ├── u8x8_debounce.c │ │ ├── u8x8_display.c │ │ ├── u8x8_fonts.c │ │ ├── u8x8_gpio.c │ │ ├── u8x8_input_value.c │ │ ├── u8x8_message.c │ │ ├── u8x8_selection_list.c │ │ ├── u8x8_setup.c │ │ ├── u8x8_string.c │ │ ├── u8x8_u16toa.c │ │ └── u8x8_u8toa.c └── U8g2_for_Adafruit_GFX │ ├── LICENSE │ ├── README.md │ ├── examples │ ├── Boxed_Text_Adafruit_SSD1306 │ │ └── Boxed_Text_Adafruit_SSD1306.ino │ ├── Hello_Adafruit_ILI9341 │ │ └── Hello_Adafruit_ILI9341.c │ ├── Hello_Adafruit_SSD1306 │ │ └── Hello_Adafruit_SSD1306.ino │ ├── Shennong │ │ └── Shennong.ino │ ├── Shennong_IL9341 │ │ └── Shennong_IL9341.ino │ └── Unicode_Adafruit_SSD1306 │ │ └── Unicode_Adafruit_SSD1306.ino │ ├── extras │ ├── ChangeLog │ └── develop.txt │ ├── keywords.txt │ ├── library.properties │ └── src │ ├── U8g2_for_Adafruit_GFX.cpp │ ├── U8g2_for_Adafruit_GFX.h │ ├── u8g2_fonts.c │ └── u8g2_fonts.h ├── schematic ├── T5_V1.2.pdf ├── T5_V2.0.pdf ├── T5_V2.1.2.pdf ├── T5_V2.2.pdf ├── T5_V2.3.pdf └── T5_V2.4.pdf ├── src ├── Arduino │ ├── T5-Ink-2-3 │ │ ├── T5-Ink-2-3.ino │ │ ├── battery_func.h │ │ ├── bme_func.h │ │ ├── board_def.h │ │ ├── button_func.h │ │ ├── config.h │ │ ├── data │ │ │ ├── avatar.bmp │ │ │ ├── css │ │ │ │ └── main.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jquery.min.js │ │ │ │ └── tbdValidate.js │ │ │ └── qr.bmp │ │ ├── esp_power_func.h │ │ ├── func.h │ │ ├── image.h │ │ ├── ink_func.h │ │ ├── mqtt_func.h │ │ ├── notice_func.h │ │ ├── ntp_func.h │ │ ├── other_func.h │ │ ├── page_func.h │ │ ├── text.h │ │ ├── timer_func.h │ │ └── wifi_func.h │ └── T5-Ink │ │ ├── T5-Ink.ino │ │ ├── battery_func.h │ │ ├── bme_func.h │ │ ├── board_def.h │ │ ├── button_func.h │ │ ├── config.h │ │ ├── data │ │ ├── avatar.bmp │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.min.js │ │ │ └── tbdValidate.js │ │ └── qr.bmp │ │ ├── esp_power_func.h │ │ ├── func.h │ │ ├── image.h │ │ ├── ink_func.h │ │ ├── mqtt_func.h │ │ ├── notice_func.h │ │ ├── ntp_func.h │ │ ├── other_func.h │ │ ├── page_func.h │ │ ├── text.h │ │ ├── timer_func.h │ │ └── wifi_func.h └── Server │ ├── Eink.py │ ├── Eink.service │ ├── config.py │ ├── dic.py │ └── requirements.txt └── tool └── PCtoLCD2002 ├── ASC.PTL ├── Gb2312.PTL ├── PCtoLCD2002.INI ├── PCtoLCD2002完美版下载 _汉字字模生成软件 - pc6下载站.url ├── RTL60.BPL ├── VCL60.BPL ├── _index.TXT ├── notice.txt └── readme2002.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/README.md -------------------------------------------------------------------------------- /STL 3D model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/STL 3D model/README.md -------------------------------------------------------------------------------- /STL 3D model/T5-ink v2.2 b.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/STL 3D model/T5-ink v2.2 b.STL -------------------------------------------------------------------------------- /STL 3D model/T5-ink v2.2 t.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/STL 3D model/T5-ink v2.2 t.STL -------------------------------------------------------------------------------- /STL 3D model/T5-ink v2.2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/STL 3D model/T5-ink v2.2.STL -------------------------------------------------------------------------------- /STL 3D model/T5-ink v2.3 a.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/STL 3D model/T5-ink v2.3 a.STL -------------------------------------------------------------------------------- /STL 3D model/T5-ink v2.3 b.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/STL 3D model/T5-ink v2.3 b.STL -------------------------------------------------------------------------------- /STL 3D model/T5-ink v2.3 t.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/STL 3D model/T5-ink v2.3 t.STL -------------------------------------------------------------------------------- /image/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/image/.DS_Store -------------------------------------------------------------------------------- /image/bilibili1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/image/bilibili1.png -------------------------------------------------------------------------------- /image/bilibili2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/image/bilibili2.JPG -------------------------------------------------------------------------------- /image/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/image/image.png -------------------------------------------------------------------------------- /image/infopage.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/image/infopage.JPG -------------------------------------------------------------------------------- /image/mainpage.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/image/mainpage.JPG -------------------------------------------------------------------------------- /image/notepage.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/image/notepage.JPG -------------------------------------------------------------------------------- /lib/Adafruit_BME280_Library/Adafruit_BME280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME280_Library/Adafruit_BME280.cpp -------------------------------------------------------------------------------- /lib/Adafruit_BME280_Library/Adafruit_BME280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME280_Library/Adafruit_BME280.h -------------------------------------------------------------------------------- /lib/Adafruit_BME280_Library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME280_Library/LICENSE -------------------------------------------------------------------------------- /lib/Adafruit_BME280_Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME280_Library/README.md -------------------------------------------------------------------------------- /lib/Adafruit_BME280_Library/assets/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME280_Library/assets/board.jpg -------------------------------------------------------------------------------- /lib/Adafruit_BME280_Library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME280_Library/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_BME680_Library/Adafruit_BME680.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME680_Library/Adafruit_BME680.cpp -------------------------------------------------------------------------------- /lib/Adafruit_BME680_Library/Adafruit_BME680.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME680_Library/Adafruit_BME680.h -------------------------------------------------------------------------------- /lib/Adafruit_BME680_Library/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME680_Library/Doxyfile -------------------------------------------------------------------------------- /lib/Adafruit_BME680_Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME680_Library/README.md -------------------------------------------------------------------------------- /lib/Adafruit_BME680_Library/bme680.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME680_Library/bme680.c -------------------------------------------------------------------------------- /lib/Adafruit_BME680_Library/bme680.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME680_Library/bme680.h -------------------------------------------------------------------------------- /lib/Adafruit_BME680_Library/bme680_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME680_Library/bme680_defs.h -------------------------------------------------------------------------------- /lib/Adafruit_BME680_Library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_BME680_Library/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Adafruit_GFX.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Adafruit_SPITFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Adafruit_SPITFT.cpp -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Adafruit_SPITFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Adafruit_SPITFT.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/FreeMono12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/FreeMono18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/FreeMono24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/FreeMono9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/FreeSans12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/FreeSans18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/FreeSans24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/FreeSans9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/Org_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/Org_01.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/Picopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/Picopixel.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/Tiny3x3a2pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/Tiny3x3a2pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/TomThumb.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/UserFont24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/UserFont24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/Fonts/simsun14pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/Fonts/simsun14pt.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/README.md -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/fontconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/fontconvert/Makefile -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/gfxfont.h -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/glcdfont.c -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_GFX_Library/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Adafruit_GFX_Library/license.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/ArduinoJson.h -------------------------------------------------------------------------------- /lib/ArduinoJson/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/CHANGELOG.md -------------------------------------------------------------------------------- /lib/ArduinoJson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/ArduinoJson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/LICENSE.md -------------------------------------------------------------------------------- /lib/ArduinoJson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/README.md -------------------------------------------------------------------------------- /lib/ArduinoJson/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/SUPPORT.md -------------------------------------------------------------------------------- /lib/ArduinoJson/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/appveyor.yml -------------------------------------------------------------------------------- /lib/ArduinoJson/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/banner.svg -------------------------------------------------------------------------------- /lib/ArduinoJson/fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/fuzzing/Makefile -------------------------------------------------------------------------------- /lib/ArduinoJson/fuzzing/fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/fuzzing/fuzzer.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/fuzzing/my_corpus/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /lib/ArduinoJson/fuzzing/seed_corpus/EmptyArray.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/ArduinoJson/fuzzing/seed_corpus/EmptyObject.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /lib/ArduinoJson/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/keywords.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/library.json -------------------------------------------------------------------------------- /lib/ArduinoJson/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/library.properties -------------------------------------------------------------------------------- /lib/ArduinoJson/scripts/build-single-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/scripts/build-single-header.sh -------------------------------------------------------------------------------- /lib/ArduinoJson/scripts/create-build-envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/scripts/create-build-envs.sh -------------------------------------------------------------------------------- /lib/ArduinoJson/scripts/oss-fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | /.vagrant/ 2 | *.log 3 | -------------------------------------------------------------------------------- /lib/ArduinoJson/scripts/oss-fuzz/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/scripts/oss-fuzz/Vagrantfile -------------------------------------------------------------------------------- /lib/ArduinoJson/scripts/travis/arduino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/scripts/travis/arduino.sh -------------------------------------------------------------------------------- /lib/ArduinoJson/scripts/travis/cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/scripts/travis/cmake.sh -------------------------------------------------------------------------------- /lib/ArduinoJson/scripts/travis/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/scripts/travis/coverage.sh -------------------------------------------------------------------------------- /lib/ArduinoJson/scripts/travis/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/scripts/travis/fuzz.sh -------------------------------------------------------------------------------- /lib/ArduinoJson/scripts/travis/platformio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/scripts/travis/platformio.sh -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson.h -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Data/List.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson/Data/List.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/JsonArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson/JsonArray.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/JsonBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson/JsonBuffer.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/JsonObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson/JsonObject.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/JsonPair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson/JsonPair.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/JsonVariant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson/JsonVariant.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/RawJson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson/RawJson.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/src/ArduinoJson/version.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/test/DynamicJsonBuffer/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/DynamicJsonBuffer/size.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/add.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/basics.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/copyFrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/copyFrom.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/copyTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/copyTo.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/invalid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/invalid.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/iterator.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/printTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/printTo.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/remove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/remove.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/set.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/size.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonArray/subscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonArray/subscript.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonBuffer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonBuffer/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonBuffer/nested.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonBuffer/nested.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonBuffer/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonBuffer/parse.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonBuffer/parseArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonBuffer/parseArray.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonBuffer/parseObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonBuffer/parseObject.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/basics.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/containsKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/containsKey.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/get.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/invalid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/invalid.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/iterator.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/printTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/printTo.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/remove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/remove.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/set.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/size.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonObject/subscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonObject/subscript.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/as.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/compare.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/copy.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/is.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/is.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/or.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/or.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/printTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/printTo.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/set_get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/set_get.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/subscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/subscript.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/success.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/success.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonVariant/undefined.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonVariant/undefined.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonWriter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonWriter/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonWriter/writeFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonWriter/writeFloat.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/JsonWriter/writeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/JsonWriter/writeString.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/FloatParts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/FloatParts.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/StringBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/StringBuilder.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/StringTraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/StringTraits.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/TypeTraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/TypeTraits.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/deprecated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/deprecated.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/empty.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/std_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/std_stream.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/std_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/std_string.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/unsigned_char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/unsigned_char.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/version.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Misc/vla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Misc/vla.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Polyfills/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Polyfills/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Polyfills/isFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Polyfills/isFloat.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Polyfills/isInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Polyfills/isInteger.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Polyfills/parseFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Polyfills/parseFloat.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/Polyfills/parseInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/Polyfills/parseInteger.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/StaticJsonBuffer/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/StaticJsonBuffer/alloc.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/test/StaticJsonBuffer/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/test/StaticJsonBuffer/size.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/third-party/catch/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/third-party/catch/catch.cpp -------------------------------------------------------------------------------- /lib/ArduinoJson/third-party/catch/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ArduinoJson/third-party/catch/catch.hpp -------------------------------------------------------------------------------- /lib/Button2/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /lib/Button2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Button2/LICENSE -------------------------------------------------------------------------------- /lib/Button2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Button2/README.md -------------------------------------------------------------------------------- /lib/Button2/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Button2/keywords.txt -------------------------------------------------------------------------------- /lib/Button2/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Button2/library.properties -------------------------------------------------------------------------------- /lib/Button2/src/Button2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Button2/src/Button2.cpp -------------------------------------------------------------------------------- /lib/Button2/src/Button2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Button2/src/Button2.h -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/.github/scripts/on-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/.github/scripts/on-push.sh -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/.github/stale.yml -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/.github/workflows/push.yml -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/.library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/.library.json -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/.travis.yml -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/LICENSE.txt -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/README.md -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/examples/SyncClient/.esp31b.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/library.json -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/library.properties -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/AsyncPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/AsyncPrinter.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/AsyncPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/AsyncPrinter.h -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/DebugPrintMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/DebugPrintMacros.h -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/ESPAsyncTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/ESPAsyncTCP.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/ESPAsyncTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/ESPAsyncTCP.h -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/ESPAsyncTCPbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/ESPAsyncTCPbuffer.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/ESPAsyncTCPbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/ESPAsyncTCPbuffer.h -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/SyncClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/SyncClient.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/SyncClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/SyncClient.h -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/async_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/async_config.h -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/tcp_axtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/tcp_axtls.c -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/src/tcp_axtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/src/tcp_axtls.h -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/ssl/gen_server_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/ssl/gen_server_cert.sh -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/ssl/server.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/ssl/server.cer -------------------------------------------------------------------------------- /lib/ESPAsyncTCP/ssl/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsyncTCP/ssl/server.key -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/.github/stale.yml -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/.library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/.library.json -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/.travis.yml -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/README.md -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/_config.yml -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/component.mk -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/examples/ESP_AsyncFSBrowser/data/.exclude.files: -------------------------------------------------------------------------------- 1 | /*.js.gz 2 | /.exclude.files 3 | -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/keywords.txt -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/library.json -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/library.properties -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/AsyncEventSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/AsyncEventSource.cpp -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/AsyncEventSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/AsyncEventSource.h -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/AsyncJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/AsyncJson.h -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/AsyncWebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/AsyncWebSocket.cpp -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/AsyncWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/AsyncWebSocket.h -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/ESPAsyncWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/ESPAsyncWebServer.h -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/SPIFFSEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/SPIFFSEditor.cpp -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/SPIFFSEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/SPIFFSEditor.h -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/StringArray.h -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/WebAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/WebAuthentication.h -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/WebHandlerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/WebHandlerImpl.h -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/WebHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/WebHandlers.cpp -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/WebRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/WebRequest.cpp -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/WebResponseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/WebResponseImpl.h -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/WebResponses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/WebResponses.cpp -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/WebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/WebServer.cpp -------------------------------------------------------------------------------- /lib/ESPAsync_WebServer/src/edit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/ESPAsync_WebServer/src/edit.htm -------------------------------------------------------------------------------- /lib/GxEPD/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/GxEPD/ConnectingHardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/ConnectingHardware.md -------------------------------------------------------------------------------- /lib/GxEPD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/LICENSE -------------------------------------------------------------------------------- /lib/GxEPD/MyEPDs_UpdateInfos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/MyEPDs_UpdateInfos.pdf -------------------------------------------------------------------------------- /lib/GxEPD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/README.md -------------------------------------------------------------------------------- /lib/GxEPD/examples/GxEPD_Example/IMG_0001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/examples/GxEPD_Example/IMG_0001.h -------------------------------------------------------------------------------- /lib/GxEPD/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/issue_template.md -------------------------------------------------------------------------------- /lib/GxEPD/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/library.properties -------------------------------------------------------------------------------- /lib/GxEPD/src/GxEPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxEPD.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxEPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxEPD.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxFont_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxFont_GFX.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxFont_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxFont_GFX.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDE0213B1/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDE0213B1/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDE0213B1/GxGDE0213B1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDE0213B1/GxGDE0213B1.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDE0213B1/GxGDE0213B1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDE0213B1/GxGDE0213B1.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDE0213B72/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDE0213B72/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDE0213B72/GxGDE0213B72.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDE0213B72/GxGDE0213B72.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDE0213B72/GxGDE0213B72.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDE0213B72/GxGDE0213B72.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDE0213B72B/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDE0213B72B/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDE0213B72B/GxGDE0213B72B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDE0213B72B/GxGDE0213B72B.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDE0213B72B/GxGDE0213B72B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDE0213B72B/GxGDE0213B72B.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEH0213B72/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEH0213B72/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEH0213B72/GxGDEH0213B72.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEH0213B72/GxGDEH0213B72.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEH0213B72/GxGDEH0213B72.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEH0213B72/GxGDEH0213B72.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEH0213B73/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEH0213B73/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEH0213B73/GxGDEH0213B73.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEH0213B73/GxGDEH0213B73.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEH0213B73/GxGDEH0213B73.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEH0213B73/GxGDEH0213B73.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEH029A1/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEH029A1/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEH029A1/GxGDEH029A1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEH029A1/GxGDEH029A1.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEH029A1/GxGDEH029A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEH029A1/GxGDEH029A1.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEP015OC1/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEP015OC1/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEP015OC1/GxGDEP015OC1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEP015OC1/GxGDEP015OC1.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEP015OC1/GxGDEP015OC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEP015OC1/GxGDEP015OC1.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0102I4F/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0102I4F/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0102I4F/GxGDEW0102I4F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0102I4F/GxGDEW0102I4F.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0102I4F/GxGDEW0102I4F.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0102I4F/GxGDEW0102I4F.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0154Z04/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0154Z04/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0154Z04/BitmapWaveshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0154Z04/BitmapWaveshare.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0154Z04/GxGDEW0154Z04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0154Z04/GxGDEW0154Z04.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0154Z04/GxGDEW0154Z04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0154Z04/GxGDEW0154Z04.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0154Z17/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0154Z17/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0154Z17/GxGDEW0154Z17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0154Z17/GxGDEW0154Z17.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0154Z17/GxGDEW0154Z17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0154Z17/GxGDEW0154Z17.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0213I5F/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0213I5F/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0213I5F/BitmapWaveshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0213I5F/BitmapWaveshare.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0213I5F/GxGDEW0213I5F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0213I5F/GxGDEW0213I5F.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0213I5F/GxGDEW0213I5F.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0213I5F/GxGDEW0213I5F.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0213Z16/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0213Z16/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0213Z16/BitmapWaveshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0213Z16/BitmapWaveshare.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0213Z16/GxGDEW0213Z16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0213Z16/GxGDEW0213Z16.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0213Z16/GxGDEW0213Z16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0213Z16/GxGDEW0213Z16.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW027C44/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW027C44/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW027C44/GxGDEW027C44.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW027C44/GxGDEW027C44.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW027C44/GxGDEW027C44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW027C44/GxGDEW027C44.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW027W3/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW027W3/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW027W3/BitmapWaveshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW027W3/BitmapWaveshare.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW027W3/GxGDEW027W3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW027W3/GxGDEW027W3.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW027W3/GxGDEW027W3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW027W3/GxGDEW027W3.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW029T5/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW029T5/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW029T5/BitmapWaveshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW029T5/BitmapWaveshare.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW029T5/GxGDEW029T5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW029T5/GxGDEW029T5.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW029T5/GxGDEW029T5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW029T5/GxGDEW029T5.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW029Z10/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW029Z10/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW029Z10/BitmapWaveshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW029Z10/BitmapWaveshare.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW029Z10/GxGDEW029Z10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW029Z10/GxGDEW029Z10.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW029Z10/GxGDEW029Z10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW029Z10/GxGDEW029Z10.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW042T2/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW042T2/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW042T2/GxGDEW042T2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW042T2/GxGDEW042T2.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW042T2/GxGDEW042T2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW042T2/GxGDEW042T2.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW042Z15/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW042Z15/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW042Z15/BitmapWaveshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW042Z15/BitmapWaveshare.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW042Z15/GxGDEW042Z15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW042Z15/GxGDEW042Z15.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW042Z15/GxGDEW042Z15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW042Z15/GxGDEW042Z15.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0583T7/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0583T7/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0583T7/GxGDEW0583T7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0583T7/GxGDEW0583T7.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW0583T7/GxGDEW0583T7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW0583T7/GxGDEW0583T7.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW075T8/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW075T8/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW075T8/GxGDEW075T8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW075T8/GxGDEW075T8.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW075T8/GxGDEW075T8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW075T8/GxGDEW075T8.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW075Z09/BitmapExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW075Z09/BitmapExamples.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW075Z09/BitmapPicture_3C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW075Z09/BitmapPicture_3C.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW075Z09/GxGDEW075Z09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW075Z09/GxGDEW075Z09.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxGDEW075Z09/GxGDEW075Z09.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxGDEW075Z09/GxGDEW075Z09.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxIO/GxIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxIO/GxIO.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxIO/GxIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxIO/GxIO.h -------------------------------------------------------------------------------- /lib/GxEPD/src/GxIO/GxIO_SPI/GxIO_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxIO/GxIO_SPI/GxIO_SPI.cpp -------------------------------------------------------------------------------- /lib/GxEPD/src/GxIO/GxIO_SPI/GxIO_SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/GxIO/GxIO_SPI/GxIO_SPI.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_add.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_add_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_add_image.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_add_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_add_outline.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_align_center.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_align_center.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_align_justify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_align_justify.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_align_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_align_left.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_align_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_align_right.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_arrow_down.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_arrow_down.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_arrow_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_arrow_left.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_arrow_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_arrow_right.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_arrow_up.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_arrow_up.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_aside.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_aside.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_attachment.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_audio.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_bell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_bell.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_block.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_bold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_bold.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_book.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_bookmark.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_briefcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_briefcase.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_bug.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_calendar.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_camera.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_caption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_caption.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_cart.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_chat.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_checkmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_checkmark.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_chevron_down.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_chevron_down.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_chevron_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_chevron_left.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_chevron_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_chevron_right.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_chevron_up.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_chevron_up.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_clipboard.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_cloud.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_cloud_download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_cloud_download.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_cloud_upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_cloud_upload.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_code.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_cog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_cog.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_comment.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_computer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_computer.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_create.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_credit_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_credit_card.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_crop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_crop.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_cross.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_cross_circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_cross_circle.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_cross_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_cross_small.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_dropdown.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_ellipsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_ellipsis.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_external.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_flag.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_flip_vertical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_flip_vertical.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_folder.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_fullscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_fullscreen.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_globe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_globe.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_grid.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_heading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_heading.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_heading_h1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_heading_h1.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_heading_h2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_heading_h2.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_heading_h4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_heading_h4.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_heart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_heart.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_heart_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_heart_outline.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_help.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_help_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_help_outline.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_history.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_house.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_house.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_image.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_image_multiple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_image_multiple.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_indent_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_indent_left.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_indent_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_indent_right.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_info.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_info_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_info_outline.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_ink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_ink.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_institution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_institution.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_italic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_italic.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_layout.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_layout_blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_layout_blocks.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_link.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_link_break.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_link_break.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_list_checkmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_list_checkmark.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_list_unordered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_list_unordered.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_location.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_lock.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_mail.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_mention.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_mention.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_menu.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_menus.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_microphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_microphone.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_minus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_minus.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_minus_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_minus_small.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_money.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_money.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_nametag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_nametag.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_next_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_next_page.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_not_visible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_not_visible.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_notice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_notice.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_notice_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_notice_outline.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_offline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_offline.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_pages.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_pause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_pause.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_pencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_pencil.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_phone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_phone.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_play.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_plugins.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_plus.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_plus_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_plus_small.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_popout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_popout.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_posts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_posts.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_print.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_product.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_read_more.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_read_more.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_reader.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_reader_follow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_reader_follow.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_reblog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_reblog.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_redo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_redo.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_refresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_refresh.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_reply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_reply.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_resize.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_rotate.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_scheduled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_scheduled.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_search.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_share_computer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_share_computer.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_share_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_share_ios.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_shipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_shipping.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_sign_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_sign_out.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_spam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_spam.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_speaker.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_star.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_star.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_star_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_star_outline.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_stats.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_stats_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_stats_alt.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_status.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_sync.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_tablet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_tablet.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_tag.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_text_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_text_color.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_themes.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_thumbs_up.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_thumbs_up.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_time.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_trash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_trash.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_trophy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_trophy.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_types.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_underline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_underline.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_undo.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_user.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_user_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_user_add.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_user_circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_user_circle.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_video.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_video_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_video_camera.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/gridicons_visible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/gridicons_visible.h -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_add.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_add.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_add.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_aside.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_aside.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_aside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_aside.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_audio.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_audio.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_audio.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_bell.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_bell.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_bell.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_block.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_block.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_block.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_bold.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_bold.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_bold.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_book.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_book.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_book.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_bug.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_bug.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_bug.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_cart.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_cart.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_cart.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_chat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_chat.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_chat.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_cloud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_cloud.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_cloud.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_code.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_code.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_code.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_cog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_cog.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_cog.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_crop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_crop.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_crop.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_cross.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_cross.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_cross.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_flag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_flag.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_flag.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_globe.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_globe.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_globe.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_grid.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_grid.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_grid.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_heart.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_heart.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_heart.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_help.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_help.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_house.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_house.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_house.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_image.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_image.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_image.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_info.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_info.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_info.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_ink.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_ink.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_ink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_ink.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_link.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_link.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_link.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_lock.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_lock.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_lock.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_mail.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_mail.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_mail.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_menu.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_menu.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_menu.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_menus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_menus.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_menus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_menus.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_minus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_minus.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_minus.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_money.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_money.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_money.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_pages.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_pages.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_pages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_pages.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_pause.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_pause.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_pause.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_phone.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_phone.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_phone.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_play.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_play.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_play.svg -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_plus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_plus.bmp -------------------------------------------------------------------------------- /lib/GxEPD/src/imglib/source/gridicons_plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/GxEPD/src/imglib/source/gridicons_plus.svg -------------------------------------------------------------------------------- /lib/PubSubClient/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/CHANGES.txt -------------------------------------------------------------------------------- /lib/PubSubClient/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/LICENSE.txt -------------------------------------------------------------------------------- /lib/PubSubClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/README.md -------------------------------------------------------------------------------- /lib/PubSubClient/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/keywords.txt -------------------------------------------------------------------------------- /lib/PubSubClient/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/library.json -------------------------------------------------------------------------------- /lib/PubSubClient/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/library.properties -------------------------------------------------------------------------------- /lib/PubSubClient/src/PubSubClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/src/PubSubClient.cpp -------------------------------------------------------------------------------- /lib/PubSubClient/src/PubSubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/src/PubSubClient.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/.gitignore: -------------------------------------------------------------------------------- 1 | .build 2 | tmpbin 3 | logs 4 | *.pyc 5 | -------------------------------------------------------------------------------- /lib/PubSubClient/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/Makefile -------------------------------------------------------------------------------- /lib/PubSubClient/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/README.md -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/connect_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/connect_spec.cpp -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/Arduino.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/BDDTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/BDDTest.cpp -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/BDDTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/BDDTest.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/Buffer.cpp -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/Buffer.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/Client.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/IPAddress.cpp -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/IPAddress.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/Print.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/ShimClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/ShimClient.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/Stream.cpp -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/Stream.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/lib/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/lib/trace.h -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/publish_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/publish_spec.cpp -------------------------------------------------------------------------------- /lib/PubSubClient/tests/src/receive_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/src/receive_spec.cpp -------------------------------------------------------------------------------- /lib/PubSubClient/tests/testcases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/PubSubClient/tests/testcases/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/testcases/settings.py -------------------------------------------------------------------------------- /lib/PubSubClient/tests/testsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/PubSubClient/tests/testsuite.py -------------------------------------------------------------------------------- /lib/Time/DateStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/DateStrings.cpp -------------------------------------------------------------------------------- /lib/Time/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/Readme.txt -------------------------------------------------------------------------------- /lib/Time/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/Time.cpp -------------------------------------------------------------------------------- /lib/Time/Time.h: -------------------------------------------------------------------------------- 1 | #include "TimeLib.h" 2 | -------------------------------------------------------------------------------- /lib/Time/TimeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/TimeLib.h -------------------------------------------------------------------------------- /lib/Time/examples/TimeGPS/TimeGPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/examples/TimeGPS/TimeGPS.ino -------------------------------------------------------------------------------- /lib/Time/examples/TimeNTP/TimeNTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/examples/TimeNTP/TimeNTP.ino -------------------------------------------------------------------------------- /lib/Time/examples/TimeRTC/TimeRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/examples/TimeRTC/TimeRTC.ino -------------------------------------------------------------------------------- /lib/Time/examples/TimeRTCLog/TimeRTCLog.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/examples/TimeRTCLog/TimeRTCLog.ino -------------------------------------------------------------------------------- /lib/Time/examples/TimeRTCSet/TimeRTCSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/examples/TimeRTCSet/TimeRTCSet.ino -------------------------------------------------------------------------------- /lib/Time/examples/TimeSerial/TimeSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/examples/TimeSerial/TimeSerial.ino -------------------------------------------------------------------------------- /lib/Time/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/keywords.txt -------------------------------------------------------------------------------- /lib/Time/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/library.json -------------------------------------------------------------------------------- /lib/Time/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/Time/library.properties -------------------------------------------------------------------------------- /lib/U8g2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/LICENSE -------------------------------------------------------------------------------- /lib/U8g2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/README.md -------------------------------------------------------------------------------- /lib/U8g2/examples/full_buffer/FPS/FPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/examples/full_buffer/FPS/FPS.ino -------------------------------------------------------------------------------- /lib/U8g2/examples/page_buffer/FPS/FPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/examples/page_buffer/FPS/FPS.ino -------------------------------------------------------------------------------- /lib/U8g2/examples/page_buffer/XBM/XBM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/examples/page_buffer/XBM/XBM.ino -------------------------------------------------------------------------------- /lib/U8g2/examples/u8x8/FlipMode/FlipMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/examples/u8x8/FlipMode/FlipMode.ino -------------------------------------------------------------------------------- /lib/U8g2/examples/u8x8/Terminal/Terminal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/examples/u8x8/Terminal/Terminal.ino -------------------------------------------------------------------------------- /lib/U8g2/extras/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/extras/ChangeLog -------------------------------------------------------------------------------- /lib/U8g2/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/keywords.txt -------------------------------------------------------------------------------- /lib/U8g2/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/library.properties -------------------------------------------------------------------------------- /lib/U8g2/src/U8g2lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/U8g2lib.cpp -------------------------------------------------------------------------------- /lib/U8g2/src/U8g2lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/U8g2lib.h -------------------------------------------------------------------------------- /lib/U8g2/src/U8x8lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/U8x8lib.cpp -------------------------------------------------------------------------------- /lib/U8g2/src/U8x8lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/U8x8lib.h -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2.h -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_bitmap.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_box.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_buffer.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_circle.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_cleardisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_cleardisplay.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_d_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_d_memory.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_d_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_d_setup.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_font.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_fonts.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_hvline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_hvline.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_input_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_input_value.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_intersection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_intersection.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_kerning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_kerning.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_line.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_ll_hvline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_ll_hvline.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_message.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_polygon.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_selection_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_selection_list.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8g2_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8g2_setup.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8log.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8log_u8g2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8log_u8g2.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8log_u8x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8log_u8x8.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8.h -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_8x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_8x8.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_byte.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_cad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_cad.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_capture.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_a2printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_a2printer.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_il3820_296x128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_il3820_296x128.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ist3020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ist3020.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ist7920.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ist7920.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ks0108.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ks0108.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_lc7981.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_lc7981.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ld7032_60x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ld7032_60x32.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ls013b7dh03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ls013b7dh03.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_max7219.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_max7219.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_pcd8544_84x48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_pcd8544_84x48.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_pcf8812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_pcf8812.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_pcf8814_hx1230.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_pcf8814_hx1230.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_sbn1661.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_sbn1661.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_sed1330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_sed1330.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_sh1106_64x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_sh1106_64x32.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_sh1106_72x40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_sh1106_72x40.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_sh1107.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_sh1107.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_sh1108.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_sh1108.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_sh1122.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_sh1122.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1305.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1306_128x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1306_128x32.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1306_48x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1306_48x64.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1306_64x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1306_64x32.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1306_64x48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1306_64x48.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1306_72x40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1306_72x40.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1306_96x16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1306_96x16.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1309.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1309.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1316.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1316.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1317.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1317.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1318.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1318.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1322.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1322.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1325.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1325.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1326.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1326.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1327.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1327.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1329.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1329.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1606_172x72.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1606_172x72.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_ssd1607_200x200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_ssd1607_200x200.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_st7511.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_st7511.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_st75256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_st75256.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_st7528.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_st7528.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_st75320.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_st75320.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_st7565.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_st7565.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_st7567.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_st7567.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_st7586s_erc240160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_st7586s_erc240160.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_st7588.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_st7588.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_st7920.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_st7920.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_t6963.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_t6963.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_uc1601.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_uc1601.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_uc1604.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_uc1604.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_uc1608.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_uc1608.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_uc1610.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_uc1610.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_uc1611.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_uc1611.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_uc1617.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_uc1617.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_uc1638.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_uc1638.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_uc1701_dogs102.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_uc1701_dogs102.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_d_uc1701_mini12864.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_d_uc1701_mini12864.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_debounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_debounce.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_display.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_fonts.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_gpio.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_input_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_input_value.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_message.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_selection_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_selection_list.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_setup.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_string.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_u16toa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_u16toa.c -------------------------------------------------------------------------------- /lib/U8g2/src/clib/u8x8_u8toa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2/src/clib/u8x8_u8toa.c -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2_for_Adafruit_GFX/LICENSE -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2_for_Adafruit_GFX/README.md -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/extras/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2_for_Adafruit_GFX/extras/ChangeLog -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/extras/develop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2_for_Adafruit_GFX/extras/develop.txt -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2_for_Adafruit_GFX/keywords.txt -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2_for_Adafruit_GFX/library.properties -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/src/u8g2_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2_for_Adafruit_GFX/src/u8g2_fonts.c -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/src/u8g2_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/lib/U8g2_for_Adafruit_GFX/src/u8g2_fonts.h -------------------------------------------------------------------------------- /schematic/T5_V1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/schematic/T5_V1.2.pdf -------------------------------------------------------------------------------- /schematic/T5_V2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/schematic/T5_V2.0.pdf -------------------------------------------------------------------------------- /schematic/T5_V2.1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/schematic/T5_V2.1.2.pdf -------------------------------------------------------------------------------- /schematic/T5_V2.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/schematic/T5_V2.2.pdf -------------------------------------------------------------------------------- /schematic/T5_V2.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/schematic/T5_V2.3.pdf -------------------------------------------------------------------------------- /schematic/T5_V2.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/schematic/T5_V2.4.pdf -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/T5-Ink-2-3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/T5-Ink-2-3.ino -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/battery_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/battery_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/bme_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/bme_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/board_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/board_def.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/button_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/button_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/config.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/data/avatar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/data/avatar.bmp -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/data/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/data/css/main.css -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/data/index.html -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/data/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/data/js/jquery.min.js -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/data/qr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/data/qr.bmp -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/esp_power_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/esp_power_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/image.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/ink_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/ink_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/mqtt_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/mqtt_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/notice_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/notice_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/ntp_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/ntp_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/other_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/other_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/page_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/page_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/text.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/timer_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/timer_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink-2-3/wifi_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink-2-3/wifi_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/T5-Ink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/T5-Ink.ino -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/battery_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/battery_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/bme_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/bme_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/board_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/board_def.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/button_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/button_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/config.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/data/avatar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/data/avatar.bmp -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/data/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/data/css/main.css -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/data/index.html -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/data/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/data/js/jquery.min.js -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/data/js/tbdValidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/data/js/tbdValidate.js -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/data/qr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/data/qr.bmp -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/esp_power_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/esp_power_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/image.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/ink_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/ink_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/mqtt_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/mqtt_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/notice_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/notice_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/ntp_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/ntp_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/other_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/other_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/page_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/page_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/text.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/timer_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/timer_func.h -------------------------------------------------------------------------------- /src/Arduino/T5-Ink/wifi_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Arduino/T5-Ink/wifi_func.h -------------------------------------------------------------------------------- /src/Server/Eink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Server/Eink.py -------------------------------------------------------------------------------- /src/Server/Eink.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Server/Eink.service -------------------------------------------------------------------------------- /src/Server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Server/config.py -------------------------------------------------------------------------------- /src/Server/dic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Server/dic.py -------------------------------------------------------------------------------- /src/Server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/src/Server/requirements.txt -------------------------------------------------------------------------------- /tool/PCtoLCD2002/ASC.PTL: -------------------------------------------------------------------------------- 1 |  2 |  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ -------------------------------------------------------------------------------- /tool/PCtoLCD2002/Gb2312.PTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/tool/PCtoLCD2002/Gb2312.PTL -------------------------------------------------------------------------------- /tool/PCtoLCD2002/PCtoLCD2002.INI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/tool/PCtoLCD2002/PCtoLCD2002.INI -------------------------------------------------------------------------------- /tool/PCtoLCD2002/RTL60.BPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/tool/PCtoLCD2002/RTL60.BPL -------------------------------------------------------------------------------- /tool/PCtoLCD2002/VCL60.BPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/tool/PCtoLCD2002/VCL60.BPL -------------------------------------------------------------------------------- /tool/PCtoLCD2002/_index.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/tool/PCtoLCD2002/_index.TXT -------------------------------------------------------------------------------- /tool/PCtoLCD2002/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/tool/PCtoLCD2002/notice.txt -------------------------------------------------------------------------------- /tool/PCtoLCD2002/readme2002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eddddddddy/E-ink-esp32-arduino-weather-time-note/HEAD/tool/PCtoLCD2002/readme2002.txt --------------------------------------------------------------------------------