├── .gitignore ├── .gitmodules ├── .vscode ├── extensions.json └── settings.json ├── 3D ├── 3D_PCB1_2023-08-16.step ├── makeProjectedPlanarWire.x_t ├── 外壳.STL ├── 外壳_没有传感器孔.STL ├── 新版3D外壳(减少开孔数量) │ ├── 外壳^装配体1.STL │ └── 装配体1.SLDASM └── 装配体1.SLDASM ├── LICENSE ├── README.md ├── bin └── boot_app0.bin ├── images ├── Blockly屏幕截图.png ├── _6a05cf3227212a9b8ac6e8c804fb5152_343723737_tb_image_share_1698553724520.jpg ├── 封面.png ├── 成功.png ├── 未选择设备.png ├── 清除数据.png ├── 烧录选项.png ├── 等待烧录完成.png ├── 购物车.jpg └── 连接设备.png ├── include ├── A_Config.h ├── AppManager.h ├── Buzzer.h ├── GUI.h ├── alarm.h ├── hal.h ├── img_dpp.h ├── img_esptouch.h ├── img_goodnightmorning.h ├── img_manual.h ├── lua_trans.h ├── myNTP.h ├── peripherals.h ├── settings.h └── weather.h ├── lib ├── Adafruit-GFX-Library │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── .gitignore │ ├── Adafruit_GFX.cpp │ ├── Adafruit_GFX.h │ ├── Adafruit_GrayOLED.cpp │ ├── Adafruit_GrayOLED.h │ ├── Adafruit_SPITFT.cpp │ ├── Adafruit_SPITFT.h │ ├── Adafruit_SPITFT_Macros.h │ ├── CMakeLists.txt │ ├── Fonts │ │ ├── FreeMono12pt7b.h │ │ ├── FreeMono18pt7b.h │ │ ├── FreeMono24pt7b.h │ │ ├── FreeMono9pt7b.h │ │ ├── FreeMonoBold12pt7b.h │ │ ├── FreeMonoBold18pt7b.h │ │ ├── FreeMonoBold24pt7b.h │ │ ├── FreeMonoBold9pt7b.h │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ ├── FreeMonoOblique12pt7b.h │ │ ├── FreeMonoOblique18pt7b.h │ │ ├── FreeMonoOblique24pt7b.h │ │ ├── FreeMonoOblique9pt7b.h │ │ ├── FreeSans12pt7b.h │ │ ├── FreeSans18pt7b.h │ │ ├── FreeSans24pt7b.h │ │ ├── FreeSans9pt7b.h │ │ ├── FreeSansBold12pt7b.h │ │ ├── FreeSansBold18pt7b.h │ │ ├── FreeSansBold24pt7b.h │ │ ├── FreeSansBold9pt7b.h │ │ ├── FreeSansBoldOblique12pt7b.h │ │ ├── FreeSansBoldOblique18pt7b.h │ │ ├── FreeSansBoldOblique24pt7b.h │ │ ├── FreeSansBoldOblique9pt7b.h │ │ ├── FreeSansOblique12pt7b.h │ │ ├── FreeSansOblique18pt7b.h │ │ ├── FreeSansOblique24pt7b.h │ │ ├── FreeSansOblique9pt7b.h │ │ ├── FreeSerif12pt7b.h │ │ ├── FreeSerif18pt7b.h │ │ ├── FreeSerif24pt7b.h │ │ ├── FreeSerif9pt7b.h │ │ ├── FreeSerifBold12pt7b.h │ │ ├── FreeSerifBold18pt7b.h │ │ ├── FreeSerifBold24pt7b.h │ │ ├── FreeSerifBold9pt7b.h │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ ├── FreeSerifItalic12pt7b.h │ │ ├── FreeSerifItalic18pt7b.h │ │ ├── FreeSerifItalic24pt7b.h │ │ ├── FreeSerifItalic9pt7b.h │ │ ├── Org_01.h │ │ ├── Picopixel.h │ │ ├── Tiny3x3a2pt7b.h │ │ └── TomThumb.h │ ├── README.md │ ├── component.mk │ ├── examples │ │ ├── GFXcanvas │ │ │ ├── GFXcanvas.ino │ │ │ ├── GFXcanvasSerialDemo.cpp │ │ │ └── GFXcanvasSerialDemo.h │ │ └── mock_ili9341 │ │ │ └── mock_ili9341.ino │ ├── fontconvert │ │ ├── Makefile │ │ ├── bdf2adafruit.py │ │ ├── fontconvert.c │ │ ├── fontconvert_win.md │ │ └── makefonts.sh │ ├── gfxfont.h │ ├── glcdfont.c │ ├── library.properties │ └── license.txt ├── Adafruit_AHTX0-master │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── .gitignore │ ├── Adafruit_AHTX0.cpp │ ├── Adafruit_AHTX0.h │ ├── README.md │ ├── assets │ │ └── board.png │ ├── code-of-conduct.md │ ├── examples │ │ ├── adafruit_aht_test │ │ │ └── adafruit_aht_test.ino │ │ ├── adafruit_aht_unifiedsensors │ │ │ └── adafruit_aht_unifiedsensors.ino │ │ └── aht20_oleddemo │ │ │ └── aht20_oleddemo.ino │ ├── library.properties │ └── license.txt ├── Adafruit_BMP280_Library-master │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── .gitignore │ ├── Adafruit_BMP280.cpp │ ├── Adafruit_BMP280.h │ ├── README.md │ ├── assets │ │ └── board.jpg │ ├── examples │ │ ├── bmp280_forced │ │ │ └── bmp280_forced.ino │ │ ├── bmp280_sensortest │ │ │ └── bmp280_sensortest.ino │ │ └── bmp280test │ │ │ └── bmp280test.ino │ ├── keywords.txt │ └── library.properties ├── Adafruit_BusIO │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── Adafruit_BusIO_Register.cpp │ ├── Adafruit_BusIO_Register.h │ ├── Adafruit_I2CDevice.cpp │ ├── Adafruit_I2CDevice.h │ ├── Adafruit_I2CRegister.h │ ├── Adafruit_SPIDevice.cpp │ ├── Adafruit_SPIDevice.h │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── component.mk │ ├── examples │ │ ├── i2c_address_detect │ │ │ └── i2c_address_detect.ino │ │ ├── i2c_readwrite │ │ │ └── i2c_readwrite.ino │ │ ├── i2c_registers │ │ │ └── i2c_registers.ino │ │ ├── i2corspi_register │ │ │ └── i2corspi_register.ino │ │ ├── spi_modetest │ │ │ └── spi_modetest.ino │ │ ├── spi_readwrite │ │ │ └── spi_readwrite.ino │ │ ├── spi_register_bits │ │ │ └── spi_register_bits.ino │ │ └── spi_registers │ │ │ └── spi_registers.ino │ └── library.properties ├── Adafruit_SGP30-master │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── .gitignore │ ├── Adafruit_SGP30.cpp │ ├── Adafruit_SGP30.h │ ├── README.md │ ├── assets │ │ └── board.jpg │ ├── code-of-conduct.md │ ├── examples │ │ └── sgp30test │ │ │ └── sgp30test.ino │ ├── library.properties │ └── license.txt ├── Adafruit_Sensor-master │ ├── .gitignore │ ├── Adafruit_Sensor.cpp │ ├── Adafruit_Sensor.h │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ └── sensortest │ │ │ └── sensortest.ino │ └── library.properties ├── ArduinoJson │ ├── .clang-format │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .gitattributes │ ├── .gitignore │ ├── .mbedignore │ ├── .piopm │ ├── .prettierignore │ ├── ArduinoJson.h │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── SUPPORT.md │ ├── appveyor.yml │ ├── banner.svg │ ├── component.mk │ ├── examples │ │ ├── JsonConfigFile │ │ │ └── JsonConfigFile.ino │ │ ├── JsonFilterExample │ │ │ └── JsonFilterExample.ino │ │ ├── JsonGeneratorExample │ │ │ └── JsonGeneratorExample.ino │ │ ├── JsonHttpClient │ │ │ └── JsonHttpClient.ino │ │ ├── JsonParserExample │ │ │ └── JsonParserExample.ino │ │ ├── JsonServer │ │ │ └── JsonServer.ino │ │ ├── JsonUdpBeacon │ │ │ └── JsonUdpBeacon.ino │ │ ├── MsgPackParser │ │ │ └── MsgPackParser.ino │ │ ├── ProgmemExample │ │ │ └── ProgmemExample.ino │ │ └── StringExample │ │ │ └── StringExample.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── ArduinoJson.h │ │ ├── ArduinoJson.hpp │ │ ├── ArduinoJson │ │ ├── Array │ │ │ ├── ArrayFunctions.hpp │ │ │ ├── ArrayImpl.hpp │ │ │ ├── ArrayIterator.hpp │ │ │ ├── ArrayRef.hpp │ │ │ ├── ArrayShortcuts.hpp │ │ │ ├── ElementProxy.hpp │ │ │ └── Utilities.hpp │ │ ├── Collection │ │ │ ├── CollectionData.hpp │ │ │ └── CollectionImpl.hpp │ │ ├── Configuration.hpp │ │ ├── Deserialization │ │ │ ├── DeserializationError.hpp │ │ │ ├── Filter.hpp │ │ │ ├── NestingLimit.hpp │ │ │ ├── Reader.hpp │ │ │ ├── Readers │ │ │ │ ├── ArduinoStreamReader.hpp │ │ │ │ ├── ArduinoStringReader.hpp │ │ │ │ ├── FlashReader.hpp │ │ │ │ ├── IteratorReader.hpp │ │ │ │ ├── RamReader.hpp │ │ │ │ ├── StdStreamReader.hpp │ │ │ │ └── VariantReader.hpp │ │ │ └── deserialize.hpp │ │ ├── Document │ │ │ ├── BasicJsonDocument.hpp │ │ │ ├── DynamicJsonDocument.hpp │ │ │ ├── JsonDocument.hpp │ │ │ └── StaticJsonDocument.hpp │ │ ├── Json │ │ │ ├── EscapeSequence.hpp │ │ │ ├── JsonDeserializer.hpp │ │ │ ├── JsonSerializer.hpp │ │ │ ├── Latch.hpp │ │ │ ├── PrettyJsonSerializer.hpp │ │ │ ├── TextFormatter.hpp │ │ │ ├── Utf16.hpp │ │ │ └── Utf8.hpp │ │ ├── Memory │ │ │ ├── Alignment.hpp │ │ │ └── MemoryPool.hpp │ │ ├── Misc │ │ │ ├── SerializedValue.hpp │ │ │ └── Visitable.hpp │ │ ├── MsgPack │ │ │ ├── MsgPackDeserializer.hpp │ │ │ ├── MsgPackSerializer.hpp │ │ │ ├── endianess.hpp │ │ │ └── ieee754.hpp │ │ ├── Namespace.hpp │ │ ├── Numbers │ │ │ ├── Float.hpp │ │ │ ├── FloatParts.hpp │ │ │ ├── FloatTraits.hpp │ │ │ ├── Integer.hpp │ │ │ ├── arithmeticCompare.hpp │ │ │ ├── convertNumber.hpp │ │ │ └── parseNumber.hpp │ │ ├── Object │ │ │ ├── MemberProxy.hpp │ │ │ ├── ObjectFunctions.hpp │ │ │ ├── ObjectImpl.hpp │ │ │ ├── ObjectIterator.hpp │ │ │ ├── ObjectRef.hpp │ │ │ ├── ObjectShortcuts.hpp │ │ │ └── Pair.hpp │ │ ├── Polyfills │ │ │ ├── alias_cast.hpp │ │ │ ├── assert.hpp │ │ │ ├── attributes.hpp │ │ │ ├── ctype.hpp │ │ │ ├── integer.hpp │ │ │ ├── limits.hpp │ │ │ ├── math.hpp │ │ │ ├── mpl │ │ │ │ └── max.hpp │ │ │ ├── pgmspace.hpp │ │ │ ├── pgmspace_generic.hpp │ │ │ ├── preprocessor.hpp │ │ │ ├── safe_strcmp.hpp │ │ │ ├── static_array.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── type_traits │ │ │ │ ├── conditional.hpp │ │ │ │ ├── declval.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── integral_constant.hpp │ │ │ │ ├── is_array.hpp │ │ │ │ ├── is_base_of.hpp │ │ │ │ ├── is_class.hpp │ │ │ │ ├── is_const.hpp │ │ │ │ ├── is_convertible.hpp │ │ │ │ ├── is_enum.hpp │ │ │ │ ├── is_floating_point.hpp │ │ │ │ ├── is_integral.hpp │ │ │ │ ├── is_pointer.hpp │ │ │ │ ├── is_same.hpp │ │ │ │ ├── is_signed.hpp │ │ │ │ ├── is_unsigned.hpp │ │ │ │ ├── make_unsigned.hpp │ │ │ │ ├── make_void.hpp │ │ │ │ ├── remove_const.hpp │ │ │ │ ├── remove_cv.hpp │ │ │ │ ├── remove_reference.hpp │ │ │ │ └── type_identity.hpp │ │ │ └── utility.hpp │ │ ├── Serialization │ │ │ ├── CountingDecorator.hpp │ │ │ ├── Writer.hpp │ │ │ ├── Writers │ │ │ │ ├── ArduinoStringWriter.hpp │ │ │ │ ├── DummyWriter.hpp │ │ │ │ ├── PrintWriter.hpp │ │ │ │ ├── StaticStringWriter.hpp │ │ │ │ ├── StdStreamWriter.hpp │ │ │ │ └── StdStringWriter.hpp │ │ │ ├── measure.hpp │ │ │ └── serialize.hpp │ │ ├── StringStorage │ │ │ ├── StringCopier.hpp │ │ │ ├── StringMover.hpp │ │ │ └── StringStorage.hpp │ │ ├── Strings │ │ │ ├── Adapters │ │ │ │ ├── ArduinoStringAdapter.hpp │ │ │ │ ├── ConstRamStringAdapter.hpp │ │ │ │ ├── FlashStringAdapter.hpp │ │ │ │ ├── JsonStringAdapter.hpp │ │ │ │ ├── RamStringAdapter.hpp │ │ │ │ ├── SizedFlashStringAdapter.hpp │ │ │ │ ├── SizedRamStringAdapter.hpp │ │ │ │ ├── StdStringAdapter.hpp │ │ │ │ └── StringViewAdapter.hpp │ │ │ ├── IsWriteableString.hpp │ │ │ ├── StoragePolicy.hpp │ │ │ ├── String.hpp │ │ │ ├── StringAdapter.hpp │ │ │ └── StringAdapters.hpp │ │ ├── Variant │ │ │ ├── Converter.hpp │ │ │ ├── ConverterImpl.hpp │ │ │ ├── SlotFunctions.hpp │ │ │ ├── VariantCompare.hpp │ │ │ ├── VariantContent.hpp │ │ │ ├── VariantData.hpp │ │ │ ├── VariantFunctions.hpp │ │ │ ├── VariantImpl.hpp │ │ │ ├── VariantOperators.hpp │ │ │ ├── VariantRef.hpp │ │ │ ├── VariantShortcuts.hpp │ │ │ ├── VariantSlot.hpp │ │ │ ├── VariantTag.hpp │ │ │ ├── VariantTo.hpp │ │ │ └── Visitor.hpp │ │ ├── compatibility.hpp │ │ └── version.hpp │ │ └── CMakeLists.txt ├── DS3231 │ ├── .gitignore │ ├── .piopm │ ├── CONTRIBUTING.md │ ├── DS3231.cpp │ ├── DS3231.h │ ├── DS3231.h.gch │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DS3231_oscillator_test │ │ │ ├── .DS3231_oscillator_test.pde.swp │ │ │ └── DS3231_oscillator_test.pde │ │ ├── DS3231_set │ │ │ └── DS3231_set.pde │ │ ├── DS3231_test │ │ │ ├── .DS3231_test.pde.swp │ │ │ └── DS3231_test.pde │ │ ├── echo_time │ │ │ └── echo_time.pde │ │ ├── now │ │ │ └── now.pde │ │ └── set_echo │ │ │ └── set_echo.pde │ ├── keywords.txt │ └── library.properties ├── ESPAsyncWebServer-master │ ├── .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 │ ├── .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 │ │ │ ├── .test.build_flags │ │ │ └── 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 ├── GxEPD2 │ ├── CONTRIBUTING.md │ ├── ConnectingHardware.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── GxEPD2_Example │ │ │ ├── GxEPD2_Example.ino │ │ │ ├── GxEPD2_display_selection.h │ │ │ ├── GxEPD2_display_selection_added.h │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2_GFX_Example │ │ │ ├── BitmapDisplay.cpp │ │ │ ├── BitmapDisplay.h │ │ │ ├── GxEPD2_GFX_Example.ino │ │ │ ├── GxEPD2_display_selection.h │ │ │ ├── GxEPD2_display_selection_added.h │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ ├── GxEPD2_wiring_examples.h │ │ │ ├── TextDisplay.cpp │ │ │ └── TextDisplay.h │ │ ├── GxEPD2_HelloWorld │ │ │ ├── GxEPD2_HelloWorld.ino │ │ │ ├── GxEPD2_display_selection.h │ │ │ ├── GxEPD2_display_selection_added.h │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2_MultiDisplayExample │ │ │ └── GxEPD2_MultiDisplayExample.ino │ │ ├── GxEPD2_NotPagedExample │ │ │ ├── GxEPD2_NotPagedExample.ino │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2_PagedDisplayUsingCallback │ │ │ ├── GxEPD2_PagedDisplayUsingCallback.ino │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2_RotaryUsingBusyCallback │ │ │ ├── BasicEncoder.h │ │ │ ├── GxEPD2_RotaryUsingBusyCallback.ino │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2_SD_AVR_Example │ │ │ ├── GxEPD2_SD_AVR_Example.ino │ │ │ ├── GxEPD2_SD_AVR_boards_added.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2_SD_Example │ │ │ ├── GxEPD2_SD_Example.ino │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ ├── GxEPD2_wiring_examples.h │ │ │ └── bitmaps │ │ │ │ ├── 5in65f3.bmp │ │ │ │ ├── Bitmap640x384_1.bmp │ │ │ │ ├── Bitmap640x384_2.bmp │ │ │ │ ├── LOGO.BMP │ │ │ │ ├── bb4.bmp │ │ │ │ ├── betty_1.bmp │ │ │ │ ├── eighth200x200.bmp │ │ │ │ ├── fifth200x200.bmp │ │ │ │ ├── first200x200.bmp │ │ │ │ ├── fourth200x200.bmp │ │ │ │ ├── logo200x200.bmp │ │ │ │ ├── parrot.bmp │ │ │ │ ├── rgb32.bmp │ │ │ │ ├── second200x200.bmp │ │ │ │ ├── seventh200x200.bmp │ │ │ │ ├── sixth200x200.bmp │ │ │ │ └── third200x200.bmp │ │ ├── GxEPD2_SD_WriteBitmap │ │ │ └── GxEPD2_SD_WriteBitmap.ino │ │ ├── GxEPD2_SerialFlash_Example │ │ │ ├── GxEPD2_SerialFlash_Example.ino │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2_SerialFlash_Loader │ │ │ ├── GxEPD2_SerialFlash_Loader.ino │ │ │ └── GxEPD2_github_raw_certs.h │ │ ├── GxEPD2_Spiffs_Example │ │ │ ├── GxEPD2_Spiffs_Example.ino │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ ├── GxEPD2_wiring_examples.h │ │ │ └── SPIFFS_Support.ino │ │ ├── GxEPD2_Spiffs_Loader │ │ │ ├── GxEPD2_Spiffs_Loader.ino │ │ │ ├── GxEPD2_github_raw_certs.h │ │ │ └── SPIFFS_Support.ino │ │ ├── GxEPD2_U8G2_Fonts_Example │ │ │ ├── GxEPD2_U8G2_Fonts_Example.ino │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2_WS_ESP32_Driver │ │ │ └── GxEPD2_WS_ESP32_Driver.ino │ │ ├── GxEPD2_WiFi_CertStore_Example │ │ │ ├── GxEPD2_WiFi_CertStore_Example.ino │ │ │ ├── GxEPD2_github_raw_certs.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2_WiFi_CertStore_Loader │ │ │ ├── GxEPD2_WiFi_CertStore_Loader.ino │ │ │ ├── SPIFFS_Support.ino │ │ │ ├── certs.ar │ │ │ ├── certs_list.txt │ │ │ └── update_certs │ │ │ │ ├── certs-from-mozilla.py │ │ │ │ └── update_certs.cmd │ │ ├── GxEPD2_WiFi_Example │ │ │ ├── GxEPD2_WiFi_Example.ino │ │ │ ├── GxEPD2_github_raw_certs.h │ │ │ └── GxEPD2_wiring_examples.h │ │ ├── GxEPD2x_FastBlackWhiteOnColor │ │ │ └── GxEPD2x_FastBlackWhiteOnColor.ino │ │ └── GxEPD2x_MixedTest │ │ │ └── GxEPD2x_MixedTest.ino │ ├── extras │ │ ├── Particle │ │ │ └── examples │ │ │ │ ├── GxEPD2_ParticleExample │ │ │ │ ├── project.properties │ │ │ │ └── src │ │ │ │ │ └── GxEPD2_ParticleExample.ino │ │ │ │ └── GxEPD2_WiFi_ParticleExample │ │ │ │ ├── project.properties │ │ │ │ └── src │ │ │ │ └── GxEPD2_WiFi_ParticleExample.ino │ │ ├── bitmaps │ │ │ ├── Bitmap640x384_1.bmp │ │ │ ├── Bitmap640x384_2.bmp │ │ │ ├── bb4.bmp │ │ │ ├── betty_1.bmp │ │ │ ├── betty_4.bmp │ │ │ ├── displayed_bmp_large.bmp │ │ │ ├── displayed_bmp_small_but_padded.bmp │ │ │ ├── eighth200x200.bmp │ │ │ ├── fifth200x200.bmp │ │ │ ├── first200x200.bmp │ │ │ ├── fourth200x200.bmp │ │ │ ├── liberato640x384.bmp │ │ │ ├── logo.bmp │ │ │ ├── logo200x200.bmp │ │ │ ├── marilyn_240x240x8.bmp │ │ │ ├── miniwoof.bmp │ │ │ ├── output5.bmp │ │ │ ├── output6.bmp │ │ │ ├── parrot.bmp │ │ │ ├── second200x200.bmp │ │ │ ├── seventh200x200.bmp │ │ │ ├── sixth200x200.bmp │ │ │ ├── t200x200.bmp │ │ │ ├── test.bmp │ │ │ ├── third200x200.bmp │ │ │ ├── tiger.bmp │ │ │ ├── tiger16T.bmp │ │ │ ├── tiger_178x160x4.bmp │ │ │ ├── tiger_240x317x4.bmp │ │ │ ├── tiger_320x200x24.bmp │ │ │ ├── tractor_1.bmp │ │ │ ├── tractor_11.bmp │ │ │ ├── tractor_4.bmp │ │ │ ├── tractor_44.bmp │ │ │ ├── tractor_8.bmp │ │ │ ├── tractor_88.bmp │ │ │ └── woof.bmp │ │ ├── examples │ │ │ └── GxEPD2_T_MultiDisplayExample │ │ │ │ └── GxEPD2_T_MultiDisplayExample.ino │ │ ├── sw_spi │ │ │ ├── README.MD │ │ │ ├── README.txt │ │ │ └── src │ │ │ │ ├── GxEPD2_EPD.cpp │ │ │ │ └── GxEPD2_EPD.h │ │ └── tests │ │ │ ├── GxEPD2_MinimumExample │ │ │ ├── GxEPD2_MinimumExample.ino │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ └── GxEPD2_wiring_examples.h │ │ │ └── GxEPD2_RefreshTests │ │ │ ├── GxEPD2_RefreshTests.ino │ │ │ ├── GxEPD2_display_selection.h │ │ │ ├── GxEPD2_display_selection_added.h │ │ │ ├── GxEPD2_display_selection_new_style.h │ │ │ ├── GxEPD2_selection_check.h │ │ │ ├── GxEPD2_wiring_examples.h │ │ │ ├── Open_Sans_ExtraBold_120.h │ │ │ └── Open_Sans_ExtraBold_60.h │ ├── library.properties │ └── src │ │ ├── GxEPD2.h │ │ ├── GxEPD2_3C.h │ │ ├── GxEPD2_4C.h │ │ ├── GxEPD2_7C.h │ │ ├── GxEPD2_BW.h │ │ ├── GxEPD2_EPD.cpp │ │ ├── GxEPD2_EPD.h │ │ ├── GxEPD2_GFX.h │ │ ├── bitmaps │ │ ├── Bitmaps104x212.h │ │ ├── Bitmaps128x250.h │ │ ├── Bitmaps128x296.h │ │ ├── Bitmaps1304x984.h │ │ ├── Bitmaps152x152.h │ │ ├── Bitmaps152x296.h │ │ ├── Bitmaps176x264.h │ │ ├── Bitmaps200x200.h │ │ ├── Bitmaps240x416.h │ │ ├── Bitmaps3c104x212.h │ │ ├── Bitmaps3c128x250.h │ │ ├── Bitmaps3c128x296.h │ │ ├── Bitmaps3c1304x984.h │ │ ├── Bitmaps3c152x296.h │ │ ├── Bitmaps3c176x264.h │ │ ├── Bitmaps3c200x200.h │ │ ├── Bitmaps3c400x300.h │ │ ├── Bitmaps3c648x480.h │ │ ├── Bitmaps3c800x480.h │ │ ├── Bitmaps3c880x528.h │ │ ├── Bitmaps400x300.h │ │ ├── Bitmaps640x384.h │ │ ├── Bitmaps648x480.h │ │ ├── Bitmaps7c800x480.h │ │ ├── Bitmaps800x480.h │ │ ├── Bitmaps80x128.h │ │ ├── WS_Bitmaps104x212.h │ │ ├── WS_Bitmaps176x264.h │ │ ├── WS_Bitmaps3c104x212.h │ │ ├── WS_Bitmaps3c128x296.h │ │ ├── WS_Bitmaps3c200x200.h │ │ ├── WS_Bitmaps3c400x300.h │ │ ├── WS_Bitmaps4c168x168.h │ │ ├── WS_Bitmaps7c192x143.h │ │ ├── WS_Bitmaps7c300x180.h │ │ ├── WS_Bitmaps800x600.h │ │ └── WS_Bitmaps80x128.h │ │ ├── epd │ │ ├── GxEPD2_102.cpp │ │ ├── GxEPD2_102.h │ │ ├── GxEPD2_1160_T91.cpp │ │ ├── GxEPD2_1160_T91.h │ │ ├── GxEPD2_1248.cpp │ │ ├── GxEPD2_1248.h │ │ ├── GxEPD2_150_BN.cpp │ │ ├── GxEPD2_150_BN.h │ │ ├── GxEPD2_154.cpp │ │ ├── GxEPD2_154.h │ │ ├── GxEPD2_154_D67.cpp │ │ ├── GxEPD2_154_D67.h │ │ ├── GxEPD2_154_M09.cpp │ │ ├── GxEPD2_154_M09.h │ │ ├── GxEPD2_154_M10.cpp │ │ ├── GxEPD2_154_M10.h │ │ ├── GxEPD2_154_T8.cpp │ │ ├── GxEPD2_154_T8.h │ │ ├── GxEPD2_213.cpp │ │ ├── GxEPD2_213.h │ │ ├── GxEPD2_213_B72.cpp │ │ ├── GxEPD2_213_B72.h │ │ ├── GxEPD2_213_B73.cpp │ │ ├── GxEPD2_213_B73.h │ │ ├── GxEPD2_213_B74.cpp │ │ ├── GxEPD2_213_B74.h │ │ ├── GxEPD2_213_BN.cpp │ │ ├── GxEPD2_213_BN.h │ │ ├── GxEPD2_213_M21.cpp │ │ ├── GxEPD2_213_M21.h │ │ ├── GxEPD2_213_T5D.cpp │ │ ├── GxEPD2_213_T5D.h │ │ ├── GxEPD2_213_flex.cpp │ │ ├── GxEPD2_213_flex.h │ │ ├── GxEPD2_260.cpp │ │ ├── GxEPD2_260.h │ │ ├── GxEPD2_260_M01.cpp │ │ ├── GxEPD2_260_M01.h │ │ ├── GxEPD2_266_BN.cpp │ │ ├── GxEPD2_266_BN.h │ │ ├── GxEPD2_270.cpp │ │ ├── GxEPD2_270.h │ │ ├── GxEPD2_290.cpp │ │ ├── GxEPD2_290.h │ │ ├── GxEPD2_290_BS.cpp │ │ ├── GxEPD2_290_BS.h │ │ ├── GxEPD2_290_I6FD.cpp │ │ ├── GxEPD2_290_I6FD.h │ │ ├── GxEPD2_290_M06.cpp │ │ ├── GxEPD2_290_M06.h │ │ ├── GxEPD2_290_T5.cpp │ │ ├── GxEPD2_290_T5.h │ │ ├── GxEPD2_290_T5D.cpp │ │ ├── GxEPD2_290_T5D.h │ │ ├── GxEPD2_290_T94.cpp │ │ ├── GxEPD2_290_T94.h │ │ ├── GxEPD2_290_T94_V2.cpp │ │ ├── GxEPD2_290_T94_V2.h │ │ ├── GxEPD2_370_TC1.cpp │ │ ├── GxEPD2_370_TC1.h │ │ ├── GxEPD2_371.cpp │ │ ├── GxEPD2_371.h │ │ ├── GxEPD2_420.cpp │ │ ├── GxEPD2_420.h │ │ ├── GxEPD2_420_M01.cpp │ │ ├── GxEPD2_420_M01.h │ │ ├── GxEPD2_583.cpp │ │ ├── GxEPD2_583.h │ │ ├── GxEPD2_583_T8.cpp │ │ ├── GxEPD2_583_T8.h │ │ ├── GxEPD2_750.cpp │ │ ├── GxEPD2_750.h │ │ ├── GxEPD2_750_T7.cpp │ │ ├── GxEPD2_750_T7.h │ │ ├── GxEPD2_750_YT7.cpp │ │ └── GxEPD2_750_YT7.h │ │ ├── epd3c │ │ ├── GxEPD2_1248c.cpp │ │ ├── GxEPD2_1248c.h │ │ ├── GxEPD2_154_Z90c.cpp │ │ ├── GxEPD2_154_Z90c.h │ │ ├── GxEPD2_154c.cpp │ │ ├── GxEPD2_154c.h │ │ ├── GxEPD2_213_Z19c.cpp │ │ ├── GxEPD2_213_Z19c.h │ │ ├── GxEPD2_213_Z98c.cpp │ │ ├── GxEPD2_213_Z98c.h │ │ ├── GxEPD2_213c.cpp │ │ ├── GxEPD2_213c.h │ │ ├── GxEPD2_266c.cpp │ │ ├── GxEPD2_266c.h │ │ ├── GxEPD2_270c.cpp │ │ ├── GxEPD2_270c.h │ │ ├── GxEPD2_290_C90c.cpp │ │ ├── GxEPD2_290_C90c.h │ │ ├── GxEPD2_290_Z13c.cpp │ │ ├── GxEPD2_290_Z13c.h │ │ ├── GxEPD2_290c.cpp │ │ ├── GxEPD2_290c.h │ │ ├── GxEPD2_420c.cpp │ │ ├── GxEPD2_420c.h │ │ ├── GxEPD2_420c_Z21.cpp │ │ ├── GxEPD2_420c_Z21.h │ │ ├── GxEPD2_583c.cpp │ │ ├── GxEPD2_583c.h │ │ ├── GxEPD2_583c_Z83.cpp │ │ ├── GxEPD2_583c_Z83.h │ │ ├── GxEPD2_750c.cpp │ │ ├── GxEPD2_750c.h │ │ ├── GxEPD2_750c_Z08.cpp │ │ ├── GxEPD2_750c_Z08.h │ │ ├── GxEPD2_750c_Z90.cpp │ │ └── GxEPD2_750c_Z90.h │ │ ├── epd4c │ │ ├── GxEPD2_437c.cpp │ │ └── GxEPD2_437c.h │ │ ├── epd7c │ │ ├── GxEPD2_565c.cpp │ │ ├── GxEPD2_565c.h │ │ ├── GxEPD2_730c_GDEY073D46.cpp │ │ └── GxEPD2_730c_GDEY073D46.h │ │ ├── gdeq │ │ ├── GxEPD2_583_GDEQ0583T31.cpp │ │ └── GxEPD2_583_GDEQ0583T31.h │ │ ├── gdey │ │ ├── GxEPD2_154_GDEY0154D67.cpp │ │ ├── GxEPD2_154_GDEY0154D67.h │ │ ├── GxEPD2_213_GDEY0213B74.cpp │ │ ├── GxEPD2_213_GDEY0213B74.h │ │ ├── GxEPD2_266_GDEY0266T90.cpp │ │ ├── GxEPD2_266_GDEY0266T90.h │ │ ├── GxEPD2_270_GDEY027T91.cpp │ │ ├── GxEPD2_270_GDEY027T91.h │ │ ├── GxEPD2_290_GDEY029T94.cpp │ │ ├── GxEPD2_290_GDEY029T94.h │ │ ├── GxEPD2_420_GDEY042T91.cpp │ │ └── GxEPD2_420_GDEY042T91.h │ │ └── it8951 │ │ ├── GxEPD2_it103_1872x1404.cpp │ │ ├── GxEPD2_it103_1872x1404.h │ │ ├── GxEPD2_it60.cpp │ │ ├── GxEPD2_it60.h │ │ ├── GxEPD2_it60_1448x1072.cpp │ │ ├── GxEPD2_it60_1448x1072.h │ │ ├── GxEPD2_it78_1872x1404.cpp │ │ └── GxEPD2_it78_1872x1404.h ├── OneButton │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── BlinkMachine │ │ │ └── BlinkMachine.ino │ │ ├── FunctionalButton │ │ │ └── FunctionalButton.ino │ │ ├── InterruptOneButton │ │ │ └── InterruptOneButton.ino │ │ ├── LongPressEvents │ │ │ └── LongPressEvents.ino │ │ ├── SimpleOneButton │ │ │ └── SimpleOneButton.ino │ │ ├── SpecialInput │ │ │ └── SpecialInput.ino │ │ └── TwoButtons │ │ │ └── TwoButtons.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── run_cppcheck.sh │ ├── src │ │ ├── OneButton.cpp │ │ └── OneButton.h │ └── suppressions.txt ├── QRCode │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ └── QRCode │ │ │ └── QRCode.ino │ ├── generate_table.py │ ├── keywords.txt │ ├── library.properties │ ├── src │ │ ├── qrcode.c │ │ └── qrcode.h │ └── tests │ │ ├── BitBuffer.cpp │ │ ├── BitBuffer.hpp │ │ ├── QrCode.cpp │ │ ├── QrCode.hpp │ │ ├── QrSegment.cpp │ │ ├── QrSegment.hpp │ │ ├── README.md │ │ ├── run-tests.cpp │ │ └── run.sh ├── README ├── 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 └── lua │ ├── Makefile │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── ljumptab.h │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── lopnames.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── mypartitions.csv ├── platformio.ini ├── releaseBin.sh ├── src ├── AppManager.cpp ├── Buzzer.cpp ├── GUI.cpp ├── IPv6.cpp ├── alarm.cpp ├── apps │ ├── appBilibili.cpp │ ├── appBuzzer.cpp │ ├── appClock.cpp │ ├── appClockOnly.cpp │ ├── appEBook.cpp │ ├── appInstaller.cpp │ ├── appOOBE.cpp │ ├── appRTCOffset.cpp │ ├── appSettings.cpp │ ├── appTemplate.cpp.bak │ ├── appWarning.cpp │ └── appWebServer.cpp ├── battery.cpp ├── daily.cpp ├── esp_dpp_prov.cpp ├── fileManager.cpp ├── graph.cpp ├── hal.cpp ├── lua │ ├── README.md │ ├── lua_trans.cpp │ └── modules │ │ ├── lua_appManager.cpp │ │ ├── lua_buzzer.cpp │ │ ├── lua_display.cpp │ │ ├── lua_gui.cpp │ │ ├── lua_hal.cpp │ │ ├── lua_http.cpp │ │ ├── lua_peri_aht.cpp │ │ ├── lua_peri_bmp.cpp │ │ ├── lua_peri_sgp.cpp │ │ └── lua_weather.cpp ├── luaAppWrapper.cpp ├── main.cpp ├── myNTP.cpp ├── peripherals.cpp ├── weather.cpp └── webserver │ ├── blockly.h │ ├── csss.h │ ├── favicon.h │ ├── index.h │ ├── jss.h │ ├── jss2.h │ ├── jss3.h │ ├── toolbox_display.h │ └── webserver.cpp ├── test └── README ├── tools ├── midi │ ├── midi_process.py │ └── 测试用midi │ │ ├── Summer.mid │ │ ├── 克罗地亚狂想曲.mid │ │ ├── 天空之城.mid │ │ ├── 来源网络,不保证可用,不保证单音轨 │ │ ├── 水边的阿狄丽娜.mid │ │ ├── 献给爱丽丝.mid │ │ ├── 荷塘月色.mid │ │ ├── 野蜂飞舞.mid │ │ ├── 隐形的翅膀.mid │ │ └── 雨的印记.mid └── xbm_parser.py ├── unused ├── Cartridge-master │ ├── LICENSE │ ├── README.md │ ├── converter │ │ ├── 05 African Mines.vgz │ │ ├── CONVERT_VGZ_TO_ARDUINO.bat │ │ ├── DROP YOUR .VGZ FILES ONTO THE .BAT SCRIPT ABOVE │ │ └── vgm_to_arduino.py │ ├── examples │ │ └── NES_DEMO │ │ │ └── NES_DEMO.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── Cartridge.cpp │ │ └── Cartridge.h ├── SDConv.cpp ├── SDConv.h ├── ace.h ├── appClock_demo.cpp ├── appLog.cpp ├── appMidi.cpp ├── appNES.cpp ├── apps │ ├── appDebug.cpp.bak │ ├── appDemoAHT20.cpp.bak │ ├── appDemoBMP280.cpp.bak │ └── appPower.cpp.bak ├── arduino-midi-fileparser-main │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── LICENSE.md │ ├── README.md │ ├── docs │ │ └── html │ │ │ ├── MidiFileCommon_8h_source.html │ │ │ ├── MidiFileParserMultiTrack_8h_source.html │ │ │ ├── MidiFileParserOut_8h_source.html │ │ │ ├── MidiFileParserState_8h_source.html │ │ │ ├── MidiFileParser_8h.html │ │ │ ├── MidiFileParser_8h__dep__incl.map │ │ │ ├── MidiFileParser_8h__dep__incl.md5 │ │ │ ├── MidiFileParser_8h__dep__incl.png │ │ │ ├── MidiFileParser_8h__incl.map │ │ │ ├── MidiFileParser_8h__incl.md5 │ │ │ ├── MidiFileParser_8h__incl.png │ │ │ ├── MidiFileParser_8h_source.html │ │ │ ├── MidiFileState_8h_source.html │ │ │ ├── MidiFile_8h.html │ │ │ ├── MidiFile_8h__incl.dot │ │ │ ├── MidiFile_8h__incl.map │ │ │ ├── MidiFile_8h__incl.md5 │ │ │ ├── MidiFile_8h__incl.png │ │ │ ├── MidiFile_8h_source.html │ │ │ ├── RingBuffer_8h_source.html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bc_sd.png │ │ │ ├── bdwn.png │ │ │ ├── classMidiFile-members.html │ │ │ ├── classMidiFile.html │ │ │ ├── classMidiFile__coll__graph.dot │ │ │ ├── classMidiFile__coll__graph.map │ │ │ ├── classMidiFile__coll__graph.md5 │ │ │ ├── classMidiFile__coll__graph.png │ │ │ ├── classRingBuffer-members.html │ │ │ ├── classRingBuffer.html │ │ │ ├── classes.html │ │ │ ├── classmidi_1_1MidiFileParser-members.html │ │ │ ├── classmidi_1_1MidiFileParser.html │ │ │ ├── classmidi_1_1MidiFileParserMultiTrack-members.html │ │ │ ├── classmidi_1_1MidiFileParserMultiTrack.html │ │ │ ├── classmidi_1_1MidiFileParserMultiTrack__coll__graph.map │ │ │ ├── classmidi_1_1MidiFileParserMultiTrack__coll__graph.md5 │ │ │ ├── classmidi_1_1MidiFileParserMultiTrack__coll__graph.png │ │ │ ├── classmidi_1_1MidiFileParserMultiTrack__inherit__graph.map │ │ │ ├── classmidi_1_1MidiFileParserMultiTrack__inherit__graph.md5 │ │ │ ├── classmidi_1_1MidiFileParserMultiTrack__inherit__graph.png │ │ │ ├── classmidi_1_1MidiFileParserOut-members.html │ │ │ ├── classmidi_1_1MidiFileParserOut.html │ │ │ ├── classmidi_1_1MidiFileParserOut__coll__graph.map │ │ │ ├── classmidi_1_1MidiFileParserOut__coll__graph.md5 │ │ │ ├── classmidi_1_1MidiFileParserOut__coll__graph.png │ │ │ ├── classmidi_1_1MidiFileParser__coll__graph.map │ │ │ ├── classmidi_1_1MidiFileParser__coll__graph.md5 │ │ │ ├── classmidi_1_1MidiFileParser__coll__graph.png │ │ │ ├── classmidi_1_1MidiFileParser__inherit__graph.map │ │ │ ├── classmidi_1_1MidiFileParser__inherit__graph.md5 │ │ │ ├── classmidi_1_1MidiFileParser__inherit__graph.png │ │ │ ├── classmidi_1_1Print-members.html │ │ │ ├── classmidi_1_1Print.html │ │ │ ├── classmidi_1_1Print__inherit__graph.map │ │ │ ├── classmidi_1_1Print__inherit__graph.md5 │ │ │ ├── classmidi_1_1Print__inherit__graph.png │ │ │ ├── classmidi_1_1RingBuffer-members.html │ │ │ ├── classmidi_1_1RingBuffer.html │ │ │ ├── classmidi_1_1multichannel__segment__tracks-members.html │ │ │ ├── classmidi_1_1multichannel__segment__tracks.html │ │ │ ├── classmidi_1_1multichannel__segment__tracks__coll__graph.map │ │ │ ├── classmidi_1_1multichannel__segment__tracks__coll__graph.md5 │ │ │ ├── classmidi_1_1multichannel__segment__tracks__coll__graph.png │ │ │ ├── closed.png │ │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.html │ │ │ ├── doc.png │ │ │ ├── docd.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.svg │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── functions.html │ │ │ ├── functions_func.html │ │ │ ├── functions_vars.html │ │ │ ├── graph_legend.dot │ │ │ ├── graph_legend.html │ │ │ ├── graph_legend.md5 │ │ │ ├── graph_legend.png │ │ │ ├── group__midifile.html │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── inherit_graph_0.map │ │ │ ├── inherit_graph_0.md5 │ │ │ ├── inherit_graph_0.png │ │ │ ├── inherit_graph_1.map │ │ │ ├── inherit_graph_1.md5 │ │ │ ├── inherit_graph_1.png │ │ │ ├── inherit_graph_2.map │ │ │ ├── inherit_graph_2.md5 │ │ │ ├── inherit_graph_2.png │ │ │ ├── inherit_graph_3.map │ │ │ ├── inherit_graph_3.md5 │ │ │ ├── inherit_graph_3.png │ │ │ ├── inherit_graph_4.map │ │ │ ├── inherit_graph_4.md5 │ │ │ ├── inherit_graph_4.png │ │ │ ├── inherit_graph_5.map │ │ │ ├── inherit_graph_5.md5 │ │ │ ├── inherit_graph_5.png │ │ │ ├── inherit_graph_6.map │ │ │ ├── inherit_graph_6.md5 │ │ │ ├── inherit_graph_6.png │ │ │ ├── inherit_graph_7.map │ │ │ ├── inherit_graph_7.md5 │ │ │ ├── inherit_graph_7.png │ │ │ ├── inherit_graph_8.map │ │ │ ├── inherit_graph_8.md5 │ │ │ ├── inherit_graph_8.png │ │ │ ├── inherit_graph_9.map │ │ │ ├── inherit_graph_9.md5 │ │ │ ├── inherit_graph_9.png │ │ │ ├── inherits.html │ │ │ ├── jquery.js │ │ │ ├── md_LICENSE.html │ │ │ ├── md_README.html │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── modules.html │ │ │ ├── nav_f.png │ │ │ ├── nav_fd.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── nav_hd.png │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── classes_1.html │ │ │ ├── classes_1.js │ │ │ ├── classes_2.html │ │ │ ├── classes_2.js │ │ │ ├── close.svg │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── functions_6.html │ │ │ ├── functions_6.js │ │ │ ├── functions_7.html │ │ │ ├── functions_7.js │ │ │ ├── functions_8.html │ │ │ ├── functions_8.js │ │ │ ├── functions_9.html │ │ │ ├── functions_9.js │ │ │ ├── functions_a.html │ │ │ ├── functions_a.js │ │ │ ├── functions_b.html │ │ │ ├── functions_b.js │ │ │ ├── functions_c.html │ │ │ ├── functions_c.js │ │ │ ├── functions_d.html │ │ │ ├── functions_d.js │ │ │ ├── functions_e.html │ │ │ ├── functions_e.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── mag.svg │ │ │ ├── mag_d.svg │ │ │ ├── mag_sel.svg │ │ │ ├── mag_seld.svg │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── variables_0.html │ │ │ └── variables_0.js │ │ │ ├── splitbar.png │ │ │ ├── splitbard.png │ │ │ ├── structmidi_1_1midi__header-members.html │ │ │ ├── structmidi_1_1midi__header.html │ │ │ ├── structmidi_1_1midi__meta__event-members.html │ │ │ ├── structmidi_1_1midi__meta__event.html │ │ │ ├── structmidi_1_1midi__midi__event-members.html │ │ │ ├── structmidi_1_1midi__midi__event.html │ │ │ ├── structmidi_1_1midi__midi__event__inherit__graph.map │ │ │ ├── structmidi_1_1midi__midi__event__inherit__graph.md5 │ │ │ ├── structmidi_1_1midi__midi__event__inherit__graph.png │ │ │ ├── structmidi_1_1midi__parser__state-members.html │ │ │ ├── structmidi_1_1midi__parser__state.html │ │ │ ├── structmidi_1_1midi__parser__state__coll__graph.map │ │ │ ├── structmidi_1_1midi__parser__state__coll__graph.md5 │ │ │ ├── structmidi_1_1midi__parser__state__coll__graph.png │ │ │ ├── structmidi_1_1midi__sysex__event-members.html │ │ │ ├── structmidi_1_1midi__sysex__event.html │ │ │ ├── structmidi_1_1midi__time__event-members.html │ │ │ ├── structmidi_1_1midi__time__event.html │ │ │ ├── structmidi_1_1midi__time__event__coll__graph.map │ │ │ ├── structmidi_1_1midi__time__event__coll__graph.md5 │ │ │ ├── structmidi_1_1midi__time__event__coll__graph.png │ │ │ ├── structmidi_1_1midi__time__event__inherit__graph.map │ │ │ ├── structmidi_1_1midi__time__event__inherit__graph.md5 │ │ │ ├── structmidi_1_1midi__time__event__inherit__graph.png │ │ │ ├── structmidi_1_1midi__track-members.html │ │ │ ├── structmidi_1_1midi__track.html │ │ │ ├── structmidi__header-members.html │ │ │ ├── structmidi__header.html │ │ │ ├── structmidi__meta__event-members.html │ │ │ ├── structmidi__meta__event.html │ │ │ ├── structmidi__midi__event-members.html │ │ │ ├── structmidi__midi__event.html │ │ │ ├── structmidi__parser__state-members.html │ │ │ ├── structmidi__parser__state.html │ │ │ ├── structmidi__parser__state__coll__graph.dot │ │ │ ├── structmidi__parser__state__coll__graph.map │ │ │ ├── structmidi__parser__state__coll__graph.md5 │ │ │ ├── structmidi__parser__state__coll__graph.png │ │ │ ├── structmidi__sysex__event-members.html │ │ │ ├── structmidi__sysex__event.html │ │ │ ├── structmidi__track-members.html │ │ │ ├── structmidi__track.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_ad.png │ │ │ ├── tab_b.png │ │ │ ├── tab_bd.png │ │ │ ├── tab_h.png │ │ │ ├── tab_hd.png │ │ │ ├── tab_s.png │ │ │ ├── tab_sd.png │ │ │ └── tabs.css │ ├── examples │ │ ├── main.cpp │ │ ├── midi-parse-multitrack │ │ │ ├── CMakeLists.txt │ │ │ └── midi-parse-multitrack.ino │ │ ├── midi-parse-udp │ │ │ └── midi-parse-udp.ino │ │ ├── midi-parse-using-audiotools-multi │ │ │ └── midi-parse-using-audiotools-multi.ino │ │ ├── midi-parse-using-audiotools │ │ │ └── midi-parse-using-audiotools.ino │ │ └── midi-parse │ │ │ ├── CMakeLists.txt │ │ │ └── midi-parse.ino │ ├── library.properties │ └── src │ │ ├── MidiFileParser.h │ │ ├── MidiFileParserMultiTrack.h │ │ ├── MidiFileParserOut.h │ │ ├── MidiFileParserState.h │ │ ├── RingBuffer.h │ │ └── examples │ │ └── example-midi.h ├── edit.h ├── edit.htm ├── edit.htm.gz ├── edit.htm.gz.h └── ffunicode.c ├── updateWeb.sh ├── web ├── Blockly.html ├── css │ └── csss.css ├── favicon.ico ├── index.html └── js │ ├── jss.js │ ├── jss2.js │ └── jss3.js └── 图像资源 ├── DPP.xbm ├── DPP.xcf ├── ESPTouch.xcf ├── Manual.xbm ├── Manual.xcf ├── OOBE_开始.xbm ├── OOBE_开始.xcf ├── OOBE_检查连线.xbm ├── OOBE_检查连线.xcf ├── OOBE_背景.xbm ├── OOBE_背景.xcf ├── RTC偏移.xbm ├── RTC偏移.xcf ├── clock.xbm ├── clock_cloud.xbm ├── debug.xbm ├── debug.xcf ├── esptouch.xbm ├── favicon.ico ├── fontawesome-pro-5.13.0-web.tar.gz ├── power.xbm ├── settings.jpeg ├── settings.xbm ├── svgs ├── 其它图标.tar.gz └── 用上的 │ ├── alarm-clock.xbm │ ├── alarm-clock.xcf │ ├── battery-empty.svg │ ├── battery-empty.xbm │ ├── battery-full.svg │ ├── battery-full.xbm │ ├── battery-quarter.svg │ ├── battery-quarter.xbm │ ├── battery-three-quarters.svg │ ├── battery-three-quarters.xbm │ ├── battery.xcf │ ├── exclamation-triangle.svg │ ├── usb.svg │ ├── usb.xbm │ ├── usb.xcf │ ├── wifi.svg │ ├── wifi.xbm │ ├── 已处理 │ ├── cloud-moon.svg │ ├── cloud-moon.xbm │ ├── cloud-rain.svg │ ├── cloud-rain.xbm │ ├── cloud-showers.svg │ ├── cloud-showers.xbm │ ├── cloud-sun.svg │ ├── cloud-sun.xbm │ ├── cloud.svg │ ├── cloud.xbm │ ├── fog.svg │ ├── fog.xbm │ ├── moon.svg │ ├── moon.xbm │ ├── snowflake.svg │ ├── snowflake.xbm │ ├── sun-dust.svg │ ├── sun-dust.xbm │ ├── sun.svg │ ├── sun.xbm │ ├── thunderstorm.svg │ ├── thunderstorm.xbm │ ├── wifi.xcf │ ├── wind.svg │ └── wind.xbm │ └── 文件浏览器 │ ├── file-alt.svg │ ├── file-code.svg │ ├── file-exclamation.svg │ ├── file-image.svg │ ├── file-music.svg │ ├── folder.xcf │ ├── imgfile.xcf │ ├── luafile.xcf │ ├── musicfile.xcf │ ├── otherfile.xcf │ ├── sysfile.xcf │ ├── textfile.xcf │ └── xbm │ ├── folder.xbm │ ├── imgfile.xbm │ ├── luafile.xbm │ ├── musicfile.xbm │ ├── otherfile.xbm │ ├── sysfile.xbm │ └── textfile.xbm ├── webserver.xbm ├── 无图标.xbm ├── 无图标.xcf ├── 无标题.xcf ├── 无标题1.xcf ├── 早上好.xbm ├── 早上好.xcf ├── 晚安.xbm ├── 晚安.xcf ├── 没有图标.xbm ├── 电子书.xbm ├── 电子书.xcf ├── 边框-今天.xbm ├── 边框-后天.xbm ├── 边框-室内.xbm ├── 边框-明天.xbm ├── 边框-现在.xbm ├── 边框-现在.xcf ├── 边框.xbm ├── 边框.xcf ├── 返回.xbm ├── 返回1.xbm ├── 预警.xbm └── 预警.xcf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /3D/3D_PCB1_2023-08-16.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/3D/3D_PCB1_2023-08-16.step -------------------------------------------------------------------------------- /3D/makeProjectedPlanarWire.x_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/3D/makeProjectedPlanarWire.x_t -------------------------------------------------------------------------------- /3D/外壳.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/3D/外壳.STL -------------------------------------------------------------------------------- /3D/外壳_没有传感器孔.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/3D/外壳_没有传感器孔.STL -------------------------------------------------------------------------------- /3D/新版3D外壳(减少开孔数量)/外壳^装配体1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/3D/新版3D外壳(减少开孔数量)/外壳^装配体1.STL -------------------------------------------------------------------------------- /3D/新版3D外壳(减少开孔数量)/装配体1.SLDASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/3D/新版3D外壳(减少开孔数量)/装配体1.SLDASM -------------------------------------------------------------------------------- /3D/装配体1.SLDASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/3D/装配体1.SLDASM -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/README.md -------------------------------------------------------------------------------- /bin/boot_app0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/bin/boot_app0.bin -------------------------------------------------------------------------------- /images/Blockly屏幕截图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/images/Blockly屏幕截图.png -------------------------------------------------------------------------------- /images/封面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/images/封面.png -------------------------------------------------------------------------------- /images/成功.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/images/成功.png -------------------------------------------------------------------------------- /images/未选择设备.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/images/未选择设备.png -------------------------------------------------------------------------------- /images/清除数据.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/images/清除数据.png -------------------------------------------------------------------------------- /images/烧录选项.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/images/烧录选项.png -------------------------------------------------------------------------------- /images/等待烧录完成.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/images/等待烧录完成.png -------------------------------------------------------------------------------- /images/购物车.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/images/购物车.jpg -------------------------------------------------------------------------------- /images/连接设备.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/images/连接设备.png -------------------------------------------------------------------------------- /include/A_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/A_Config.h -------------------------------------------------------------------------------- /include/AppManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/AppManager.h -------------------------------------------------------------------------------- /include/Buzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/Buzzer.h -------------------------------------------------------------------------------- /include/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/GUI.h -------------------------------------------------------------------------------- /include/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/alarm.h -------------------------------------------------------------------------------- /include/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/hal.h -------------------------------------------------------------------------------- /include/img_dpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/img_dpp.h -------------------------------------------------------------------------------- /include/img_esptouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/img_esptouch.h -------------------------------------------------------------------------------- /include/img_goodnightmorning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/img_goodnightmorning.h -------------------------------------------------------------------------------- /include/img_manual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/img_manual.h -------------------------------------------------------------------------------- /include/lua_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/lua_trans.h -------------------------------------------------------------------------------- /include/myNTP.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void NTPSync(); -------------------------------------------------------------------------------- /include/peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/peripherals.h -------------------------------------------------------------------------------- /include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/settings.h -------------------------------------------------------------------------------- /include/weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/include/weather.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/.gitignore -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Adafruit_GFX.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Adafruit_GrayOLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Adafruit_GrayOLED.cpp -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Adafruit_GrayOLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Adafruit_GrayOLED.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Adafruit_SPITFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Adafruit_SPITFT.cpp -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Adafruit_SPITFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Adafruit_SPITFT.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Adafruit_SPITFT_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Adafruit_SPITFT_Macros.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMono12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMono18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMono24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMono9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMonoBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMonoBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMonoBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSans12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSans18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSans24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSans9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSansBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSansBold12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSansBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSansBold18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSansBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSansBold24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSansOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSansOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSansOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSansOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerifBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerifBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerifBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerifBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic12pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic18pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic24pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic9pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/Org_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/Org_01.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/Picopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/Picopixel.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/Tiny3x3a2pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/Tiny3x3a2pt7b.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/Fonts/TomThumb.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/README.md -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS = . 2 | -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/fontconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/fontconvert/Makefile -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/fontconvert/bdf2adafruit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/fontconvert/bdf2adafruit.py -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/fontconvert/fontconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/fontconvert/fontconvert.c -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/fontconvert/fontconvert_win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/fontconvert/fontconvert_win.md -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/fontconvert/makefonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/fontconvert/makefonts.sh -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/gfxfont.h -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/glcdfont.c -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/library.properties -------------------------------------------------------------------------------- /lib/Adafruit-GFX-Library/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit-GFX-Library/license.txt -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_AHTX0-master/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_AHTX0-master/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | Doxyfile 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/Adafruit_AHTX0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_AHTX0-master/Adafruit_AHTX0.cpp -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/Adafruit_AHTX0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_AHTX0-master/Adafruit_AHTX0.h -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_AHTX0-master/README.md -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/assets/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_AHTX0-master/assets/board.png -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_AHTX0-master/code-of-conduct.md -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_AHTX0-master/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_AHTX0-master/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_AHTX0-master/license.txt -------------------------------------------------------------------------------- /lib/Adafruit_BMP280_Library-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BMP280_Library-master/.gitignore -------------------------------------------------------------------------------- /lib/Adafruit_BMP280_Library-master/Adafruit_BMP280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BMP280_Library-master/Adafruit_BMP280.cpp -------------------------------------------------------------------------------- /lib/Adafruit_BMP280_Library-master/Adafruit_BMP280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BMP280_Library-master/Adafruit_BMP280.h -------------------------------------------------------------------------------- /lib/Adafruit_BMP280_Library-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BMP280_Library-master/README.md -------------------------------------------------------------------------------- /lib/Adafruit_BMP280_Library-master/assets/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BMP280_Library-master/assets/board.jpg -------------------------------------------------------------------------------- /lib/Adafruit_BMP280_Library-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BMP280_Library-master/keywords.txt -------------------------------------------------------------------------------- /lib/Adafruit_BMP280_Library-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BMP280_Library-master/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_BusIO_Register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/Adafruit_BusIO_Register.cpp -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_BusIO_Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/Adafruit_BusIO_Register.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_I2CDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/Adafruit_I2CDevice.cpp -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_I2CDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/Adafruit_I2CDevice.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_I2CRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/Adafruit_I2CRegister.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_SPIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/Adafruit_SPIDevice.cpp -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_SPIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/Adafruit_SPIDevice.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/LICENSE -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/README.md -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS = . 2 | -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_BusIO/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/.gitignore -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/Adafruit_SGP30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/Adafruit_SGP30.cpp -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/Adafruit_SGP30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/Adafruit_SGP30.h -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/README.md -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/assets/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/assets/board.jpg -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/code-of-conduct.md -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_SGP30-master/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_SGP30-master/license.txt -------------------------------------------------------------------------------- /lib/Adafruit_Sensor-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_Sensor-master/.gitignore -------------------------------------------------------------------------------- /lib/Adafruit_Sensor-master/Adafruit_Sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_Sensor-master/Adafruit_Sensor.cpp -------------------------------------------------------------------------------- /lib/Adafruit_Sensor-master/Adafruit_Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_Sensor-master/Adafruit_Sensor.h -------------------------------------------------------------------------------- /lib/Adafruit_Sensor-master/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_Sensor-master/LICENSE.txt -------------------------------------------------------------------------------- /lib/Adafruit_Sensor-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_Sensor-master/README.md -------------------------------------------------------------------------------- /lib/Adafruit_Sensor-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/Adafruit_Sensor-master/library.properties -------------------------------------------------------------------------------- /lib/ArduinoJson/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/.clang-format -------------------------------------------------------------------------------- /lib/ArduinoJson/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /lib/ArduinoJson/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /lib/ArduinoJson/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /lib/ArduinoJson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/.gitignore -------------------------------------------------------------------------------- /lib/ArduinoJson/.mbedignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/.mbedignore -------------------------------------------------------------------------------- /lib/ArduinoJson/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/.piopm -------------------------------------------------------------------------------- /lib/ArduinoJson/.prettierignore: -------------------------------------------------------------------------------- 1 | *.md 2 | -------------------------------------------------------------------------------- /lib/ArduinoJson/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/ArduinoJson.h -------------------------------------------------------------------------------- /lib/ArduinoJson/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/CHANGELOG.md -------------------------------------------------------------------------------- /lib/ArduinoJson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/ArduinoJson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/LICENSE.md -------------------------------------------------------------------------------- /lib/ArduinoJson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/README.md -------------------------------------------------------------------------------- /lib/ArduinoJson/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/SUPPORT.md -------------------------------------------------------------------------------- /lib/ArduinoJson/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/appveyor.yml -------------------------------------------------------------------------------- /lib/ArduinoJson/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/banner.svg -------------------------------------------------------------------------------- /lib/ArduinoJson/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := src 2 | -------------------------------------------------------------------------------- /lib/ArduinoJson/examples/JsonServer/JsonServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/examples/JsonServer/JsonServer.ino -------------------------------------------------------------------------------- /lib/ArduinoJson/examples/JsonUdpBeacon/JsonUdpBeacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/examples/JsonUdpBeacon/JsonUdpBeacon.ino -------------------------------------------------------------------------------- /lib/ArduinoJson/examples/MsgPackParser/MsgPackParser.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/examples/MsgPackParser/MsgPackParser.ino -------------------------------------------------------------------------------- /lib/ArduinoJson/examples/StringExample/StringExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/examples/StringExample/StringExample.ino -------------------------------------------------------------------------------- /lib/ArduinoJson/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/keywords.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/library.json -------------------------------------------------------------------------------- /lib/ArduinoJson/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/library.properties -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson.h -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Array/ArrayFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Array/ArrayFunctions.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Array/ArrayImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Array/ArrayImpl.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Array/ArrayIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Array/ArrayIterator.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Array/ArrayRef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Array/ArrayRef.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Array/ArrayShortcuts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Array/ArrayShortcuts.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Array/ElementProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Array/ElementProxy.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Array/Utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Array/Utilities.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Configuration.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Json/EscapeSequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Json/EscapeSequence.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Json/JsonSerializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Json/JsonSerializer.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Json/Latch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Json/Latch.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Json/TextFormatter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Json/TextFormatter.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Json/Utf16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Json/Utf16.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Json/Utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Json/Utf8.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Memory/Alignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Memory/Alignment.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Memory/MemoryPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Memory/MemoryPool.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Misc/SerializedValue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Misc/SerializedValue.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Misc/Visitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Misc/Visitable.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/MsgPack/endianess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/MsgPack/endianess.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/MsgPack/ieee754.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/MsgPack/ieee754.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Namespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Namespace.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Numbers/Float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Numbers/Float.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Numbers/FloatParts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Numbers/FloatParts.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Numbers/FloatTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Numbers/FloatTraits.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Numbers/Integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Numbers/Integer.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Numbers/parseNumber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Numbers/parseNumber.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Object/MemberProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Object/MemberProxy.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Object/ObjectImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Object/ObjectImpl.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Object/ObjectRef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Object/ObjectRef.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Object/Pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Object/Pair.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/alias_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/alias_cast.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/assert.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/attributes.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/ctype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/ctype.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/integer.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/limits.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/math.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/mpl/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/mpl/max.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/pgmspace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/pgmspace.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Polyfills/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Polyfills/utility.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Strings/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Strings/String.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Variant/Converter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Variant/Converter.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Variant/VariantRef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Variant/VariantRef.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Variant/VariantTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Variant/VariantTag.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Variant/VariantTo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Variant/VariantTo.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Variant/Visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/Variant/Visitor.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/compatibility.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/ArduinoJson/version.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ArduinoJson/src/CMakeLists.txt -------------------------------------------------------------------------------- /lib/DS3231/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/.gitignore -------------------------------------------------------------------------------- /lib/DS3231/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/.piopm -------------------------------------------------------------------------------- /lib/DS3231/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/DS3231/DS3231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/DS3231.cpp -------------------------------------------------------------------------------- /lib/DS3231/DS3231.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/DS3231.h -------------------------------------------------------------------------------- /lib/DS3231/DS3231.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/DS3231.h.gch -------------------------------------------------------------------------------- /lib/DS3231/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/LICENSE -------------------------------------------------------------------------------- /lib/DS3231/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/README.md -------------------------------------------------------------------------------- /lib/DS3231/examples/DS3231_set/DS3231_set.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/examples/DS3231_set/DS3231_set.pde -------------------------------------------------------------------------------- /lib/DS3231/examples/DS3231_test/.DS3231_test.pde.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/examples/DS3231_test/.DS3231_test.pde.swp -------------------------------------------------------------------------------- /lib/DS3231/examples/DS3231_test/DS3231_test.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/examples/DS3231_test/DS3231_test.pde -------------------------------------------------------------------------------- /lib/DS3231/examples/echo_time/echo_time.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/examples/echo_time/echo_time.pde -------------------------------------------------------------------------------- /lib/DS3231/examples/now/now.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/examples/now/now.pde -------------------------------------------------------------------------------- /lib/DS3231/examples/set_echo/set_echo.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/examples/set_echo/set_echo.pde -------------------------------------------------------------------------------- /lib/DS3231/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/keywords.txt -------------------------------------------------------------------------------- /lib/DS3231/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/DS3231/library.properties -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/.github/stale.yml -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/.travis.yml -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/README.md -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/_config.yml -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/component.mk -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/examples/ESP_AsyncFSBrowser/data/.exclude.files: -------------------------------------------------------------------------------- 1 | /*.js.gz 2 | /.exclude.files 3 | -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/examples/regex_patterns/.test.build_flags: -------------------------------------------------------------------------------- 1 | -DASYNCWEBSERVER_REGEX=1 2 | -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/keywords.txt -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/library.json -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/library.properties -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/AsyncEventSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/AsyncEventSource.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/AsyncEventSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/AsyncEventSource.h -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/AsyncJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/AsyncJson.h -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/AsyncWebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/AsyncWebSocket.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/AsyncWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/AsyncWebSocket.h -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/ESPAsyncWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/ESPAsyncWebServer.h -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/SPIFFSEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/SPIFFSEditor.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/SPIFFSEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/SPIFFSEditor.h -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/StringArray.h -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/WebAuthentication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/WebAuthentication.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/WebAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/WebAuthentication.h -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/WebHandlerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/WebHandlerImpl.h -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/WebHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/WebHandlers.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/WebRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/WebRequest.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/WebResponseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/WebResponseImpl.h -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/WebResponses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/WebResponses.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/WebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/WebServer.cpp -------------------------------------------------------------------------------- /lib/ESPAsyncWebServer-master/src/edit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/ESPAsyncWebServer-master/src/edit.htm -------------------------------------------------------------------------------- /lib/GxEPD2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/GxEPD2/ConnectingHardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/ConnectingHardware.md -------------------------------------------------------------------------------- /lib/GxEPD2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/LICENSE -------------------------------------------------------------------------------- /lib/GxEPD2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/README.md -------------------------------------------------------------------------------- /lib/GxEPD2/examples/GxEPD2_Example/GxEPD2_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/examples/GxEPD2_Example/GxEPD2_Example.ino -------------------------------------------------------------------------------- /lib/GxEPD2/examples/GxEPD2_GFX_Example/BitmapDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/examples/GxEPD2_GFX_Example/BitmapDisplay.h -------------------------------------------------------------------------------- /lib/GxEPD2/examples/GxEPD2_GFX_Example/TextDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/examples/GxEPD2_GFX_Example/TextDisplay.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/examples/GxEPD2_GFX_Example/TextDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/examples/GxEPD2_GFX_Example/TextDisplay.h -------------------------------------------------------------------------------- /lib/GxEPD2/examples/GxEPD2_SD_Example/bitmaps/LOGO.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/examples/GxEPD2_SD_Example/bitmaps/LOGO.BMP -------------------------------------------------------------------------------- /lib/GxEPD2/examples/GxEPD2_SD_Example/bitmaps/bb4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/examples/GxEPD2_SD_Example/bitmaps/bb4.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/Bitmap640x384_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/Bitmap640x384_1.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/Bitmap640x384_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/Bitmap640x384_2.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/bb4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/bb4.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/betty_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/betty_1.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/betty_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/betty_4.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/displayed_bmp_large.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/displayed_bmp_large.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/eighth200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/eighth200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/fifth200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/fifth200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/first200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/first200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/fourth200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/fourth200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/liberato640x384.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/liberato640x384.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/logo.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/logo200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/logo200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/marilyn_240x240x8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/marilyn_240x240x8.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/miniwoof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/miniwoof.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/output5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/output5.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/output6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/output6.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/parrot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/parrot.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/second200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/second200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/seventh200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/seventh200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/sixth200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/sixth200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/t200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/t200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/test.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/third200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/third200x200.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tiger.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tiger.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tiger16T.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tiger16T.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tiger_178x160x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tiger_178x160x4.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tiger_240x317x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tiger_240x317x4.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tiger_320x200x24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tiger_320x200x24.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tractor_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tractor_1.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tractor_11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tractor_11.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tractor_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tractor_4.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tractor_44.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tractor_44.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tractor_8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tractor_8.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/tractor_88.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/tractor_88.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/bitmaps/woof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/bitmaps/woof.bmp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/sw_spi/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/sw_spi/README.MD -------------------------------------------------------------------------------- /lib/GxEPD2/extras/sw_spi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/sw_spi/README.txt -------------------------------------------------------------------------------- /lib/GxEPD2/extras/sw_spi/src/GxEPD2_EPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/sw_spi/src/GxEPD2_EPD.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/extras/sw_spi/src/GxEPD2_EPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/extras/sw_spi/src/GxEPD2_EPD.h -------------------------------------------------------------------------------- /lib/GxEPD2/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/library.properties -------------------------------------------------------------------------------- /lib/GxEPD2/src/GxEPD2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/GxEPD2.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/GxEPD2_3C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/GxEPD2_3C.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/GxEPD2_4C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/GxEPD2_4C.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/GxEPD2_7C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/GxEPD2_7C.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/GxEPD2_BW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/GxEPD2_BW.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/GxEPD2_EPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/GxEPD2_EPD.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/GxEPD2_EPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/GxEPD2_EPD.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/GxEPD2_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/GxEPD2_GFX.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps104x212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps104x212.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps128x250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps128x250.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps128x296.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps128x296.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps1304x984.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps1304x984.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps152x152.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps152x152.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps152x296.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps152x296.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps176x264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps176x264.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps200x200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps200x200.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps240x416.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps240x416.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c104x212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c104x212.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c128x250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c128x250.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c128x296.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c128x296.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c1304x984.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c1304x984.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c152x296.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c152x296.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c176x264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c176x264.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c200x200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c200x200.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c400x300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c400x300.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c648x480.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c648x480.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c800x480.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c800x480.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps3c880x528.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps3c880x528.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps400x300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps400x300.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps640x384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps640x384.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps648x480.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps648x480.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps7c800x480.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps7c800x480.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps800x480.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps800x480.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/Bitmaps80x128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/Bitmaps80x128.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps104x212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps104x212.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps176x264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps176x264.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps3c104x212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps3c104x212.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps3c128x296.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps3c128x296.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps3c200x200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps3c200x200.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps3c400x300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps3c400x300.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps4c168x168.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps4c168x168.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps7c192x143.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps7c192x143.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps7c300x180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps7c300x180.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps800x600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps800x600.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/bitmaps/WS_Bitmaps80x128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/bitmaps/WS_Bitmaps80x128.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_102.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_102.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_1160_T91.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_1160_T91.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_1160_T91.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_1160_T91.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_1248.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_1248.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_1248.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_1248.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_150_BN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_150_BN.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_150_BN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_150_BN.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154_D67.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154_D67.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154_D67.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154_D67.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154_M09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154_M09.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154_M09.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154_M09.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154_M10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154_M10.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154_M10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154_M10.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154_T8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154_T8.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_154_T8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_154_T8.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_B72.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_B72.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_B72.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_B72.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_B73.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_B73.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_B73.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_B73.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_B74.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_B74.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_B74.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_B74.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_BN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_BN.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_BN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_BN.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_M21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_M21.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_M21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_M21.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_T5D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_T5D.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_T5D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_T5D.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_flex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_flex.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_213_flex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_213_flex.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_260.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_260.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_260.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_260_M01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_260_M01.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_260_M01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_260_M01.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_266_BN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_266_BN.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_266_BN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_266_BN.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_270.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_270.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_270.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_270.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_BS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_BS.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_BS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_BS.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_I6FD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_I6FD.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_I6FD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_I6FD.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_M06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_M06.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_M06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_M06.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_T5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_T5.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_T5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_T5.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_T5D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_T5D.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_T5D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_T5D.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_T94.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_T94.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_T94.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_T94.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_T94_V2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_T94_V2.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_290_T94_V2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_290_T94_V2.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_370_TC1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_370_TC1.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_370_TC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_370_TC1.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_371.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_371.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_371.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_371.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_420.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_420.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_420.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_420.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_420_M01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_420_M01.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_420_M01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_420_M01.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_583.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_583.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_583.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_583.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_583_T8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_583_T8.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_583_T8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_583_T8.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_750.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_750.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_750.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_750.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_750_T7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_750_T7.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_750_T7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_750_T7.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_750_YT7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_750_YT7.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd/GxEPD2_750_YT7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd/GxEPD2_750_YT7.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_1248c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_1248c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_1248c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_1248c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_154_Z90c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_154_Z90c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_154_Z90c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_154_Z90c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_154c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_154c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_154c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_154c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_213_Z19c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_213_Z19c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_213_Z19c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_213_Z19c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_213_Z98c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_213_Z98c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_213_Z98c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_213_Z98c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_213c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_213c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_213c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_213c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_266c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_266c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_266c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_266c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_270c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_270c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_270c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_270c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_290_C90c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_290_C90c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_290_C90c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_290_C90c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_290_Z13c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_290_Z13c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_290_Z13c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_290_Z13c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_290c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_290c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_290c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_290c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_420c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_420c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_420c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_420c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_420c_Z21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_420c_Z21.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_420c_Z21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_420c_Z21.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_583c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_583c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_583c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_583c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_583c_Z83.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_583c_Z83.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_583c_Z83.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_583c_Z83.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_750c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_750c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_750c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_750c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_750c_Z08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_750c_Z08.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_750c_Z08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_750c_Z08.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_750c_Z90.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_750c_Z90.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd3c/GxEPD2_750c_Z90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd3c/GxEPD2_750c_Z90.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd4c/GxEPD2_437c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd4c/GxEPD2_437c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd4c/GxEPD2_437c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd4c/GxEPD2_437c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd7c/GxEPD2_565c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd7c/GxEPD2_565c.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd7c/GxEPD2_565c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd7c/GxEPD2_565c.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd7c/GxEPD2_730c_GDEY073D46.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd7c/GxEPD2_730c_GDEY073D46.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/epd7c/GxEPD2_730c_GDEY073D46.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/epd7c/GxEPD2_730c_GDEY073D46.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdeq/GxEPD2_583_GDEQ0583T31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdeq/GxEPD2_583_GDEQ0583T31.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdeq/GxEPD2_583_GDEQ0583T31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdeq/GxEPD2_583_GDEQ0583T31.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_154_GDEY0154D67.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_154_GDEY0154D67.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_154_GDEY0154D67.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_154_GDEY0154D67.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_213_GDEY0213B74.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_213_GDEY0213B74.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_213_GDEY0213B74.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_213_GDEY0213B74.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_266_GDEY0266T90.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_266_GDEY0266T90.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_266_GDEY0266T90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_266_GDEY0266T90.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_270_GDEY027T91.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_270_GDEY027T91.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_270_GDEY027T91.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_270_GDEY027T91.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_290_GDEY029T94.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_290_GDEY029T94.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_290_GDEY029T94.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_290_GDEY029T94.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_420_GDEY042T91.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_420_GDEY042T91.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/gdey/GxEPD2_420_GDEY042T91.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/gdey/GxEPD2_420_GDEY042T91.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/it8951/GxEPD2_it103_1872x1404.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/it8951/GxEPD2_it103_1872x1404.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/it8951/GxEPD2_it103_1872x1404.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/it8951/GxEPD2_it103_1872x1404.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/it8951/GxEPD2_it60.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/it8951/GxEPD2_it60.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/it8951/GxEPD2_it60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/it8951/GxEPD2_it60.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/it8951/GxEPD2_it60_1448x1072.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/it8951/GxEPD2_it60_1448x1072.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/it8951/GxEPD2_it60_1448x1072.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/it8951/GxEPD2_it60_1448x1072.h -------------------------------------------------------------------------------- /lib/GxEPD2/src/it8951/GxEPD2_it78_1872x1404.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/it8951/GxEPD2_it78_1872x1404.cpp -------------------------------------------------------------------------------- /lib/GxEPD2/src/it8951/GxEPD2_it78_1872x1404.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/GxEPD2/src/it8951/GxEPD2_it78_1872x1404.h -------------------------------------------------------------------------------- /lib/OneButton/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/CHANGELOG.md -------------------------------------------------------------------------------- /lib/OneButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/LICENSE -------------------------------------------------------------------------------- /lib/OneButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/README.md -------------------------------------------------------------------------------- /lib/OneButton/examples/BlinkMachine/BlinkMachine.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/examples/BlinkMachine/BlinkMachine.ino -------------------------------------------------------------------------------- /lib/OneButton/examples/SpecialInput/SpecialInput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/examples/SpecialInput/SpecialInput.ino -------------------------------------------------------------------------------- /lib/OneButton/examples/TwoButtons/TwoButtons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/examples/TwoButtons/TwoButtons.ino -------------------------------------------------------------------------------- /lib/OneButton/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/keywords.txt -------------------------------------------------------------------------------- /lib/OneButton/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/library.json -------------------------------------------------------------------------------- /lib/OneButton/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/library.properties -------------------------------------------------------------------------------- /lib/OneButton/run_cppcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/run_cppcheck.sh -------------------------------------------------------------------------------- /lib/OneButton/src/OneButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/src/OneButton.cpp -------------------------------------------------------------------------------- /lib/OneButton/src/OneButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/src/OneButton.h -------------------------------------------------------------------------------- /lib/OneButton/suppressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/OneButton/suppressions.txt -------------------------------------------------------------------------------- /lib/QRCode/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /lib/QRCode/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/LICENSE.txt -------------------------------------------------------------------------------- /lib/QRCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/README.md -------------------------------------------------------------------------------- /lib/QRCode/examples/QRCode/QRCode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/examples/QRCode/QRCode.ino -------------------------------------------------------------------------------- /lib/QRCode/generate_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/generate_table.py -------------------------------------------------------------------------------- /lib/QRCode/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/keywords.txt -------------------------------------------------------------------------------- /lib/QRCode/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/library.properties -------------------------------------------------------------------------------- /lib/QRCode/src/qrcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/src/qrcode.c -------------------------------------------------------------------------------- /lib/QRCode/src/qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/src/qrcode.h -------------------------------------------------------------------------------- /lib/QRCode/tests/BitBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/tests/BitBuffer.cpp -------------------------------------------------------------------------------- /lib/QRCode/tests/BitBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/tests/BitBuffer.hpp -------------------------------------------------------------------------------- /lib/QRCode/tests/QrCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/tests/QrCode.cpp -------------------------------------------------------------------------------- /lib/QRCode/tests/QrCode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/tests/QrCode.hpp -------------------------------------------------------------------------------- /lib/QRCode/tests/QrSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/tests/QrSegment.cpp -------------------------------------------------------------------------------- /lib/QRCode/tests/QrSegment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/tests/QrSegment.hpp -------------------------------------------------------------------------------- /lib/QRCode/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/tests/README.md -------------------------------------------------------------------------------- /lib/QRCode/tests/run-tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/tests/run-tests.cpp -------------------------------------------------------------------------------- /lib/QRCode/tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/QRCode/tests/run.sh -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/README -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/U8g2_for_Adafruit_GFX/LICENSE -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/U8g2_for_Adafruit_GFX/README.md -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/extras/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/U8g2_for_Adafruit_GFX/extras/ChangeLog -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/extras/develop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/U8g2_for_Adafruit_GFX/extras/develop.txt -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/U8g2_for_Adafruit_GFX/keywords.txt -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/U8g2_for_Adafruit_GFX/library.properties -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/src/U8g2_for_Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/U8g2_for_Adafruit_GFX/src/U8g2_for_Adafruit_GFX.h -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/src/u8g2_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/U8g2_for_Adafruit_GFX/src/u8g2_fonts.c -------------------------------------------------------------------------------- /lib/U8g2_for_Adafruit_GFX/src/u8g2_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/U8g2_for_Adafruit_GFX/src/u8g2_fonts.h -------------------------------------------------------------------------------- /lib/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/Makefile -------------------------------------------------------------------------------- /lib/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lapi.c -------------------------------------------------------------------------------- /lib/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lapi.h -------------------------------------------------------------------------------- /lib/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lauxlib.c -------------------------------------------------------------------------------- /lib/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lauxlib.h -------------------------------------------------------------------------------- /lib/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lbaselib.c -------------------------------------------------------------------------------- /lib/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lcode.c -------------------------------------------------------------------------------- /lib/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lcode.h -------------------------------------------------------------------------------- /lib/lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lcorolib.c -------------------------------------------------------------------------------- /lib/lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lctype.c -------------------------------------------------------------------------------- /lib/lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lctype.h -------------------------------------------------------------------------------- /lib/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ldblib.c -------------------------------------------------------------------------------- /lib/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ldebug.c -------------------------------------------------------------------------------- /lib/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ldebug.h -------------------------------------------------------------------------------- /lib/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ldo.c -------------------------------------------------------------------------------- /lib/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ldo.h -------------------------------------------------------------------------------- /lib/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ldump.c -------------------------------------------------------------------------------- /lib/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lfunc.c -------------------------------------------------------------------------------- /lib/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lfunc.h -------------------------------------------------------------------------------- /lib/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lgc.c -------------------------------------------------------------------------------- /lib/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lgc.h -------------------------------------------------------------------------------- /lib/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/linit.c -------------------------------------------------------------------------------- /lib/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/liolib.c -------------------------------------------------------------------------------- /lib/lua/ljumptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ljumptab.h -------------------------------------------------------------------------------- /lib/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/llex.c -------------------------------------------------------------------------------- /lib/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/llex.h -------------------------------------------------------------------------------- /lib/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/llimits.h -------------------------------------------------------------------------------- /lib/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lmathlib.c -------------------------------------------------------------------------------- /lib/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lmem.c -------------------------------------------------------------------------------- /lib/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lmem.h -------------------------------------------------------------------------------- /lib/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/loadlib.c -------------------------------------------------------------------------------- /lib/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lobject.c -------------------------------------------------------------------------------- /lib/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lobject.h -------------------------------------------------------------------------------- /lib/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lopcodes.c -------------------------------------------------------------------------------- /lib/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lopcodes.h -------------------------------------------------------------------------------- /lib/lua/lopnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lopnames.h -------------------------------------------------------------------------------- /lib/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/loslib.c -------------------------------------------------------------------------------- /lib/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lparser.c -------------------------------------------------------------------------------- /lib/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lparser.h -------------------------------------------------------------------------------- /lib/lua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lprefix.h -------------------------------------------------------------------------------- /lib/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lstate.c -------------------------------------------------------------------------------- /lib/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lstate.h -------------------------------------------------------------------------------- /lib/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lstring.c -------------------------------------------------------------------------------- /lib/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lstring.h -------------------------------------------------------------------------------- /lib/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lstrlib.c -------------------------------------------------------------------------------- /lib/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ltable.c -------------------------------------------------------------------------------- /lib/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ltable.h -------------------------------------------------------------------------------- /lib/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ltablib.c -------------------------------------------------------------------------------- /lib/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ltm.c -------------------------------------------------------------------------------- /lib/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/ltm.h -------------------------------------------------------------------------------- /lib/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lua.c -------------------------------------------------------------------------------- /lib/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lua.h -------------------------------------------------------------------------------- /lib/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lua.hpp -------------------------------------------------------------------------------- /lib/lua/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/luac.c -------------------------------------------------------------------------------- /lib/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/luaconf.h -------------------------------------------------------------------------------- /lib/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lualib.h -------------------------------------------------------------------------------- /lib/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lundump.c -------------------------------------------------------------------------------- /lib/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lundump.h -------------------------------------------------------------------------------- /lib/lua/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lutf8lib.c -------------------------------------------------------------------------------- /lib/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lvm.c -------------------------------------------------------------------------------- /lib/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lvm.h -------------------------------------------------------------------------------- /lib/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lzio.c -------------------------------------------------------------------------------- /lib/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/lib/lua/lzio.h -------------------------------------------------------------------------------- /mypartitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/mypartitions.csv -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/platformio.ini -------------------------------------------------------------------------------- /releaseBin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/releaseBin.sh -------------------------------------------------------------------------------- /src/AppManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/AppManager.cpp -------------------------------------------------------------------------------- /src/Buzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/Buzzer.cpp -------------------------------------------------------------------------------- /src/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/GUI.cpp -------------------------------------------------------------------------------- /src/IPv6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/IPv6.cpp -------------------------------------------------------------------------------- /src/alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/alarm.cpp -------------------------------------------------------------------------------- /src/apps/appBilibili.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appBilibili.cpp -------------------------------------------------------------------------------- /src/apps/appBuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appBuzzer.cpp -------------------------------------------------------------------------------- /src/apps/appClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appClock.cpp -------------------------------------------------------------------------------- /src/apps/appClockOnly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appClockOnly.cpp -------------------------------------------------------------------------------- /src/apps/appEBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appEBook.cpp -------------------------------------------------------------------------------- /src/apps/appInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appInstaller.cpp -------------------------------------------------------------------------------- /src/apps/appOOBE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appOOBE.cpp -------------------------------------------------------------------------------- /src/apps/appRTCOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appRTCOffset.cpp -------------------------------------------------------------------------------- /src/apps/appSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appSettings.cpp -------------------------------------------------------------------------------- /src/apps/appTemplate.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appTemplate.cpp.bak -------------------------------------------------------------------------------- /src/apps/appWarning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appWarning.cpp -------------------------------------------------------------------------------- /src/apps/appWebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/apps/appWebServer.cpp -------------------------------------------------------------------------------- /src/battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/battery.cpp -------------------------------------------------------------------------------- /src/daily.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/daily.cpp -------------------------------------------------------------------------------- /src/esp_dpp_prov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/esp_dpp_prov.cpp -------------------------------------------------------------------------------- /src/fileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/fileManager.cpp -------------------------------------------------------------------------------- /src/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/graph.cpp -------------------------------------------------------------------------------- /src/hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/hal.cpp -------------------------------------------------------------------------------- /src/lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/README.md -------------------------------------------------------------------------------- /src/lua/lua_trans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/lua_trans.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_appManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_appManager.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_buzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_buzzer.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_display.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_gui.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_hal.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_http.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_peri_aht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_peri_aht.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_peri_bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_peri_bmp.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_peri_sgp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_peri_sgp.cpp -------------------------------------------------------------------------------- /src/lua/modules/lua_weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/lua/modules/lua_weather.cpp -------------------------------------------------------------------------------- /src/luaAppWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/luaAppWrapper.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/myNTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/myNTP.cpp -------------------------------------------------------------------------------- /src/peripherals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/peripherals.cpp -------------------------------------------------------------------------------- /src/weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/weather.cpp -------------------------------------------------------------------------------- /src/webserver/blockly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/webserver/blockly.h -------------------------------------------------------------------------------- /src/webserver/csss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/webserver/csss.h -------------------------------------------------------------------------------- /src/webserver/favicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/webserver/favicon.h -------------------------------------------------------------------------------- /src/webserver/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/webserver/index.h -------------------------------------------------------------------------------- /src/webserver/jss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/webserver/jss.h -------------------------------------------------------------------------------- /src/webserver/jss2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/webserver/jss2.h -------------------------------------------------------------------------------- /src/webserver/jss3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/webserver/jss3.h -------------------------------------------------------------------------------- /src/webserver/toolbox_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/webserver/toolbox_display.h -------------------------------------------------------------------------------- /src/webserver/webserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/src/webserver/webserver.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/test/README -------------------------------------------------------------------------------- /tools/midi/midi_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/midi_process.py -------------------------------------------------------------------------------- /tools/midi/测试用midi/Summer.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/测试用midi/Summer.mid -------------------------------------------------------------------------------- /tools/midi/测试用midi/克罗地亚狂想曲.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/测试用midi/克罗地亚狂想曲.mid -------------------------------------------------------------------------------- /tools/midi/测试用midi/天空之城.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/测试用midi/天空之城.mid -------------------------------------------------------------------------------- /tools/midi/测试用midi/来源网络,不保证可用,不保证单音轨: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/midi/测试用midi/水边的阿狄丽娜.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/测试用midi/水边的阿狄丽娜.mid -------------------------------------------------------------------------------- /tools/midi/测试用midi/献给爱丽丝.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/测试用midi/献给爱丽丝.mid -------------------------------------------------------------------------------- /tools/midi/测试用midi/荷塘月色.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/测试用midi/荷塘月色.mid -------------------------------------------------------------------------------- /tools/midi/测试用midi/野蜂飞舞.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/测试用midi/野蜂飞舞.mid -------------------------------------------------------------------------------- /tools/midi/测试用midi/隐形的翅膀.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/测试用midi/隐形的翅膀.mid -------------------------------------------------------------------------------- /tools/midi/测试用midi/雨的印记.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/midi/测试用midi/雨的印记.mid -------------------------------------------------------------------------------- /tools/xbm_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/tools/xbm_parser.py -------------------------------------------------------------------------------- /unused/Cartridge-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/LICENSE -------------------------------------------------------------------------------- /unused/Cartridge-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/README.md -------------------------------------------------------------------------------- /unused/Cartridge-master/converter/05 African Mines.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/converter/05 African Mines.vgz -------------------------------------------------------------------------------- /unused/Cartridge-master/converter/CONVERT_VGZ_TO_ARDUINO.bat: -------------------------------------------------------------------------------- 1 | python.exe ./vgm_to_arduino.py %1 2 | pause -------------------------------------------------------------------------------- /unused/Cartridge-master/converter/DROP YOUR .VGZ FILES ONTO THE .BAT SCRIPT ABOVE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unused/Cartridge-master/converter/vgm_to_arduino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/converter/vgm_to_arduino.py -------------------------------------------------------------------------------- /unused/Cartridge-master/examples/NES_DEMO/NES_DEMO.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/examples/NES_DEMO/NES_DEMO.ino -------------------------------------------------------------------------------- /unused/Cartridge-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/keywords.txt -------------------------------------------------------------------------------- /unused/Cartridge-master/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/library.json -------------------------------------------------------------------------------- /unused/Cartridge-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/library.properties -------------------------------------------------------------------------------- /unused/Cartridge-master/src/Cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/src/Cartridge.cpp -------------------------------------------------------------------------------- /unused/Cartridge-master/src/Cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/Cartridge-master/src/Cartridge.h -------------------------------------------------------------------------------- /unused/SDConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/SDConv.cpp -------------------------------------------------------------------------------- /unused/SDConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/SDConv.h -------------------------------------------------------------------------------- /unused/ace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/ace.h -------------------------------------------------------------------------------- /unused/appClock_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/appClock_demo.cpp -------------------------------------------------------------------------------- /unused/appLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/appLog.cpp -------------------------------------------------------------------------------- /unused/appMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/appMidi.cpp -------------------------------------------------------------------------------- /unused/appNES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/appNES.cpp -------------------------------------------------------------------------------- /unused/apps/appDebug.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/apps/appDebug.cpp.bak -------------------------------------------------------------------------------- /unused/apps/appDemoAHT20.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/apps/appDemoAHT20.cpp.bak -------------------------------------------------------------------------------- /unused/apps/appDemoBMP280.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/apps/appDemoBMP280.cpp.bak -------------------------------------------------------------------------------- /unused/apps/appPower.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/apps/appPower.cpp.bak -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build/ 3 | .ipynb_checkpoints/ -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/CMakeLists.txt -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/Doxyfile -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/LICENSE.md -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/README.md -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/MidiFileParser_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 20085d8da0874ce257158410176bcd8c -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/MidiFileParser_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 796ba50e9751e47953d3e39800144a69 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/MidiFile_8h__incl.md5: -------------------------------------------------------------------------------- 1 | ecb2a94080044b23a0208ec9244ad246 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/docs/html/bc_s.png -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/docs/html/bdwn.png -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/classMidiFile__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 00920b29b255e2e8f98ebc85622f97cd -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/classmidi_1_1MidiFileParserMultiTrack__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f3abed6c4c5d401ea6f2ac06bdda7838 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/classmidi_1_1MidiFileParserMultiTrack__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 8ab1f5fe224c9bc3473bd1a01f2bf548 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/classmidi_1_1MidiFileParserOut__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0a1e6de303293d717f93faa6890666dc -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/classmidi_1_1MidiFileParser__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 8dd5284e2f6dd39c695ad38484de90c8 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/classmidi_1_1MidiFileParser__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 95a1c4989e5df17bc004b974f2f5d9b7 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/classmidi_1_1Print__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | abd7c3f9f802cc2a669cb73614aef425 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/classmidi_1_1multichannel__segment__tracks__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 397fa9dd08cdb7ea59267d222db2b316 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/docs/html/doc.png -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/docd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/docs/html/docd.png -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/graph_legend.md5: -------------------------------------------------------------------------------- 1 | f51bf6e9a10430aafef59831b08dcbfe -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_0.md5: -------------------------------------------------------------------------------- 1 | d1a71651737f78c30114c059a77e044a -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_1.md5: -------------------------------------------------------------------------------- 1 | 46ead17e3c53711e27d8c9cb31cac24e -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_2.md5: -------------------------------------------------------------------------------- 1 | 8d91d0b4db2b5182213e8acbacbe1d37 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_3.md5: -------------------------------------------------------------------------------- 1 | 819c3f148adece14b419e183555bb763 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_4.md5: -------------------------------------------------------------------------------- 1 | 5454413808d75866b9286abfecf55b3a -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_5.md5: -------------------------------------------------------------------------------- 1 | 222c726ae44019cab672e6c179945b08 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_6.md5: -------------------------------------------------------------------------------- 1 | cbf04bd870b821339ebc794982b61524 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_7.md5: -------------------------------------------------------------------------------- 1 | 81623e0e7ded285dfb9238711d58eed5 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_8.md5: -------------------------------------------------------------------------------- 1 | a15059e6aa0b27f75954b7acdd7cfa43 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/inherit_graph_9.md5: -------------------------------------------------------------------------------- 1 | 10e66fa43e1086e12de8591a0c6a4448 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/docs/html/menu.js -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/docs/html/open.png -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/structmidi_1_1midi__midi__event__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a7b38b4b459742eca1dfcc44e0bfd993 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/structmidi_1_1midi__parser__state__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0061b906a12dac9c4aeffc928a338734 -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/structmidi_1_1midi__time__event__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 43416eb1e29ad84ee4fa55b6e37034ea -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/structmidi_1_1midi__time__event__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 43416eb1e29ad84ee4fa55b6e37034ea -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/structmidi__parser__state__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ddd32d3cc7e5ea22d9bdf35bfee66b6f -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/docs/html/tabs.css -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/examples/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/examples/main.cpp -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/library.properties -------------------------------------------------------------------------------- /unused/arduino-midi-fileparser-main/src/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/arduino-midi-fileparser-main/src/RingBuffer.h -------------------------------------------------------------------------------- /unused/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/edit.h -------------------------------------------------------------------------------- /unused/edit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/edit.htm -------------------------------------------------------------------------------- /unused/edit.htm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/edit.htm.gz -------------------------------------------------------------------------------- /unused/edit.htm.gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/edit.htm.gz.h -------------------------------------------------------------------------------- /unused/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/unused/ffunicode.c -------------------------------------------------------------------------------- /updateWeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/updateWeb.sh -------------------------------------------------------------------------------- /web/Blockly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/web/Blockly.html -------------------------------------------------------------------------------- /web/css/csss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/web/css/csss.css -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/web/index.html -------------------------------------------------------------------------------- /web/js/jss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/web/js/jss.js -------------------------------------------------------------------------------- /web/js/jss2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/web/js/jss2.js -------------------------------------------------------------------------------- /web/js/jss3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/web/js/jss3.js -------------------------------------------------------------------------------- /图像资源/DPP.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/DPP.xbm -------------------------------------------------------------------------------- /图像资源/DPP.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/DPP.xcf -------------------------------------------------------------------------------- /图像资源/ESPTouch.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/ESPTouch.xcf -------------------------------------------------------------------------------- /图像资源/Manual.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/Manual.xbm -------------------------------------------------------------------------------- /图像资源/Manual.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/Manual.xcf -------------------------------------------------------------------------------- /图像资源/OOBE_开始.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/OOBE_开始.xbm -------------------------------------------------------------------------------- /图像资源/OOBE_开始.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/OOBE_开始.xcf -------------------------------------------------------------------------------- /图像资源/OOBE_检查连线.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/OOBE_检查连线.xbm -------------------------------------------------------------------------------- /图像资源/OOBE_检查连线.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/OOBE_检查连线.xcf -------------------------------------------------------------------------------- /图像资源/OOBE_背景.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/OOBE_背景.xbm -------------------------------------------------------------------------------- /图像资源/OOBE_背景.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/OOBE_背景.xcf -------------------------------------------------------------------------------- /图像资源/RTC偏移.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/RTC偏移.xbm -------------------------------------------------------------------------------- /图像资源/RTC偏移.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/RTC偏移.xcf -------------------------------------------------------------------------------- /图像资源/clock.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/clock.xbm -------------------------------------------------------------------------------- /图像资源/clock_cloud.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/clock_cloud.xbm -------------------------------------------------------------------------------- /图像资源/debug.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/debug.xbm -------------------------------------------------------------------------------- /图像资源/debug.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/debug.xcf -------------------------------------------------------------------------------- /图像资源/esptouch.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/esptouch.xbm -------------------------------------------------------------------------------- /图像资源/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/favicon.ico -------------------------------------------------------------------------------- /图像资源/fontawesome-pro-5.13.0-web.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/fontawesome-pro-5.13.0-web.tar.gz -------------------------------------------------------------------------------- /图像资源/power.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/power.xbm -------------------------------------------------------------------------------- /图像资源/settings.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/settings.jpeg -------------------------------------------------------------------------------- /图像资源/settings.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/settings.xbm -------------------------------------------------------------------------------- /图像资源/svgs/其它图标.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/其它图标.tar.gz -------------------------------------------------------------------------------- /图像资源/svgs/用上的/alarm-clock.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/alarm-clock.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/alarm-clock.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/alarm-clock.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/battery-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/battery-empty.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/battery-empty.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/battery-empty.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/battery-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/battery-full.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/battery-full.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/battery-full.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/battery-quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/battery-quarter.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/battery-quarter.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/battery-quarter.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/battery-three-quarters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/battery-three-quarters.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/battery-three-quarters.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/battery-three-quarters.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/battery.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/battery.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/exclamation-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/exclamation-triangle.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/usb.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/usb.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/usb.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/usb.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/usb.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/wifi.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/wifi.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/wifi.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud-moon.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud-moon.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud-moon.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud-rain.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud-rain.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud-rain.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud-showers.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud-showers.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud-showers.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud-sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud-sun.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud-sun.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud-sun.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/cloud.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/cloud.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/fog.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/fog.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/fog.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/moon.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/moon.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/moon.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/snowflake.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/snowflake.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/snowflake.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/sun-dust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/sun-dust.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/sun-dust.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/sun-dust.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/sun.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/sun.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/sun.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/thunderstorm.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/thunderstorm.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/thunderstorm.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/wifi.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/wifi.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/wind.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/已处理/wind.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/已处理/wind.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/file-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/file-alt.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/file-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/file-code.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/file-exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/file-exclamation.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/file-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/file-image.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/file-music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/file-music.svg -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/folder.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/folder.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/imgfile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/imgfile.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/luafile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/luafile.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/musicfile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/musicfile.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/otherfile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/otherfile.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/sysfile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/sysfile.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/textfile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/textfile.xcf -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/xbm/folder.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/xbm/folder.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/xbm/imgfile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/xbm/imgfile.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/xbm/luafile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/xbm/luafile.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/xbm/musicfile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/xbm/musicfile.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/xbm/otherfile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/xbm/otherfile.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/xbm/sysfile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/xbm/sysfile.xbm -------------------------------------------------------------------------------- /图像资源/svgs/用上的/文件浏览器/xbm/textfile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/svgs/用上的/文件浏览器/xbm/textfile.xbm -------------------------------------------------------------------------------- /图像资源/webserver.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/webserver.xbm -------------------------------------------------------------------------------- /图像资源/无图标.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/无图标.xbm -------------------------------------------------------------------------------- /图像资源/无图标.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/无图标.xcf -------------------------------------------------------------------------------- /图像资源/无标题.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/无标题.xcf -------------------------------------------------------------------------------- /图像资源/无标题1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/无标题1.xcf -------------------------------------------------------------------------------- /图像资源/早上好.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/早上好.xbm -------------------------------------------------------------------------------- /图像资源/早上好.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/早上好.xcf -------------------------------------------------------------------------------- /图像资源/晚安.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/晚安.xbm -------------------------------------------------------------------------------- /图像资源/晚安.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/晚安.xcf -------------------------------------------------------------------------------- /图像资源/没有图标.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/没有图标.xbm -------------------------------------------------------------------------------- /图像资源/电子书.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/电子书.xbm -------------------------------------------------------------------------------- /图像资源/电子书.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/电子书.xcf -------------------------------------------------------------------------------- /图像资源/边框-今天.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/边框-今天.xbm -------------------------------------------------------------------------------- /图像资源/边框-后天.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/边框-后天.xbm -------------------------------------------------------------------------------- /图像资源/边框-室内.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/边框-室内.xbm -------------------------------------------------------------------------------- /图像资源/边框-明天.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/边框-明天.xbm -------------------------------------------------------------------------------- /图像资源/边框-现在.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/边框-现在.xbm -------------------------------------------------------------------------------- /图像资源/边框-现在.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/边框-现在.xcf -------------------------------------------------------------------------------- /图像资源/边框.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/边框.xbm -------------------------------------------------------------------------------- /图像资源/边框.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/边框.xcf -------------------------------------------------------------------------------- /图像资源/返回.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/返回.xbm -------------------------------------------------------------------------------- /图像资源/返回1.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/返回1.xbm -------------------------------------------------------------------------------- /图像资源/预警.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/预警.xbm -------------------------------------------------------------------------------- /图像资源/预警.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/LiClock/HEAD/图像资源/预警.xcf --------------------------------------------------------------------------------