├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── case-light-0.8mm-pcb-20mm-straps-2-pla_cut_1.stl ├── include ├── A_config.h ├── Morse.h ├── README ├── WatchBLE.h ├── WatchIR.h ├── alarm.h ├── gui.h ├── hal.h ├── menu.h ├── watchfaces.h └── weather.h ├── lib ├── 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 ├── Arduino_GFX │ ├── Arduino_Canvas.cpp │ ├── Arduino_Canvas.h │ ├── Arduino_Canvas_Indexed.cpp │ ├── Arduino_Canvas_Indexed.h │ ├── Arduino_DataBus.cpp │ ├── Arduino_DataBus.h │ ├── Arduino_Display.h │ ├── Arduino_ESP32SPI.cpp │ ├── Arduino_ESP32SPI.h │ ├── Arduino_ESP32SPI_DMA.cpp │ ├── Arduino_ESP32SPI_DMA.h │ ├── Arduino_G.cpp │ ├── Arduino_G.h │ ├── Arduino_GC9A01.cpp │ ├── Arduino_GC9A01.h │ ├── Arduino_GFX.cpp │ ├── Arduino_GFX.h │ ├── Arduino_HWSPI.cpp │ ├── Arduino_HWSPI.h │ ├── Arduino_HX8347C.cpp │ ├── Arduino_HX8347C.h │ ├── Arduino_HX8352C.cpp │ ├── Arduino_HX8352C.h │ ├── Arduino_HX8357B.cpp │ ├── Arduino_HX8357B.h │ ├── Arduino_ILI9225.cpp │ ├── Arduino_ILI9225.h │ ├── Arduino_ILI9341.cpp │ ├── Arduino_ILI9341.h │ ├── Arduino_ILI9341_M5STACK.cpp │ ├── Arduino_ILI9341_M5STACK.h │ ├── Arduino_ILI9481_18bit.cpp │ ├── Arduino_ILI9481_18bit.h │ ├── Arduino_ILI9486_18bit.cpp │ ├── Arduino_ILI9486_18bit.h │ ├── Arduino_SEPS525.cpp │ ├── Arduino_SEPS525.h │ ├── Arduino_SSD1283A.cpp │ ├── Arduino_SSD1283A.h │ ├── Arduino_SSD1331.cpp │ ├── Arduino_SSD1331.h │ ├── Arduino_SSD1351.cpp │ ├── Arduino_SSD1351.h │ ├── Arduino_ST7735.cpp │ ├── Arduino_ST7735.h │ ├── Arduino_ST7789.cpp │ ├── Arduino_ST7789.h │ ├── Arduino_ST7796.cpp │ ├── Arduino_ST7796.h │ ├── Arduino_SWSPI.cpp │ ├── Arduino_SWSPI.h │ ├── Arduino_TFT.cpp │ ├── Arduino_TFT.h │ ├── Arduino_TFT_18bit.cpp │ ├── Arduino_TFT_18bit.h │ ├── README.md │ ├── examples │ │ ├── Clock │ │ │ └── Clock.ino │ │ ├── ESPPhotoFrame │ │ │ ├── ESPPhotoFrame.ino │ │ │ ├── JpegDec.h │ │ │ ├── lgfx_tjpgd.c │ │ │ └── lgfx_tjpgd.h │ │ ├── ESPWiFiAnalyzer │ │ │ └── ESPWiFiAnalyzer.ino │ │ ├── JpegViewer │ │ │ ├── Data │ │ │ │ └── octocat.jpg │ │ │ ├── JpegDec.h │ │ │ ├── JpegViewer.ino │ │ │ ├── lgfx_tjpgd.c │ │ │ └── lgfx_tjpgd.h │ │ ├── MultipleDeviceTest │ │ │ └── MultipleDeviceTest.ino │ │ ├── PDQgraphicstest │ │ │ └── PDQgraphicstest.ino │ │ └── WioWiFiAnalyzer │ │ │ └── WioWiFiAnalyzer.ino │ ├── gfxfont.h │ └── glcdfont.c ├── BlueDot BMA400 Library │ ├── .piopm │ ├── BlueDot_BMA400.cpp │ ├── BlueDot_BMA400.h │ ├── README.md │ ├── examples │ │ └── BlueDot_BMA400_Test │ │ │ └── BlueDot_BMA400_Test.ino │ └── library.properties ├── Button2 │ ├── .gitignore │ ├── .piopm │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── LongpressHandler │ │ │ └── LongpressHandler.ino │ │ ├── MultiHandler │ │ │ └── MultiHandler.ino │ │ ├── MultipleButtons │ │ │ └── MultipleButtons.ino │ │ ├── SingleButton │ │ │ └── SingleButton.ino │ │ └── SingleButtonSimple │ │ │ └── SingleButtonSimple.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── Button2.cpp │ │ └── Button2.h ├── 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 ├── ESP32-NimBLE-Keyboard │ ├── BleConnectionStatus.cpp │ ├── BleConnectionStatus.h │ ├── BleKeyboard.cpp │ ├── BleKeyboard.h │ ├── KeyboardOutputCallbacks.cpp │ ├── KeyboardOutputCallbacks.h │ ├── README.md │ ├── examples │ │ └── SendKeyStrokes │ │ │ └── SendKeyStrokes.ino │ ├── keywords.txt │ └── library.properties ├── IRremoteESP8266 │ ├── .gitattributes │ ├── .gitignore │ ├── .piopm │ ├── .style.yapf │ ├── CPPLINT.cfg │ ├── Doxyfile │ ├── LICENSE.txt │ ├── README.md │ ├── README_de.md │ ├── README_fr.md │ ├── ReleaseNotes.md │ ├── SupportedProtocols.md │ ├── examples │ │ ├── BlynkIrRemote │ │ │ ├── BlynkIrRemote.ino │ │ │ └── platformio.ini │ │ ├── CommonAcControl │ │ │ ├── CommonAcControl.ino │ │ │ └── platformio.ini │ │ ├── ControlSamsungAC │ │ │ ├── ControlSamsungAC.ino │ │ │ └── platformio.ini │ │ ├── DumbIRRepeater │ │ │ ├── DumbIRRepeater.ino │ │ │ └── platformio.ini │ │ ├── IRGCSendDemo │ │ │ ├── IRGCSendDemo.ino │ │ │ └── platformio.ini │ │ ├── IRGCTCPServer │ │ │ ├── IRGCTCPServer.ino │ │ │ └── platformio.ini │ │ ├── IRMQTTServer │ │ │ ├── IRMQTTServer.h │ │ │ ├── IRMQTTServer.ino │ │ │ └── platformio.ini │ │ ├── IRServer │ │ │ ├── IRServer.ino │ │ │ └── platformio.ini │ │ ├── IRrecvDemo │ │ │ ├── IRrecvDemo.ino │ │ │ └── platformio.ini │ │ ├── IRrecvDump │ │ │ ├── IRrecvDump.ino │ │ │ └── platformio.ini │ │ ├── IRrecvDumpV2 │ │ │ ├── IRrecvDumpV2.ino │ │ │ └── platformio.ini │ │ ├── IRrecvDumpV3 │ │ │ ├── BaseOTA.h │ │ │ ├── IRrecvDumpV3.ino │ │ │ └── platformio.ini │ │ ├── IRsendDemo │ │ │ ├── IRsendDemo.ino │ │ │ └── platformio.ini │ │ ├── IRsendProntoDemo │ │ │ ├── IRsendProntoDemo.ino │ │ │ └── platformio.ini │ │ ├── JVCPanasonicSendDemo │ │ │ ├── JVCPanasonicSendDemo.ino │ │ │ └── platformio.ini │ │ ├── LGACSend │ │ │ ├── LGACSend.ino │ │ │ └── platformio.ini │ │ ├── SmartIRRepeater │ │ │ ├── SmartIRRepeater.ino │ │ │ └── platformio.ini │ │ ├── TurnOnArgoAC │ │ │ ├── TurnOnArgoAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnDaikinAC │ │ │ ├── TurnOnDaikinAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnFujitsuAC │ │ │ ├── TurnOnFujitsuAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnGreeAC │ │ │ ├── TurnOnGreeAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnKelvinatorAC │ │ │ ├── TurnOnKelvinatorAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnMitsubishiAC │ │ │ ├── TurnOnMitsubishiAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnMitsubishiHeavyAc │ │ │ ├── TurnOnMitsubishiHeavyAc.ino │ │ │ └── platformio.ini │ │ ├── TurnOnPanasonicAC │ │ │ ├── TurnOnPanasonicAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnToshibaAC │ │ │ ├── TurnOnToshibaAC.ino │ │ │ └── platformio.ini │ │ ├── TurnOnTrotecAC │ │ │ ├── TurnOnTrotecAC.ino │ │ │ └── platformio.ini │ │ └── Web-AC-control │ │ │ ├── README.md │ │ │ ├── Web-AC-control.h │ │ │ ├── Web-AC-control.ino │ │ │ ├── data │ │ │ ├── favicon.ico │ │ │ ├── level_1_off.svg │ │ │ ├── level_1_on.svg │ │ │ ├── level_2_off.svg │ │ │ ├── level_2_on.svg │ │ │ ├── level_3_off.svg │ │ │ ├── level_3_on.svg │ │ │ ├── level_4_off.svg │ │ │ ├── level_4_on.svg │ │ │ ├── ui.html │ │ │ └── ui.js │ │ │ ├── platformio.ini │ │ │ └── printscreen.png │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── platformio.ini │ ├── pylintrc │ ├── src │ │ ├── CPPLINT.cfg │ │ ├── IRac.cpp │ │ ├── IRac.h │ │ ├── IRrecv.cpp │ │ ├── IRrecv.h │ │ ├── IRremoteESP8266.h │ │ ├── IRsend.cpp │ │ ├── IRsend.h │ │ ├── IRtext.cpp │ │ ├── IRtext.h │ │ ├── IRtimer.cpp │ │ ├── IRtimer.h │ │ ├── IRutils.cpp │ │ ├── IRutils.h │ │ ├── i18n.h │ │ ├── ir_Airwell.cpp │ │ ├── ir_Airwell.h │ │ ├── ir_Aiwa.cpp │ │ ├── ir_Amcor.cpp │ │ ├── ir_Amcor.h │ │ ├── ir_Argo.cpp │ │ ├── ir_Argo.h │ │ ├── ir_Bose.cpp │ │ ├── ir_Carrier.cpp │ │ ├── ir_Carrier.h │ │ ├── ir_Coolix.cpp │ │ ├── ir_Coolix.h │ │ ├── ir_Corona.cpp │ │ ├── ir_Corona.h │ │ ├── ir_Daikin.cpp │ │ ├── ir_Daikin.h │ │ ├── ir_Delonghi.cpp │ │ ├── ir_Delonghi.h │ │ ├── ir_Denon.cpp │ │ ├── ir_Dish.cpp │ │ ├── ir_Doshisha.cpp │ │ ├── ir_Ecoclim.cpp │ │ ├── ir_Ecoclim.h │ │ ├── ir_Electra.cpp │ │ ├── ir_Electra.h │ │ ├── ir_EliteScreens.cpp │ │ ├── ir_Epson.cpp │ │ ├── ir_Fujitsu.cpp │ │ ├── ir_Fujitsu.h │ │ ├── ir_GICable.cpp │ │ ├── ir_GlobalCache.cpp │ │ ├── ir_Goodweather.cpp │ │ ├── ir_Goodweather.h │ │ ├── ir_Gree.cpp │ │ ├── ir_Gree.h │ │ ├── ir_Haier.cpp │ │ ├── ir_Haier.h │ │ ├── ir_Hitachi.cpp │ │ ├── ir_Hitachi.h │ │ ├── ir_Inax.cpp │ │ ├── ir_JVC.cpp │ │ ├── ir_Kelon.cpp │ │ ├── ir_Kelon.h │ │ ├── ir_Kelvinator.cpp │ │ ├── ir_Kelvinator.h │ │ ├── ir_LG.cpp │ │ ├── ir_LG.h │ │ ├── ir_Lasertag.cpp │ │ ├── ir_Lego.cpp │ │ ├── ir_Lutron.cpp │ │ ├── ir_MWM.cpp │ │ ├── ir_Magiquest.cpp │ │ ├── ir_Magiquest.h │ │ ├── ir_Metz.cpp │ │ ├── ir_Midea.cpp │ │ ├── ir_Midea.h │ │ ├── ir_MilesTag2.cpp │ │ ├── ir_Mirage.cpp │ │ ├── ir_Mitsubishi.cpp │ │ ├── ir_Mitsubishi.h │ │ ├── ir_MitsubishiHeavy.cpp │ │ ├── ir_MitsubishiHeavy.h │ │ ├── ir_Multibrackets.cpp │ │ ├── ir_NEC.cpp │ │ ├── ir_NEC.h │ │ ├── ir_Neoclima.cpp │ │ ├── ir_Neoclima.h │ │ ├── ir_Nikai.cpp │ │ ├── ir_Panasonic.cpp │ │ ├── ir_Panasonic.h │ │ ├── ir_Pioneer.cpp │ │ ├── ir_Pronto.cpp │ │ ├── ir_RC5_RC6.cpp │ │ ├── ir_RCMM.cpp │ │ ├── ir_Samsung.cpp │ │ ├── ir_Samsung.h │ │ ├── ir_Sanyo.cpp │ │ ├── ir_Sanyo.h │ │ ├── ir_Sharp.cpp │ │ ├── ir_Sharp.h │ │ ├── ir_Sherwood.cpp │ │ ├── ir_Sony.cpp │ │ ├── ir_Symphony.cpp │ │ ├── ir_Tcl.cpp │ │ ├── ir_Tcl.h │ │ ├── ir_Technibel.cpp │ │ ├── ir_Technibel.h │ │ ├── ir_Teco.cpp │ │ ├── ir_Teco.h │ │ ├── ir_Teknopoint.cpp │ │ ├── ir_Toshiba.cpp │ │ ├── ir_Toshiba.h │ │ ├── ir_Transcold.cpp │ │ ├── ir_Transcold.h │ │ ├── ir_Trotec.cpp │ │ ├── ir_Trotec.h │ │ ├── ir_Truma.cpp │ │ ├── ir_Truma.h │ │ ├── ir_Vestel.cpp │ │ ├── ir_Vestel.h │ │ ├── ir_Voltas.cpp │ │ ├── ir_Voltas.h │ │ ├── ir_Whirlpool.cpp │ │ ├── ir_Whirlpool.h │ │ ├── ir_Whynter.cpp │ │ ├── ir_Xmp.cpp │ │ ├── ir_Zepeal.cpp │ │ └── locale │ │ │ ├── README.md │ │ │ ├── de-CH.h │ │ │ ├── de-DE.h │ │ │ ├── defaults.h │ │ │ ├── en-AU.h │ │ │ ├── en-IE.h │ │ │ ├── en-UK.h │ │ │ ├── en-US.h │ │ │ ├── es-ES.h │ │ │ ├── fr-FR.h │ │ │ ├── it-IT.h │ │ │ ├── pt-BR.h │ │ │ └── zh-CN.h │ ├── test │ │ ├── IRac_test.cpp │ │ ├── IRrecv_test.cpp │ │ ├── IRrecv_test.h │ │ ├── IRsend_test.cpp │ │ ├── IRsend_test.h │ │ ├── IRutils_test.cpp │ │ ├── Makefile │ │ ├── ir_Airwell_test.cpp │ │ ├── ir_Aiwa_test.cpp │ │ ├── ir_Amcor_test.cpp │ │ ├── ir_Argo_test.cpp │ │ ├── ir_Bose_test.cpp │ │ ├── ir_Carrier_test.cpp │ │ ├── ir_Coolix_test.cpp │ │ ├── ir_Corona_test.cpp │ │ ├── ir_Daikin_test.cpp │ │ ├── ir_Delonghi_test.cpp │ │ ├── ir_Denon_test.cpp │ │ ├── ir_Dish_test.cpp │ │ ├── ir_Doshisha_test.cpp │ │ ├── ir_Ecoclim_test.cpp │ │ ├── ir_Electra_test.cpp │ │ ├── ir_EliteScreens_test.cpp │ │ ├── ir_Epson_test.cpp │ │ ├── ir_Fujitsu_test.cpp │ │ ├── ir_GICable_test.cpp │ │ ├── ir_GlobalCache_test.cpp │ │ ├── ir_Goodweather_test.cpp │ │ ├── ir_Gree_test.cpp │ │ ├── ir_Haier_test.cpp │ │ ├── ir_Hitachi_test.cpp │ │ ├── ir_Inax_test.cpp │ │ ├── ir_JVC_test.cpp │ │ ├── ir_Kelon_test.cpp │ │ ├── ir_Kelvinator_test.cpp │ │ ├── ir_LG_test.cpp │ │ ├── ir_Lasertag_test.cpp │ │ ├── ir_Lego_test.cpp │ │ ├── ir_Lutron_test.cpp │ │ ├── ir_MWM_test.cpp │ │ ├── ir_Magiquest_test.cpp │ │ ├── ir_Metz_test.cpp │ │ ├── ir_Midea_test.cpp │ │ ├── ir_Milestag2_test.cpp │ │ ├── ir_Mirage_test.cpp │ │ ├── ir_MitsubishiHeavy_test.cpp │ │ ├── ir_Mitsubishi_test.cpp │ │ ├── ir_Multibrackets_test.cpp │ │ ├── ir_NEC_test.cpp │ │ ├── ir_Neoclima_test.cpp │ │ ├── ir_Nikai_test.cpp │ │ ├── ir_Panasonic_test.cpp │ │ ├── ir_Pioneer_test.cpp │ │ ├── ir_Pronto_test.cpp │ │ ├── ir_RC5_RC6_test.cpp │ │ ├── ir_RCMM_test.cpp │ │ ├── ir_Samsung_test.cpp │ │ ├── ir_Sanyo_test.cpp │ │ ├── ir_Sharp_test.cpp │ │ ├── ir_Sherwood_test.cpp │ │ ├── ir_Sony_test.cpp │ │ ├── ir_Symphony_test.cpp │ │ ├── ir_Tcl_test.cpp │ │ ├── ir_Technibel_test.cpp │ │ ├── ir_Teco_test.cpp │ │ ├── ir_Teknopoint_test.cpp │ │ ├── ir_Toshiba_test.cpp │ │ ├── ir_Transcold_test.cpp │ │ ├── ir_Trotec_test.cpp │ │ ├── ir_Truma_test.cpp │ │ ├── ir_Vestel_test.cpp │ │ ├── ir_Voltas_test.cpp │ │ ├── ir_Whirlpool_test.cpp │ │ ├── ir_Whynter_test.cpp │ │ ├── ir_Xmp_test.cpp │ │ └── ir_Zepeal_test.cpp │ └── tools │ │ ├── Makefile │ │ ├── RawToGlobalCache.sh │ │ ├── auto_analyse_raw_data.py │ │ ├── auto_analyse_raw_data_test.py │ │ ├── gc_decode.cpp │ │ ├── generate_irtext_h.sh │ │ ├── mkkeywords │ │ ├── mode2_decode.cpp │ │ ├── raw_to_pronto_code.py │ │ ├── raw_to_pronto_code_test.py │ │ └── scrape_supported_devices.py ├── NimBLE-Arduino │ ├── .piopm │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── BLE_Beacon_Scanner │ │ │ ├── BLE_Beacon_Scanner.ino │ │ │ └── BLE_Beacon_Scanner.md │ │ ├── BLE_EddystoneTLM_Beacon │ │ │ ├── BLE_EddystoneTLM_Beacon.ino │ │ │ └── BLE_EddystoneTLM_Beacon.md │ │ ├── BLE_EddystoneURL_Beacon │ │ │ ├── BLE_EddystoneURL_Beacon.ino │ │ │ └── BLE_EddystoneURL_Beacon.md │ │ ├── NimBLE_Client │ │ │ └── NimBLE_Client.ino │ │ ├── NimBLE_Scan_Continuous │ │ │ └── NimBLE_Scan_Continuous.ino │ │ ├── NimBLE_Scan_Whitelist │ │ │ └── NimBLE_Scan_whitelist.ino │ │ ├── NimBLE_Secure_Client │ │ │ └── NimBLE_Secure_Client.ino │ │ ├── NimBLE_Secure_Server │ │ │ └── NimBLE_Secure_Server.ino │ │ ├── NimBLE_Server │ │ │ └── NimBLE_Server.ino │ │ ├── NimBLE_Server_Whitelist │ │ │ └── NimBLE_Server_Whitelist.ino │ │ ├── NimBLE_Service_Data_Advertiser │ │ │ └── NimBLE_Service_Data_Advertiser.ino │ │ └── Refactored_original_examples │ │ │ ├── BLE_client │ │ │ └── BLE_client.ino │ │ │ ├── BLE_iBeacon │ │ │ └── BLE_iBeacon.ino │ │ │ ├── BLE_notify │ │ │ └── BLE_notify.ino │ │ │ ├── BLE_scan │ │ │ └── BLE_scan.ino │ │ │ ├── BLE_server │ │ │ └── BLE_server.ino │ │ │ ├── BLE_server_multiconnect │ │ │ └── BLE_server_multiconnect.ino │ │ │ ├── BLE_uart │ │ │ └── BLE_uart.ino │ │ │ └── BLE_write │ │ │ └── BLE_write.ino │ ├── library.properties │ └── src │ │ ├── CODING_STANDARDS.md │ │ ├── HIDKeyboardTypes.h │ │ ├── HIDTypes.h │ │ ├── NOTICE │ │ ├── NimBLE2904.cpp │ │ ├── NimBLE2904.h │ │ ├── NimBLEAddress.cpp │ │ ├── NimBLEAddress.h │ │ ├── NimBLEAdvertisedDevice.cpp │ │ ├── NimBLEAdvertisedDevice.h │ │ ├── NimBLEAdvertising.cpp │ │ ├── NimBLEAdvertising.h │ │ ├── NimBLEBeacon.cpp │ │ ├── NimBLEBeacon.h │ │ ├── NimBLECharacteristic.cpp │ │ ├── NimBLECharacteristic.h │ │ ├── NimBLEClient.cpp │ │ ├── NimBLEClient.h │ │ ├── NimBLEConnInfo.h │ │ ├── NimBLEDescriptor.cpp │ │ ├── NimBLEDescriptor.h │ │ ├── NimBLEDevice.cpp │ │ ├── NimBLEDevice.h │ │ ├── NimBLEEddystoneTLM.cpp │ │ ├── NimBLEEddystoneTLM.h │ │ ├── NimBLEEddystoneURL.cpp │ │ ├── NimBLEEddystoneURL.h │ │ ├── NimBLEHIDDevice.cpp │ │ ├── NimBLEHIDDevice.h │ │ ├── NimBLELog.h │ │ ├── NimBLERemoteCharacteristic.cpp │ │ ├── NimBLERemoteCharacteristic.h │ │ ├── NimBLERemoteDescriptor.cpp │ │ ├── NimBLERemoteDescriptor.h │ │ ├── NimBLERemoteService.cpp │ │ ├── NimBLERemoteService.h │ │ ├── NimBLEScan.cpp │ │ ├── NimBLEScan.h │ │ ├── NimBLESecurity.cpp │ │ ├── NimBLESecurity.h │ │ ├── NimBLEServer.cpp │ │ ├── NimBLEServer.h │ │ ├── NimBLEService.cpp │ │ ├── NimBLEService.h │ │ ├── NimBLEUUID.cpp │ │ ├── NimBLEUUID.h │ │ ├── NimBLEUtils.cpp │ │ ├── NimBLEUtils.h │ │ ├── README.md │ │ ├── RELEASE_NOTES.md │ │ ├── console │ │ └── console.h │ │ ├── esp-hci │ │ └── src │ │ │ └── esp_nimble_hci.c │ │ ├── esp_compiler.h │ │ ├── esp_nimble_cfg.h │ │ ├── esp_nimble_hci.h │ │ ├── esp_nimble_mem.h │ │ ├── ext │ │ └── tinycrypt │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── documentation │ │ │ └── tinycrypt.rst │ │ │ └── src │ │ │ ├── aes_decrypt.c │ │ │ ├── aes_encrypt.c │ │ │ ├── cbc_mode.c │ │ │ ├── ccm_mode.c │ │ │ ├── cmac_mode.c │ │ │ ├── ctr_mode.c │ │ │ ├── ctr_prng.c │ │ │ ├── ecc.c │ │ │ ├── ecc_dh.c │ │ │ ├── ecc_dsa.c │ │ │ ├── ecc_platform_specific.c │ │ │ ├── hmac.c │ │ │ ├── hmac_prng.c │ │ │ ├── sha256.c │ │ │ └── utils.c │ │ ├── hal │ │ └── hal_timer.h │ │ ├── host │ │ ├── ble_att.h │ │ ├── ble_eddystone.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_hs.h │ │ ├── ble_hs_adv.h │ │ ├── ble_hs_hci.h │ │ ├── ble_hs_id.h │ │ ├── ble_hs_log.h │ │ ├── ble_hs_mbuf.h │ │ ├── ble_hs_pvcy.h │ │ ├── ble_hs_stop.h │ │ ├── ble_ibeacon.h │ │ ├── ble_l2cap.h │ │ ├── ble_monitor.h │ │ ├── ble_sm.h │ │ ├── ble_store.h │ │ ├── ble_uuid.h │ │ └── util │ │ │ └── util.h │ │ ├── log │ │ └── log.h │ │ ├── log_common │ │ ├── ignore.h │ │ └── log_common.h │ │ ├── logcfg │ │ └── logcfg.h │ │ ├── mem │ │ └── mem.h │ │ ├── mesh │ │ ├── access.h │ │ ├── cfg_cli.h │ │ ├── cfg_srv.h │ │ ├── glue.h │ │ ├── health_cli.h │ │ ├── health_srv.h │ │ ├── main.h │ │ ├── mesh.h │ │ ├── model_cli.h │ │ ├── model_srv.h │ │ ├── porting.h │ │ ├── proxy.h │ │ ├── slist.h │ │ └── testing.h │ │ ├── modlog │ │ └── modlog.h │ │ ├── nimble │ │ ├── ble.h │ │ ├── ble_hci_trans.h │ │ ├── hci_common.h │ │ ├── host │ │ │ ├── mesh │ │ │ │ └── src │ │ │ │ │ ├── access.c │ │ │ │ │ ├── access.h │ │ │ │ │ ├── adv.c │ │ │ │ │ ├── adv.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── beacon.c │ │ │ │ │ ├── beacon.h │ │ │ │ │ ├── ble_att_priv.h │ │ │ │ │ ├── ble_gatt_priv.h │ │ │ │ │ ├── ble_hs_conn_priv.h │ │ │ │ │ ├── ble_l2cap_coc_priv.h │ │ │ │ │ ├── ble_l2cap_priv.h │ │ │ │ │ ├── ble_l2cap_sig_priv.h │ │ │ │ │ ├── cfg_cli.c │ │ │ │ │ ├── cfg_srv.c │ │ │ │ │ ├── crypto.c │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── foundation.h │ │ │ │ │ ├── friend.c │ │ │ │ │ ├── friend.h │ │ │ │ │ ├── glue.c │ │ │ │ │ ├── health_cli.c │ │ │ │ │ ├── health_srv.c │ │ │ │ │ ├── light_model.c │ │ │ │ │ ├── light_model.h │ │ │ │ │ ├── lpn.c │ │ │ │ │ ├── lpn.h │ │ │ │ │ ├── mesh.c │ │ │ │ │ ├── mesh_priv.h │ │ │ │ │ ├── model_cli.c │ │ │ │ │ ├── model_srv.c │ │ │ │ │ ├── net.c │ │ │ │ │ ├── net.h │ │ │ │ │ ├── nodes.c │ │ │ │ │ ├── nodes.h │ │ │ │ │ ├── prov.c │ │ │ │ │ ├── prov.h │ │ │ │ │ ├── proxy.c │ │ │ │ │ ├── proxy.h │ │ │ │ │ ├── settings.c │ │ │ │ │ ├── settings.h │ │ │ │ │ ├── shell.c │ │ │ │ │ ├── shell.h │ │ │ │ │ ├── src │ │ │ │ │ ├── ble_att_cmd_priv.h │ │ │ │ │ ├── ble_att_priv.h │ │ │ │ │ ├── ble_gap_priv.h │ │ │ │ │ ├── ble_gatt_priv.h │ │ │ │ │ ├── ble_hs_adv_priv.h │ │ │ │ │ ├── ble_hs_atomic_priv.h │ │ │ │ │ ├── ble_hs_conn_priv.h │ │ │ │ │ ├── ble_hs_flow_priv.h │ │ │ │ │ ├── ble_hs_hci_priv.h │ │ │ │ │ ├── ble_hs_id_priv.h │ │ │ │ │ ├── ble_hs_mbuf_priv.h │ │ │ │ │ ├── ble_hs_periodic_sync_priv.h │ │ │ │ │ ├── ble_hs_priv.h │ │ │ │ │ ├── ble_hs_pvcy_priv.h │ │ │ │ │ ├── ble_hs_resolv_priv.h │ │ │ │ │ ├── ble_hs_startup_priv.h │ │ │ │ │ ├── ble_l2cap_coc_priv.h │ │ │ │ │ ├── ble_l2cap_priv.h │ │ │ │ │ ├── ble_l2cap_sig_priv.h │ │ │ │ │ ├── ble_monitor_priv.h │ │ │ │ │ ├── ble_sm_priv.h │ │ │ │ │ └── ble_uuid_priv.h │ │ │ │ │ ├── testing.c │ │ │ │ │ ├── testing.h │ │ │ │ │ ├── transport.c │ │ │ │ │ └── transport.h │ │ │ ├── services │ │ │ │ ├── ans │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_ans.c │ │ │ │ ├── bas │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_bas.c │ │ │ │ ├── gap │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_gap.c │ │ │ │ ├── gatt │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_gatt.c │ │ │ │ ├── ias │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_ias.c │ │ │ │ ├── ipss │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_ipss.c │ │ │ │ ├── lls │ │ │ │ │ └── src │ │ │ │ │ │ └── ble_svc_lls.c │ │ │ │ └── tps │ │ │ │ │ └── src │ │ │ │ │ ├── ble_hs_hci_priv.h │ │ │ │ │ └── ble_svc_tps.c │ │ │ ├── src │ │ │ │ ├── ble_att.c │ │ │ │ ├── ble_att_clt.c │ │ │ │ ├── ble_att_cmd.c │ │ │ │ ├── ble_att_cmd_priv.h │ │ │ │ ├── ble_att_priv.h │ │ │ │ ├── ble_att_svr.c │ │ │ │ ├── ble_eddystone.c │ │ │ │ ├── ble_gap.c │ │ │ │ ├── ble_gap_priv.h │ │ │ │ ├── ble_gatt_priv.h │ │ │ │ ├── ble_gattc.c │ │ │ │ ├── ble_gatts.c │ │ │ │ ├── ble_gatts_lcl.c │ │ │ │ ├── ble_hs.c │ │ │ │ ├── ble_hs_adv.c │ │ │ │ ├── ble_hs_adv_priv.h │ │ │ │ ├── ble_hs_atomic.c │ │ │ │ ├── ble_hs_atomic_priv.h │ │ │ │ ├── ble_hs_cfg.c │ │ │ │ ├── ble_hs_conn.c │ │ │ │ ├── ble_hs_conn_priv.h │ │ │ │ ├── ble_hs_flow.c │ │ │ │ ├── ble_hs_flow_priv.h │ │ │ │ ├── ble_hs_hci.c │ │ │ │ ├── ble_hs_hci_cmd.c │ │ │ │ ├── ble_hs_hci_evt.c │ │ │ │ ├── ble_hs_hci_priv.h │ │ │ │ ├── ble_hs_hci_util.c │ │ │ │ ├── ble_hs_id.c │ │ │ │ ├── ble_hs_id_priv.h │ │ │ │ ├── ble_hs_log.c │ │ │ │ ├── ble_hs_mbuf.c │ │ │ │ ├── ble_hs_mbuf_priv.h │ │ │ │ ├── ble_hs_misc.c │ │ │ │ ├── ble_hs_mqueue.c │ │ │ │ ├── ble_hs_periodic_sync.c │ │ │ │ ├── ble_hs_periodic_sync_priv.h │ │ │ │ ├── ble_hs_priv.h │ │ │ │ ├── ble_hs_pvcy.c │ │ │ │ ├── ble_hs_pvcy_priv.h │ │ │ │ ├── ble_hs_resolv.c │ │ │ │ ├── ble_hs_resolv_priv.h │ │ │ │ ├── ble_hs_shutdown.c │ │ │ │ ├── ble_hs_startup.c │ │ │ │ ├── ble_hs_startup_priv.h │ │ │ │ ├── ble_hs_stop.c │ │ │ │ ├── ble_ibeacon.c │ │ │ │ ├── ble_l2cap.c │ │ │ │ ├── ble_l2cap_coc.c │ │ │ │ ├── ble_l2cap_coc_priv.h │ │ │ │ ├── ble_l2cap_priv.h │ │ │ │ ├── ble_l2cap_sig.c │ │ │ │ ├── ble_l2cap_sig_cmd.c │ │ │ │ ├── ble_l2cap_sig_priv.h │ │ │ │ ├── ble_monitor.c │ │ │ │ ├── ble_monitor_priv.h │ │ │ │ ├── ble_sm.c │ │ │ │ ├── ble_sm_alg.c │ │ │ │ ├── ble_sm_cmd.c │ │ │ │ ├── ble_sm_lgcy.c │ │ │ │ ├── ble_sm_priv.h │ │ │ │ ├── ble_sm_sc.c │ │ │ │ ├── ble_store.c │ │ │ │ ├── ble_store_util.c │ │ │ │ ├── ble_uuid.c │ │ │ │ └── ble_uuid_priv.h │ │ │ ├── store │ │ │ │ ├── config │ │ │ │ │ └── src │ │ │ │ │ │ ├── ble_store_config.c │ │ │ │ │ │ ├── ble_store_config_priv.h │ │ │ │ │ │ └── ble_store_nvs.c │ │ │ │ └── ram │ │ │ │ │ └── src │ │ │ │ │ └── ble_store_ram.c │ │ │ └── util │ │ │ │ └── src │ │ │ │ └── addr.c │ │ ├── nimble_npl.h │ │ ├── nimble_npl_os.h │ │ ├── nimble_opt.h │ │ ├── nimble_opt_auto.h │ │ ├── nimble_port.h │ │ ├── nimble_port_freertos.h │ │ └── npl_freertos.h │ │ ├── nimconfig.h │ │ ├── nimconfig_rename.h │ │ ├── os │ │ ├── endian.h │ │ ├── os.h │ │ ├── os_cputime.h │ │ ├── os_error.h │ │ ├── os_mbuf.h │ │ ├── os_mempool.h │ │ ├── os_trace_api.h │ │ ├── queue.h │ │ └── util.h │ │ ├── port │ │ └── src │ │ │ └── esp_nimble_mem.c │ │ ├── porting │ │ ├── nimble │ │ │ ├── include │ │ │ │ └── nimble │ │ │ │ │ └── nimble_port.h │ │ │ └── src │ │ │ │ ├── endian.c │ │ │ │ ├── hal_timer.c │ │ │ │ ├── mem.c │ │ │ │ ├── nimble_port.c │ │ │ │ ├── os_cputime.c │ │ │ │ ├── os_cputime_pwr2.c │ │ │ │ ├── os_mbuf.c │ │ │ │ ├── os_mempool.c │ │ │ │ └── os_msys_init.c │ │ └── npl │ │ │ └── freertos │ │ │ └── src │ │ │ ├── nimble_port_freertos.c │ │ │ └── npl_os_freertos.c │ │ ├── services │ │ ├── ans │ │ │ └── ble_svc_ans.h │ │ ├── bas │ │ │ └── ble_svc_bas.h │ │ ├── gap │ │ │ └── ble_svc_gap.h │ │ ├── gatt │ │ │ └── ble_svc_gatt.h │ │ ├── ias │ │ │ └── ble_svc_ias.h │ │ ├── ipss │ │ │ └── ble_svc_ipss.h │ │ ├── lls │ │ │ └── ble_svc_lls.h │ │ └── tps │ │ │ └── ble_svc_tps.h │ │ ├── src │ │ ├── ble_hs_hci_priv.h │ │ └── ble_sm_priv.h │ │ ├── stats │ │ └── stats.h │ │ ├── store │ │ ├── config │ │ │ └── ble_store_config.h │ │ └── ram │ │ │ └── ble_store_ram.h │ │ ├── syscfg │ │ └── syscfg.h │ │ ├── sysflash │ │ └── sysflash.h │ │ ├── sysinit │ │ └── sysinit.h │ │ └── tinycrypt │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README │ │ ├── VERSION │ │ ├── aes.h │ │ ├── cbc_mode.h │ │ ├── ccm_mode.h │ │ ├── cmac_mode.h │ │ ├── constants.h │ │ ├── ctr_mode.h │ │ ├── ctr_prng.h │ │ ├── documentation │ │ └── tinycrypt.rst │ │ ├── ecc.h │ │ ├── ecc_dh.h │ │ ├── ecc_dsa.h │ │ ├── ecc_platform_specific.h │ │ ├── hmac.h │ │ ├── hmac_prng.h │ │ ├── sha256.h │ │ └── utils.h ├── README ├── WebConfig │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── demo32 │ │ │ └── demo32.ino │ │ └── demo8266 │ │ │ └── demo8266.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── WebConfig.cpp │ │ └── WebConfig.h ├── lib-open-smartwatch │ ├── FakeArduino.cpp │ ├── FakeArduino.h │ ├── FakeArduinoWindowSDL.h │ ├── FakePrint.cpp │ ├── FakePrint.h │ ├── Fakegfxfont.h │ ├── Fakeglcdfont.c │ ├── Fakepgmspace.h │ ├── LICENSE │ ├── Readme.md │ ├── SimplexNoise.cpp │ ├── SimplexNoise.h │ ├── SimplexNosie.License.txt │ ├── _docs │ │ ├── doom-fire.png │ │ └── watch-doom-fire.jpg │ ├── anim_doom_fire.cpp │ ├── anim_doom_fire.h │ ├── anim_firework.cpp │ ├── anim_firework.h │ ├── anim_water_ripple.cpp │ ├── anim_water_ripple.h │ ├── esp32_cpu.h │ ├── examples │ │ ├── .gitignore │ │ ├── Readme.md │ │ ├── doom-fire │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── fireworks │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── osm │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── perlin │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── rotation │ │ │ ├── CMakeLists.txt │ │ │ ├── leafs_128_32_4x.png │ │ │ ├── main.cpp │ │ │ ├── watchface01.png │ │ │ ├── watchface01h.png │ │ │ └── watchface01m.png │ │ ├── shapes │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── text │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── watch-simple │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ └── water │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── gfx_2d.h │ ├── gfx_2d_license.txt │ ├── gfx_2d_print.h │ ├── gfx_util.cpp │ ├── gfx_util.h │ ├── library.properties │ ├── math_angles.cpp │ ├── math_angles.h │ ├── math_osm.cpp │ ├── math_osm.h │ ├── osm_render.cpp │ ├── osm_render.h │ ├── time_util.cpp │ └── time_util.h ├── lv_lib_qrcode │ ├── LICENSE │ ├── README.md │ ├── lv_qrcode.c │ ├── lv_qrcode.h │ ├── qrcodegen.c │ └── qrcodegen.h └── lvgl │ ├── .editorconfig │ ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug-report.md │ │ ├── config.yml │ │ └── dev-discussion.md │ ├── auto-comment.yml │ ├── pull_request_template.md │ └── workflows │ │ ├── build_micropython.yml │ │ ├── ccpp.yml │ │ ├── close_old_issues.yml │ │ ├── compile_docs.yml │ │ ├── main.yml │ │ └── release.yml │ ├── .gitignore │ ├── .gitmodules │ ├── .piopm │ ├── CMakeLists.txt │ ├── Kconfig │ ├── LICENCE.txt │ ├── README.md │ ├── component.mk │ ├── examples │ ├── anim │ │ ├── index.rst │ │ ├── lv_example_anim.h │ │ ├── lv_example_anim_1.c │ │ └── lv_example_anim_2.c │ ├── arduino │ │ └── LVGL_Arduino │ │ │ └── LVGL_Arduino.ino │ ├── assets │ │ ├── animimg001.c │ │ ├── animimg002.c │ │ ├── animimg003.c │ │ ├── img_caret_down.c │ │ ├── img_cogwheel_alpha16.c │ │ ├── img_cogwheel_argb.c │ │ ├── img_cogwheel_chroma_keyed.c │ │ ├── img_cogwheel_indexed16.c │ │ ├── img_cogwheel_rgb.c │ │ ├── img_hand.c │ │ ├── img_skew_strip.c │ │ ├── img_star.c │ │ ├── imgbtn_left.c │ │ ├── imgbtn_mid.c │ │ └── imgbtn_right.c │ ├── event │ │ ├── index.rst │ │ ├── lv_example_event.h │ │ ├── lv_example_event_1.c │ │ ├── lv_example_event_2.c │ │ └── lv_example_event_3.c │ ├── examples.mk │ ├── get_started │ │ ├── index.rst │ │ ├── lv_example_get_started.h │ │ ├── lv_example_get_started_1.c │ │ ├── lv_example_get_started_2.c │ │ └── lv_example_get_started_3.c │ ├── layouts │ │ ├── flex │ │ │ ├── index.rst │ │ │ ├── lv_example_flex.h │ │ │ ├── lv_example_flex_1.c │ │ │ ├── lv_example_flex_2.c │ │ │ ├── lv_example_flex_3.c │ │ │ ├── lv_example_flex_4.c │ │ │ ├── lv_example_flex_5.c │ │ │ └── lv_example_flex_6.c │ │ ├── grid │ │ │ ├── index.rst │ │ │ ├── lv_example_grid.h │ │ │ ├── lv_example_grid_1.c │ │ │ ├── lv_example_grid_2.c │ │ │ ├── lv_example_grid_3.c │ │ │ ├── lv_example_grid_4.c │ │ │ ├── lv_example_grid_5.c │ │ │ └── lv_example_grid_6.c │ │ └── lv_example_layout.h │ ├── lv_examples.h │ ├── porting │ │ ├── lv_port_disp_template.c │ │ ├── lv_port_disp_template.h │ │ ├── lv_port_fs_template.c │ │ ├── lv_port_fs_template.h │ │ ├── lv_port_indev_template.c │ │ └── lv_port_indev_template.h │ ├── scroll │ │ ├── index.rst │ │ ├── lv_example_scroll.h │ │ ├── lv_example_scroll_1.c │ │ ├── lv_example_scroll_2.c │ │ ├── lv_example_scroll_3.c │ │ ├── lv_example_scroll_4.c │ │ ├── lv_example_scroll_5.c │ │ └── lv_example_scroll_6.c │ ├── styles │ │ ├── index.rst │ │ ├── lv_example_style.h │ │ ├── lv_example_style_1.c │ │ ├── lv_example_style_10.c │ │ ├── lv_example_style_11.c │ │ ├── lv_example_style_12.c │ │ ├── lv_example_style_13.c │ │ ├── lv_example_style_14.c │ │ ├── lv_example_style_2.c │ │ ├── lv_example_style_3.c │ │ ├── lv_example_style_4.c │ │ ├── lv_example_style_5.c │ │ ├── lv_example_style_6.c │ │ ├── lv_example_style_7.c │ │ ├── lv_example_style_8.c │ │ └── lv_example_style_9.c │ └── widgets │ │ ├── animimg │ │ └── lv_example_animimg_1.c │ │ ├── arc │ │ ├── index.rst │ │ ├── lv_example_arc_1.c │ │ ├── lv_example_arc_1.py │ │ ├── lv_example_arc_2.c │ │ └── lv_example_arc_2.py │ │ ├── bar │ │ ├── index.rst │ │ ├── lv_example_bar_1.c │ │ ├── lv_example_bar_1.py │ │ ├── lv_example_bar_2.c │ │ ├── lv_example_bar_3.c │ │ ├── lv_example_bar_4.c │ │ ├── lv_example_bar_5.c │ │ └── lv_example_bar_6.c │ │ ├── btn │ │ ├── index.rst │ │ ├── lv_example_btn_1.c │ │ ├── lv_example_btn_1.py │ │ ├── lv_example_btn_2.c │ │ └── lv_example_btn_3.c │ │ ├── btnmatrix │ │ ├── index.rst │ │ ├── lv_example_btnmatrix_1.c │ │ ├── lv_example_btnmatrix_1.py │ │ ├── lv_example_btnmatrix_2.c │ │ └── lv_example_btnmatrix_3.c │ │ ├── calendar │ │ ├── index.rst │ │ └── lv_example_calendar_1.c │ │ ├── canvas │ │ ├── index.rst │ │ ├── lv_example_canvas_1.c │ │ ├── lv_example_canvas_1.py │ │ ├── lv_example_canvas_2.c │ │ └── lv_example_canvas_2.py │ │ ├── chart │ │ ├── index.rst │ │ ├── lv_example_chart_1.c │ │ ├── lv_example_chart_1.py │ │ ├── lv_example_chart_2.c │ │ ├── lv_example_chart_3.c │ │ ├── lv_example_chart_4.c │ │ ├── lv_example_chart_5.c │ │ ├── lv_example_chart_6.c │ │ └── lv_example_chart_7.c │ │ ├── checkbox │ │ ├── index.rst │ │ ├── lv_example_checkbox_1.c │ │ └── lv_example_checkbox_1.py │ │ ├── colorwheel │ │ ├── index.rst │ │ └── lv_example_colorwheel_1.c │ │ ├── dropdown │ │ ├── index.rst │ │ ├── lv_example_dropdown_1.c │ │ ├── lv_example_dropdown_1.py │ │ ├── lv_example_dropdown_2.c │ │ ├── lv_example_dropdown_2.py │ │ └── lv_example_dropdown_3.c │ │ ├── img │ │ ├── index.rst │ │ ├── lv_example_img_1.c │ │ ├── lv_example_img_1.py │ │ ├── lv_example_img_2.c │ │ ├── lv_example_img_3.c │ │ └── lv_example_img_4.c │ │ ├── imgbtn │ │ ├── index.rst │ │ └── lv_example_imgbtn_1.c │ │ ├── keyboard │ │ ├── index.rst │ │ ├── lv_example_keyboard_1.c │ │ └── lv_example_keyboard_1.py │ │ ├── label │ │ ├── index.rst │ │ ├── lv_example_label_1.c │ │ ├── lv_example_label_1.py │ │ ├── lv_example_label_2.c │ │ ├── lv_example_label_2.py │ │ └── lv_example_label_3.c │ │ ├── led │ │ ├── index.rst │ │ ├── lv_example_led_1.c │ │ └── lv_example_led_1.py │ │ ├── line │ │ ├── index.rst │ │ ├── lv_example_line_1.c │ │ └── lv_example_line_1.py │ │ ├── list │ │ ├── index.rst │ │ ├── lv_example_list_1.c │ │ └── lv_example_list_1.py │ │ ├── lv_example_widgets.h │ │ ├── meter │ │ ├── index.rst │ │ ├── lv_example_meter_1.c │ │ ├── lv_example_meter_2.c │ │ ├── lv_example_meter_3.c │ │ └── lv_example_meter_4.c │ │ ├── msgbox │ │ ├── index.rst │ │ ├── lv_example_msgbox_1.c │ │ ├── lv_example_msgbox_1.py │ │ └── lv_example_msgbox_2.py │ │ ├── obj │ │ ├── index.rst │ │ ├── lv_example_obj_1.c │ │ ├── lv_example_obj_1.py │ │ └── lv_example_obj_2.c │ │ ├── roller │ │ ├── index.rst │ │ ├── lv_example_roller_1.c │ │ ├── lv_example_roller_1.py │ │ ├── lv_example_roller_2.c │ │ └── lv_example_roller_3.c │ │ ├── slider │ │ ├── index.rst │ │ ├── lv_example_slider_1.c │ │ ├── lv_example_slider_1.py │ │ ├── lv_example_slider_2.c │ │ ├── lv_example_slider_2.py │ │ └── lv_example_slider_3.c │ │ ├── span │ │ ├── index.rst │ │ ├── lv_example_span_1.c │ │ └── lv_example_span_1.py │ │ ├── spinbox │ │ ├── index.rst │ │ ├── lv_example_spinbox_1.c │ │ └── lv_example_spinbox_1.py │ │ ├── spinner │ │ ├── index.rst │ │ ├── lv_example_spinner_1.c │ │ └── lv_example_spinner_1.py │ │ ├── switch │ │ ├── index.rst │ │ ├── lv_example_switch_1.c │ │ └── lv_example_switch_1.py │ │ ├── table │ │ ├── index.rst │ │ ├── lv_example_table_1.c │ │ ├── lv_example_table_1.py │ │ └── lv_example_table_2.c │ │ ├── tabview │ │ ├── index.rst │ │ ├── lv_example_tabview_1.c │ │ ├── lv_example_tabview_1.py │ │ └── lv_example_tabview_2.c │ │ ├── textarea │ │ ├── index.rst │ │ ├── lv_example_textarea_1.c │ │ ├── lv_example_textarea_1.py │ │ ├── lv_example_textarea_2.c │ │ ├── lv_example_textarea_2.py │ │ └── lv_example_textarea_3.c │ │ ├── tileview │ │ ├── index.rst │ │ ├── lv_example_tileview_1.c │ │ └── lv_example_tileview_1.py │ │ └── win │ │ ├── index.rst │ │ └── lv_example_win_1.c │ ├── library.json │ ├── library.properties │ ├── lv_conf.h │ ├── lvgl.h │ ├── lvgl.mk │ ├── scripts │ ├── Doxyfile │ ├── build_html_examples.sh │ ├── built_in_font │ │ ├── DejaVuSans.ttf │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ ├── Montserrat-Medium.ttf │ │ ├── SimSun.woff │ │ ├── built_in_font_gen.py │ │ ├── generate_all.py │ │ └── unscii-8.ttf │ ├── code-format.cfg │ ├── code-format.sh │ ├── cppcheck_run.sh │ ├── find_version.sh │ ├── genexamplelist.sh │ ├── infer_run.sh │ ├── lv_conf_internal_gen.py │ ├── release │ │ ├── patch.py │ │ └── release.py │ └── style_api_gen.py │ ├── src │ ├── core │ │ ├── lv_core.mk │ │ ├── lv_disp.c │ │ ├── lv_disp.h │ │ ├── lv_event.c │ │ ├── lv_event.h │ │ ├── lv_group.c │ │ ├── lv_group.h │ │ ├── lv_indev.c │ │ ├── lv_indev.h │ │ ├── lv_indev_scroll.c │ │ ├── lv_indev_scroll.h │ │ ├── lv_obj.c │ │ ├── lv_obj.h │ │ ├── lv_obj_class.c │ │ ├── lv_obj_class.h │ │ ├── lv_obj_draw.c │ │ ├── lv_obj_draw.h │ │ ├── lv_obj_pos.c │ │ ├── lv_obj_pos.h │ │ ├── lv_obj_scroll.c │ │ ├── lv_obj_scroll.h │ │ ├── lv_obj_style.c │ │ ├── lv_obj_style.h │ │ ├── lv_obj_style_gen.c │ │ ├── lv_obj_style_gen.h │ │ ├── lv_obj_tree.c │ │ ├── lv_obj_tree.h │ │ ├── lv_refr.c │ │ ├── lv_refr.h │ │ ├── lv_theme.c │ │ └── lv_theme.h │ ├── draw │ │ ├── lv_draw.h │ │ ├── lv_draw.mk │ │ ├── lv_draw_arc.c │ │ ├── lv_draw_arc.h │ │ ├── lv_draw_blend.c │ │ ├── lv_draw_blend.h │ │ ├── lv_draw_img.c │ │ ├── lv_draw_img.h │ │ ├── lv_draw_label.c │ │ ├── lv_draw_label.h │ │ ├── lv_draw_line.c │ │ ├── lv_draw_line.h │ │ ├── lv_draw_mask.c │ │ ├── lv_draw_mask.h │ │ ├── lv_draw_rect.c │ │ ├── lv_draw_rect.h │ │ ├── lv_draw_triangle.c │ │ ├── lv_draw_triangle.h │ │ ├── lv_img_buf.c │ │ ├── lv_img_buf.h │ │ ├── lv_img_cache.c │ │ ├── lv_img_cache.h │ │ ├── lv_img_decoder.c │ │ └── lv_img_decoder.h │ ├── extra │ │ ├── extra.mk │ │ ├── layouts │ │ │ ├── flex │ │ │ │ ├── lv_flex.c │ │ │ │ └── lv_flex.h │ │ │ ├── grid │ │ │ │ ├── lv_grid.c │ │ │ │ └── lv_grid.h │ │ │ └── lv_layouts.h │ │ ├── lv_extra.c │ │ ├── lv_extra.h │ │ ├── themes │ │ │ ├── basic │ │ │ │ ├── lv_theme_basic.c │ │ │ │ └── lv_theme_basic.h │ │ │ ├── default │ │ │ │ ├── lv_theme_default.c │ │ │ │ └── lv_theme_default.h │ │ │ ├── lv_themes.h │ │ │ └── mono │ │ │ │ ├── lv_theme_mono.c │ │ │ │ └── lv_theme_mono.h │ │ └── widgets │ │ │ ├── animimg │ │ │ ├── lv_animimg.c │ │ │ └── lv_animimg.h │ │ │ ├── calendar │ │ │ ├── lv_calendar.c │ │ │ ├── lv_calendar.h │ │ │ ├── lv_calendar_header_arrow.c │ │ │ ├── lv_calendar_header_arrow.h │ │ │ ├── lv_calendar_header_dropdown.c │ │ │ └── lv_calendar_header_dropdown.h │ │ │ ├── chart │ │ │ ├── lv_chart.c │ │ │ └── lv_chart.h │ │ │ ├── colorwheel │ │ │ ├── lv_colorwheel.c │ │ │ └── lv_colorwheel.h │ │ │ ├── imgbtn │ │ │ ├── lv_imgbtn.c │ │ │ └── lv_imgbtn.h │ │ │ ├── keyboard │ │ │ ├── lv_keyboard.c │ │ │ └── lv_keyboard.h │ │ │ ├── led │ │ │ ├── lv_led.c │ │ │ └── lv_led.h │ │ │ ├── list │ │ │ ├── lv_list.c │ │ │ └── lv_list.h │ │ │ ├── lv_widgets.h │ │ │ ├── meter │ │ │ ├── lv_meter.c │ │ │ └── lv_meter.h │ │ │ ├── msgbox │ │ │ ├── lv_msgbox.c │ │ │ └── lv_msgbox.h │ │ │ ├── span │ │ │ ├── lv_span.c │ │ │ └── lv_span.h │ │ │ ├── spinbox │ │ │ ├── lv_spinbox.c │ │ │ └── lv_spinbox.h │ │ │ ├── spinner │ │ │ ├── lv_spinner.c │ │ │ └── lv_spinner.h │ │ │ ├── tabview │ │ │ ├── lv_tabview.c │ │ │ └── lv_tabview.h │ │ │ ├── tileview │ │ │ ├── lv_tileview.c │ │ │ └── lv_tileview.h │ │ │ └── win │ │ │ ├── lv_win.c │ │ │ └── lv_win.h │ ├── font │ │ ├── korean.ttf │ │ ├── lv_font.c │ │ ├── lv_font.h │ │ ├── lv_font.mk │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ ├── lv_font_fmt_txt.c │ │ ├── lv_font_fmt_txt.h │ │ ├── lv_font_loader.c │ │ ├── lv_font_loader.h │ │ ├── lv_font_montserrat_10.c │ │ ├── lv_font_montserrat_12.c │ │ ├── lv_font_montserrat_12_subpx.c │ │ ├── lv_font_montserrat_14.c │ │ ├── lv_font_montserrat_16.c │ │ ├── lv_font_montserrat_18.c │ │ ├── lv_font_montserrat_20.c │ │ ├── lv_font_montserrat_22.c │ │ ├── lv_font_montserrat_24.c │ │ ├── lv_font_montserrat_26.c │ │ ├── lv_font_montserrat_28.c │ │ ├── lv_font_montserrat_28_compressed.c │ │ ├── lv_font_montserrat_30.c │ │ ├── lv_font_montserrat_32.c │ │ ├── lv_font_montserrat_34.c │ │ ├── lv_font_montserrat_36.c │ │ ├── lv_font_montserrat_38.c │ │ ├── lv_font_montserrat_40.c │ │ ├── lv_font_montserrat_42.c │ │ ├── lv_font_montserrat_44.c │ │ ├── lv_font_montserrat_46.c │ │ ├── lv_font_montserrat_48.c │ │ ├── lv_font_montserrat_8.c │ │ ├── lv_font_simsun_16_cjk.c │ │ ├── lv_font_unscii_16.c │ │ ├── lv_font_unscii_8.c │ │ └── lv_symbol_def.h │ ├── gpu │ │ ├── lv_gpu.mk │ │ ├── lv_gpu_nxp_pxp.c │ │ ├── lv_gpu_nxp_pxp.h │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ ├── lv_gpu_nxp_vglite.c │ │ ├── lv_gpu_nxp_vglite.h │ │ ├── lv_gpu_stm32_dma2d.c │ │ └── lv_gpu_stm32_dma2d.h │ ├── hal │ │ ├── lv_hal.h │ │ ├── lv_hal.mk │ │ ├── lv_hal_disp.c │ │ ├── lv_hal_disp.h │ │ ├── lv_hal_indev.c │ │ ├── lv_hal_indev.h │ │ ├── lv_hal_tick.c │ │ └── lv_hal_tick.h │ ├── lv_api_map.h │ ├── lv_conf_internal.h │ ├── lv_conf_kconfig.h │ ├── lvgl.h │ ├── misc │ │ ├── lv_anim.c │ │ ├── lv_anim.h │ │ ├── lv_area.c │ │ ├── lv_area.h │ │ ├── lv_assert.h │ │ ├── lv_async.c │ │ ├── lv_async.h │ │ ├── lv_bidi.c │ │ ├── lv_bidi.h │ │ ├── lv_color.c │ │ ├── lv_color.h │ │ ├── lv_fs.c │ │ ├── lv_fs.h │ │ ├── lv_gc.c │ │ ├── lv_gc.h │ │ ├── lv_ll.c │ │ ├── lv_ll.h │ │ ├── lv_log.c │ │ ├── lv_log.h │ │ ├── lv_math.c │ │ ├── lv_math.h │ │ ├── lv_mem.c │ │ ├── lv_mem.h │ │ ├── lv_misc.mk │ │ ├── lv_printf.c │ │ ├── lv_printf.h │ │ ├── lv_style.c │ │ ├── lv_style.h │ │ ├── lv_style_gen.c │ │ ├── lv_style_gen.h │ │ ├── lv_templ.c │ │ ├── lv_templ.h │ │ ├── lv_timer.c │ │ ├── lv_timer.h │ │ ├── lv_tlsf.c │ │ ├── lv_tlsf.h │ │ ├── lv_txt.c │ │ ├── lv_txt.h │ │ ├── lv_txt_ap.c │ │ ├── lv_txt_ap.h │ │ ├── lv_types.h │ │ ├── lv_utils.c │ │ └── lv_utils.h │ └── widgets │ │ ├── lv_arc.c │ │ ├── lv_arc.h │ │ ├── lv_bar.c │ │ ├── lv_bar.h │ │ ├── lv_btn.c │ │ ├── lv_btn.h │ │ ├── lv_btnmatrix.c │ │ ├── lv_btnmatrix.h │ │ ├── lv_canvas.c │ │ ├── lv_canvas.h │ │ ├── lv_checkbox.c │ │ ├── lv_checkbox.h │ │ ├── lv_dropdown.c │ │ ├── lv_dropdown.h │ │ ├── lv_img.c │ │ ├── lv_img.h │ │ ├── lv_label.c │ │ ├── lv_label.h │ │ ├── lv_line.c │ │ ├── lv_line.h │ │ ├── lv_objx_templ.c │ │ ├── lv_objx_templ.h │ │ ├── lv_roller.c │ │ ├── lv_roller.h │ │ ├── lv_slider.c │ │ ├── lv_slider.h │ │ ├── lv_switch.c │ │ ├── lv_switch.h │ │ ├── lv_table.c │ │ ├── lv_table.h │ │ ├── lv_textarea.c │ │ ├── lv_textarea.h │ │ └── lv_widgets.mk │ ├── tests │ ├── Makefile │ ├── build.py │ ├── font_1.fnt │ ├── font_2.fnt │ ├── font_3.fnt │ ├── lv_test_assert.c │ ├── lv_test_assert.h │ ├── lv_test_conf.h │ ├── lv_test_core │ │ ├── lv_test_core.c │ │ ├── lv_test_core.h │ │ ├── lv_test_font_loader.c │ │ ├── lv_test_font_loader.h │ │ ├── lv_test_obj.c │ │ ├── lv_test_obj.h │ │ ├── lv_test_style.c │ │ └── lv_test_style.h │ ├── lv_test_fonts │ │ ├── font_1.c │ │ ├── font_2.c │ │ └── font_3.c │ ├── lv_test_main.c │ └── lv_test_widgets │ │ ├── lv_test_label.c │ │ └── lv_test_label.h │ └── zephyr │ └── module.yml ├── platformio.ini ├── src ├── BLE.cpp ├── Morse.cpp ├── WatchIR.cpp ├── WatchfaceManager.cpp ├── alarm.cpp ├── configParams.h ├── fonts │ ├── font_weather_32.c │ ├── font_weather_num_24.c │ ├── font_weather_symbol_96.c │ ├── icon_64px.c │ ├── lv_font_chinese_16.c │ ├── num_32px.c │ ├── num_48px.c │ └── num_64px.c ├── gui.cpp ├── hal.cpp ├── images │ ├── bird_0.c │ ├── bird_1.c │ ├── bird_2.c │ ├── game_over.c │ ├── pic_pipe.c │ └── tutorial.c ├── main.cpp ├── menu │ ├── IR.cpp │ └── settings.cpp ├── watchface │ ├── Keyboard.cpp │ ├── bilibili.cpp │ ├── class.cpp │ ├── clock.cpp │ ├── flappyBird.cpp │ ├── hiddenFunctions.cpp │ ├── stopwatch.cpp │ ├── sysinfo.cpp │ ├── weather.cpp │ ├── webserver.cpp │ └── wifiduck.cpp ├── weather.cpp └── weather_img.cpp └── test └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/README.md -------------------------------------------------------------------------------- /include/A_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/A_config.h -------------------------------------------------------------------------------- /include/Morse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/Morse.h -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/README -------------------------------------------------------------------------------- /include/WatchBLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/WatchBLE.h -------------------------------------------------------------------------------- /include/WatchIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/WatchIR.h -------------------------------------------------------------------------------- /include/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/alarm.h -------------------------------------------------------------------------------- /include/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/gui.h -------------------------------------------------------------------------------- /include/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/hal.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/watchfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/watchfaces.h -------------------------------------------------------------------------------- /include/weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/include/weather.h -------------------------------------------------------------------------------- /lib/ArduinoJson/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/.clang-format -------------------------------------------------------------------------------- /lib/ArduinoJson/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /lib/ArduinoJson/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /lib/ArduinoJson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/.gitignore -------------------------------------------------------------------------------- /lib/ArduinoJson/.mbedignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/.mbedignore -------------------------------------------------------------------------------- /lib/ArduinoJson/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/.piopm -------------------------------------------------------------------------------- /lib/ArduinoJson/.prettierignore: -------------------------------------------------------------------------------- 1 | *.md 2 | -------------------------------------------------------------------------------- /lib/ArduinoJson/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/ArduinoJson.h -------------------------------------------------------------------------------- /lib/ArduinoJson/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/CHANGELOG.md -------------------------------------------------------------------------------- /lib/ArduinoJson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/ArduinoJson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/LICENSE.md -------------------------------------------------------------------------------- /lib/ArduinoJson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/README.md -------------------------------------------------------------------------------- /lib/ArduinoJson/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/SUPPORT.md -------------------------------------------------------------------------------- /lib/ArduinoJson/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/appveyor.yml -------------------------------------------------------------------------------- /lib/ArduinoJson/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/banner.svg -------------------------------------------------------------------------------- /lib/ArduinoJson/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := src 2 | -------------------------------------------------------------------------------- /lib/ArduinoJson/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/keywords.txt -------------------------------------------------------------------------------- /lib/ArduinoJson/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/library.json -------------------------------------------------------------------------------- /lib/ArduinoJson/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/library.properties -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/src/ArduinoJson.h -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/src/ArduinoJson.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Json/Utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/src/ArduinoJson/Json/Utf8.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/Namespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/src/ArduinoJson/Namespace.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/ArduinoJson/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/src/ArduinoJson/version.hpp -------------------------------------------------------------------------------- /lib/ArduinoJson/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ArduinoJson/src/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_Canvas.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_Canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_Canvas.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_Canvas_Indexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_Canvas_Indexed.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_Canvas_Indexed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_Canvas_Indexed.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_DataBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_DataBus.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_DataBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_DataBus.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_Display.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ESP32SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ESP32SPI.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ESP32SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ESP32SPI.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ESP32SPI_DMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ESP32SPI_DMA.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ESP32SPI_DMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ESP32SPI_DMA.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_G.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_G.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_G.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_G.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_GC9A01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_GC9A01.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_GC9A01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_GC9A01.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_GFX.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_GFX.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_HWSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_HWSPI.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_HWSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_HWSPI.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_HX8347C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_HX8347C.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_HX8347C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_HX8347C.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_HX8352C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_HX8352C.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_HX8352C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_HX8352C.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_HX8357B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_HX8357B.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_HX8357B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_HX8357B.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9225.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9225.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9225.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9225.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9341.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9341.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9341.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9341_M5STACK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9341_M5STACK.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9341_M5STACK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9341_M5STACK.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9481_18bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9481_18bit.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9481_18bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9481_18bit.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9486_18bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9486_18bit.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ILI9486_18bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ILI9486_18bit.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SEPS525.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SEPS525.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SEPS525.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SEPS525.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SSD1283A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SSD1283A.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SSD1283A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SSD1283A.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SSD1331.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SSD1331.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SSD1331.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SSD1331.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SSD1351.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SSD1351.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SSD1351.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SSD1351.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ST7735.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ST7735.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ST7735.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ST7789.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ST7789.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ST7789.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ST7796.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ST7796.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_ST7796.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_ST7796.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SWSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SWSPI.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_SWSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_SWSPI.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_TFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_TFT.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_TFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_TFT.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_TFT_18bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_TFT_18bit.cpp -------------------------------------------------------------------------------- /lib/Arduino_GFX/Arduino_TFT_18bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/Arduino_TFT_18bit.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/README.md -------------------------------------------------------------------------------- /lib/Arduino_GFX/examples/Clock/Clock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/examples/Clock/Clock.ino -------------------------------------------------------------------------------- /lib/Arduino_GFX/examples/JpegViewer/JpegDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/examples/JpegViewer/JpegDec.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/gfxfont.h -------------------------------------------------------------------------------- /lib/Arduino_GFX/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Arduino_GFX/glcdfont.c -------------------------------------------------------------------------------- /lib/BlueDot BMA400 Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/BlueDot BMA400 Library/.piopm -------------------------------------------------------------------------------- /lib/BlueDot BMA400 Library/BlueDot_BMA400.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/BlueDot BMA400 Library/BlueDot_BMA400.cpp -------------------------------------------------------------------------------- /lib/BlueDot BMA400 Library/BlueDot_BMA400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/BlueDot BMA400 Library/BlueDot_BMA400.h -------------------------------------------------------------------------------- /lib/BlueDot BMA400 Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/BlueDot BMA400 Library/README.md -------------------------------------------------------------------------------- /lib/BlueDot BMA400 Library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/BlueDot BMA400 Library/library.properties -------------------------------------------------------------------------------- /lib/Button2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/.gitignore -------------------------------------------------------------------------------- /lib/Button2/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/.piopm -------------------------------------------------------------------------------- /lib/Button2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/CHANGELOG.md -------------------------------------------------------------------------------- /lib/Button2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/LICENSE -------------------------------------------------------------------------------- /lib/Button2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/README.md -------------------------------------------------------------------------------- /lib/Button2/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/keywords.txt -------------------------------------------------------------------------------- /lib/Button2/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/library.json -------------------------------------------------------------------------------- /lib/Button2/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/library.properties -------------------------------------------------------------------------------- /lib/Button2/src/Button2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/src/Button2.cpp -------------------------------------------------------------------------------- /lib/Button2/src/Button2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/Button2/src/Button2.h -------------------------------------------------------------------------------- /lib/DS3231/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/.gitignore -------------------------------------------------------------------------------- /lib/DS3231/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/.piopm -------------------------------------------------------------------------------- /lib/DS3231/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/DS3231/DS3231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/DS3231.cpp -------------------------------------------------------------------------------- /lib/DS3231/DS3231.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/DS3231.h -------------------------------------------------------------------------------- /lib/DS3231/DS3231.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/DS3231.h.gch -------------------------------------------------------------------------------- /lib/DS3231/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/LICENSE -------------------------------------------------------------------------------- /lib/DS3231/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/README.md -------------------------------------------------------------------------------- /lib/DS3231/examples/DS3231_set/DS3231_set.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/examples/DS3231_set/DS3231_set.pde -------------------------------------------------------------------------------- /lib/DS3231/examples/echo_time/echo_time.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/examples/echo_time/echo_time.pde -------------------------------------------------------------------------------- /lib/DS3231/examples/now/now.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/examples/now/now.pde -------------------------------------------------------------------------------- /lib/DS3231/examples/set_echo/set_echo.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/examples/set_echo/set_echo.pde -------------------------------------------------------------------------------- /lib/DS3231/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/keywords.txt -------------------------------------------------------------------------------- /lib/DS3231/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/DS3231/library.properties -------------------------------------------------------------------------------- /lib/ESP32-NimBLE-Keyboard/BleKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ESP32-NimBLE-Keyboard/BleKeyboard.cpp -------------------------------------------------------------------------------- /lib/ESP32-NimBLE-Keyboard/BleKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ESP32-NimBLE-Keyboard/BleKeyboard.h -------------------------------------------------------------------------------- /lib/ESP32-NimBLE-Keyboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ESP32-NimBLE-Keyboard/README.md -------------------------------------------------------------------------------- /lib/ESP32-NimBLE-Keyboard/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ESP32-NimBLE-Keyboard/keywords.txt -------------------------------------------------------------------------------- /lib/ESP32-NimBLE-Keyboard/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/ESP32-NimBLE-Keyboard/library.properties -------------------------------------------------------------------------------- /lib/IRremoteESP8266/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/.gitattributes -------------------------------------------------------------------------------- /lib/IRremoteESP8266/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/.gitignore -------------------------------------------------------------------------------- /lib/IRremoteESP8266/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/.piopm -------------------------------------------------------------------------------- /lib/IRremoteESP8266/.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/.style.yapf -------------------------------------------------------------------------------- /lib/IRremoteESP8266/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | set noparent 2 | root=src 3 | linelength=80 4 | -------------------------------------------------------------------------------- /lib/IRremoteESP8266/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/Doxyfile -------------------------------------------------------------------------------- /lib/IRremoteESP8266/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/LICENSE.txt -------------------------------------------------------------------------------- /lib/IRremoteESP8266/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/README.md -------------------------------------------------------------------------------- /lib/IRremoteESP8266/README_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/README_de.md -------------------------------------------------------------------------------- /lib/IRremoteESP8266/README_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/README_fr.md -------------------------------------------------------------------------------- /lib/IRremoteESP8266/ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/ReleaseNotes.md -------------------------------------------------------------------------------- /lib/IRremoteESP8266/SupportedProtocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/SupportedProtocols.md -------------------------------------------------------------------------------- /lib/IRremoteESP8266/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/keywords.txt -------------------------------------------------------------------------------- /lib/IRremoteESP8266/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/library.json -------------------------------------------------------------------------------- /lib/IRremoteESP8266/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/library.properties -------------------------------------------------------------------------------- /lib/IRremoteESP8266/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/platformio.ini -------------------------------------------------------------------------------- /lib/IRremoteESP8266/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/pylintrc -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/CPPLINT.cfg -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRac.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRac.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRrecv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRrecv.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRrecv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRrecv.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRremoteESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRremoteESP8266.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRsend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRsend.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRsend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRsend.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRtext.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRtext.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRtimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRtimer.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRtimer.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRutils.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/IRutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/IRutils.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/i18n.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Airwell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Airwell.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Airwell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Airwell.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Aiwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Aiwa.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Amcor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Amcor.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Amcor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Amcor.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Argo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Argo.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Argo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Argo.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Bose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Bose.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Carrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Carrier.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Carrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Carrier.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Coolix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Coolix.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Coolix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Coolix.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Corona.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Corona.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Corona.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Corona.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Daikin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Daikin.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Daikin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Daikin.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Delonghi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Delonghi.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Delonghi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Delonghi.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Denon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Denon.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Dish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Dish.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Doshisha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Doshisha.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Ecoclim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Ecoclim.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Ecoclim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Ecoclim.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Electra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Electra.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Electra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Electra.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_EliteScreens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_EliteScreens.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Epson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Epson.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Fujitsu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Fujitsu.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Fujitsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Fujitsu.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_GICable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_GICable.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_GlobalCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_GlobalCache.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Goodweather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Goodweather.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Goodweather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Goodweather.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Gree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Gree.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Gree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Gree.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Haier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Haier.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Haier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Haier.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Hitachi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Hitachi.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Hitachi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Hitachi.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Inax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Inax.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_JVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_JVC.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Kelon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Kelon.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Kelon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Kelon.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Kelvinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Kelvinator.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Kelvinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Kelvinator.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_LG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_LG.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_LG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_LG.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Lasertag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Lasertag.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Lego.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Lego.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Lutron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Lutron.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_MWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_MWM.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Magiquest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Magiquest.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Magiquest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Magiquest.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Metz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Metz.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Midea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Midea.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Midea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Midea.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_MilesTag2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_MilesTag2.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Mirage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Mirage.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Mitsubishi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Mitsubishi.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Mitsubishi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Mitsubishi.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_MitsubishiHeavy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_MitsubishiHeavy.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Multibrackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Multibrackets.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_NEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_NEC.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_NEC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_NEC.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Neoclima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Neoclima.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Neoclima.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Neoclima.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Nikai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Nikai.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Panasonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Panasonic.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Panasonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Panasonic.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Pioneer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Pioneer.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Pronto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Pronto.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_RC5_RC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_RC5_RC6.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_RCMM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_RCMM.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Samsung.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Samsung.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Samsung.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Samsung.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Sanyo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Sanyo.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Sanyo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Sanyo.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Sharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Sharp.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Sharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Sharp.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Sherwood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Sherwood.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Sony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Sony.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Symphony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Symphony.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Tcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Tcl.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Tcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Tcl.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Technibel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Technibel.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Technibel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Technibel.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Teco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Teco.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Teco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Teco.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Teknopoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Teknopoint.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Toshiba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Toshiba.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Toshiba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Toshiba.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Transcold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Transcold.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Transcold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Transcold.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Trotec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Trotec.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Trotec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Trotec.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Truma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Truma.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Truma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Truma.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Vestel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Vestel.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Vestel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Vestel.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Voltas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Voltas.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Voltas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Voltas.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Whirlpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Whirlpool.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Whirlpool.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Whynter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Whynter.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Xmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Xmp.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/ir_Zepeal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/ir_Zepeal.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/README.md -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/de-CH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/de-CH.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/de-DE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/de-DE.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/defaults.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/en-AU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/en-AU.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/en-IE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/en-IE.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/en-UK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/en-UK.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/en-US.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/en-US.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/es-ES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/es-ES.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/fr-FR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/fr-FR.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/it-IT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/it-IT.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/pt-BR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/pt-BR.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/src/locale/zh-CN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/src/locale/zh-CN.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/IRac_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/IRac_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/IRrecv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/IRrecv_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/IRrecv_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/IRrecv_test.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/IRsend_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/IRsend_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/IRsend_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/IRsend_test.h -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/IRutils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/IRutils_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/Makefile -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Airwell_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Airwell_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Aiwa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Aiwa_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Amcor_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Amcor_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Argo_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Argo_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Bose_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Bose_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Carrier_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Carrier_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Coolix_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Coolix_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Corona_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Corona_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Daikin_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Daikin_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Delonghi_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Delonghi_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Denon_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Denon_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Dish_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Dish_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Doshisha_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Doshisha_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Ecoclim_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Ecoclim_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Electra_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Electra_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Epson_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Epson_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Fujitsu_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Fujitsu_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_GICable_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_GICable_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Gree_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Gree_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Haier_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Haier_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Hitachi_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Hitachi_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Inax_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Inax_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_JVC_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_JVC_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Kelon_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Kelon_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_LG_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_LG_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Lasertag_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Lasertag_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Lego_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Lego_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Lutron_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Lutron_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_MWM_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_MWM_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Metz_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Metz_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Midea_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Midea_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Mirage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Mirage_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_NEC_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_NEC_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Neoclima_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Neoclima_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Nikai_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Nikai_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Pioneer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Pioneer_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Pronto_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Pronto_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_RC5_RC6_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_RC5_RC6_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_RCMM_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_RCMM_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Samsung_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Samsung_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Sanyo_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Sanyo_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Sharp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Sharp_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Sherwood_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Sherwood_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Sony_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Sony_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Symphony_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Symphony_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Tcl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Tcl_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Teco_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Teco_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Toshiba_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Toshiba_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Trotec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Trotec_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Truma_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Truma_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Vestel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Vestel_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Voltas_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Voltas_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Whynter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Whynter_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/test/ir_Xmp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/test/ir_Xmp_test.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/tools/Makefile -------------------------------------------------------------------------------- /lib/IRremoteESP8266/tools/gc_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/tools/gc_decode.cpp -------------------------------------------------------------------------------- /lib/IRremoteESP8266/tools/mkkeywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/tools/mkkeywords -------------------------------------------------------------------------------- /lib/IRremoteESP8266/tools/mode2_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/IRremoteESP8266/tools/mode2_decode.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/.piopm -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/CHANGELOG.md -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/LICENSE -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/README.md -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/library.properties -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/CODING_STANDARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/CODING_STANDARDS.md -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/HIDKeyboardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/HIDKeyboardTypes.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/HIDTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/HIDTypes.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NOTICE -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLE2904.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLE2904.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLE2904.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLE2904.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEAddress.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEAddress.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEAdvertising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEAdvertising.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEBeacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEBeacon.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEBeacon.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEClient.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEClient.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEConnInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEConnInfo.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEDescriptor.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEDevice.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEDevice.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEHIDDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEHIDDevice.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEHIDDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEHIDDevice.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLELog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLELog.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEScan.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEScan.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLESecurity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLESecurity.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLESecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLESecurity.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEServer.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEServer.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEService.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEService.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEUUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEUUID.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEUUID.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEUtils.cpp -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/NimBLEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/NimBLEUtils.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/README.md -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/RELEASE_NOTES.md -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/console/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/console/console.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/esp_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/esp_compiler.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/esp_nimble_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/esp_nimble_cfg.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/esp_nimble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/esp_nimble_hci.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/esp_nimble_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/esp_nimble_mem.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/ext/tinycrypt/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.8 2 | -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/hal/hal_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/hal/hal_timer.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_att.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_att.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_gap.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_gatt.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_hs.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_hs_adv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_hs_adv.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_hs_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_hs_hci.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_hs_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_hs_id.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_hs_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_hs_log.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_hs_mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_hs_mbuf.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_hs_pvcy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_hs_pvcy.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_hs_stop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_hs_stop.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_ibeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_ibeacon.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_l2cap.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_monitor.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_sm.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_store.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/ble_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/ble_uuid.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/host/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/host/util/util.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/log/log.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/log_common/ignore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/log_common/ignore.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/logcfg/logcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/logcfg/logcfg.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mem/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mem/mem.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/access.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/cfg_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/cfg_cli.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/cfg_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/cfg_srv.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/glue.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/health_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/health_cli.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/health_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/health_srv.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/main.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/mesh.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/model_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/model_cli.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/model_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/model_srv.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/porting.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/proxy.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/slist.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/mesh/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/mesh/testing.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/modlog/modlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/modlog/modlog.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/nimble/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/nimble/ble.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/nimble/hci_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/nimble/hci_common.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/nimble/nimble_npl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/nimble/nimble_npl.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/nimble/nimble_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/nimble/nimble_opt.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/nimconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/nimconfig.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/nimconfig_rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/nimconfig_rename.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/os/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/os/endian.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/os/os.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/os/os_cputime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/os/os_cputime.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/os/os_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/os/os_error.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/os/os_mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/os/os_mbuf.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/os/os_mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/os/os_mempool.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/os/os_trace_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/os/os_trace_api.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/os/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/os/queue.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/os/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/os/util.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/src/ble_sm_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/src/ble_sm_priv.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/stats/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/stats/stats.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/syscfg/syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/syscfg/syscfg.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/sysflash/sysflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/sysflash/sysflash.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/sysinit/sysinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/sysinit/sysinit.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/AUTHORS -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/LICENSE -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/README -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.8 2 | -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/aes.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/ecc.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/ecc_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/ecc_dh.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/ecc_dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/ecc_dsa.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/hmac.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/sha256.h -------------------------------------------------------------------------------- /lib/NimBLE-Arduino/src/tinycrypt/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/NimBLE-Arduino/src/tinycrypt/utils.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/README -------------------------------------------------------------------------------- /lib/WebConfig/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/WebConfig/.piopm -------------------------------------------------------------------------------- /lib/WebConfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/WebConfig/LICENSE -------------------------------------------------------------------------------- /lib/WebConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/WebConfig/README.md -------------------------------------------------------------------------------- /lib/WebConfig/examples/demo32/demo32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/WebConfig/examples/demo32/demo32.ino -------------------------------------------------------------------------------- /lib/WebConfig/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/WebConfig/keywords.txt -------------------------------------------------------------------------------- /lib/WebConfig/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/WebConfig/library.properties -------------------------------------------------------------------------------- /lib/WebConfig/src/WebConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/WebConfig/src/WebConfig.cpp -------------------------------------------------------------------------------- /lib/WebConfig/src/WebConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/WebConfig/src/WebConfig.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/FakeArduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/FakeArduino.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/FakeArduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/FakeArduino.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/FakePrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/FakePrint.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/FakePrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/FakePrint.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/Fakegfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/Fakegfxfont.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/Fakeglcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/Fakeglcdfont.c -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/Fakepgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/Fakepgmspace.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/LICENSE -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/Readme.md -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/SimplexNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/SimplexNoise.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/SimplexNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/SimplexNoise.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/anim_doom_fire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/anim_doom_fire.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/anim_doom_fire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/anim_doom_fire.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/anim_firework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/anim_firework.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/anim_firework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/anim_firework.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/esp32_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/esp32_cpu.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/examples/.gitignore: -------------------------------------------------------------------------------- 1 | max/ 2 | .* 3 | !/.gitignore 4 | 5 | -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/examples/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/examples/Readme.md -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/gfx_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/gfx_2d.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/gfx_2d_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/gfx_2d_license.txt -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/gfx_2d_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/gfx_2d_print.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/gfx_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/gfx_util.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/gfx_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/gfx_util.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/library.properties -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/math_angles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/math_angles.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/math_angles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/math_angles.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/math_osm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/math_osm.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/math_osm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/math_osm.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/osm_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/osm_render.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/osm_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/osm_render.h -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/time_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/time_util.cpp -------------------------------------------------------------------------------- /lib/lib-open-smartwatch/time_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lib-open-smartwatch/time_util.h -------------------------------------------------------------------------------- /lib/lv_lib_qrcode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lv_lib_qrcode/LICENSE -------------------------------------------------------------------------------- /lib/lv_lib_qrcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lv_lib_qrcode/README.md -------------------------------------------------------------------------------- /lib/lv_lib_qrcode/lv_qrcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lv_lib_qrcode/lv_qrcode.c -------------------------------------------------------------------------------- /lib/lv_lib_qrcode/lv_qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lv_lib_qrcode/lv_qrcode.h -------------------------------------------------------------------------------- /lib/lv_lib_qrcode/qrcodegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lv_lib_qrcode/qrcodegen.c -------------------------------------------------------------------------------- /lib/lv_lib_qrcode/qrcodegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lv_lib_qrcode/qrcodegen.h -------------------------------------------------------------------------------- /lib/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/.editorconfig -------------------------------------------------------------------------------- /lib/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /lib/lvgl/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/auto-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/.github/auto-comment.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/.github/pull_request_template.md -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/.github/workflows/main.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/.github/workflows/release.yml -------------------------------------------------------------------------------- /lib/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/.gitignore -------------------------------------------------------------------------------- /lib/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/lvgl/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/.piopm -------------------------------------------------------------------------------- /lib/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/Kconfig -------------------------------------------------------------------------------- /lib/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /lib/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/README.md -------------------------------------------------------------------------------- /lib/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/component.mk -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/anim/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/anim/lv_example_anim.h -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/anim/lv_example_anim_1.c -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/anim/lv_example_anim_2.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/animimg001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/animimg001.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/animimg002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/animimg002.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/animimg003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/animimg003.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_caret_down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/img_caret_down.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_hand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/img_hand.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_skew_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/img_skew_strip.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_star.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/img_star.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/imgbtn_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/imgbtn_left.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/imgbtn_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/imgbtn_mid.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/imgbtn_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/assets/imgbtn_right.c -------------------------------------------------------------------------------- /lib/lvgl/examples/event/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/event/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/event/lv_example_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/event/lv_example_event.h -------------------------------------------------------------------------------- /lib/lvgl/examples/examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/examples.mk -------------------------------------------------------------------------------- /lib/lvgl/examples/get_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/get_started/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/layouts/flex/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/layouts/flex/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/layouts/grid/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/layouts/grid/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/lv_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/lv_examples.h -------------------------------------------------------------------------------- /lib/lvgl/examples/scroll/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/scroll/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/styles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/styles/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/arc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/arc/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/bar/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/bar/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/btn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/btn/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/canvas/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/canvas/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/chart/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/chart/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/img/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/img/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/imgbtn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/imgbtn/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/label/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/label/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/led/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/led/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/line/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/line/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/list/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/list/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/meter/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/meter/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/msgbox/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/msgbox/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/obj/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/obj/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/roller/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/roller/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/slider/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/slider/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/span/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/span/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/span/lv_example_span_1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/switch/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/switch/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/table/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/table/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/win/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/examples/widgets/win/index.rst -------------------------------------------------------------------------------- /lib/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/library.json -------------------------------------------------------------------------------- /lib/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/library.properties -------------------------------------------------------------------------------- /lib/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/lv_conf.h -------------------------------------------------------------------------------- /lib/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/lvgl.h -------------------------------------------------------------------------------- /lib/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/lvgl.mk -------------------------------------------------------------------------------- /lib/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /lib/lvgl/scripts/build_html_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/build_html_examples.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/built_in_font/SimSun.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/built_in_font/SimSun.woff -------------------------------------------------------------------------------- /lib/lvgl/scripts/code-format.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/code-format.cfg -------------------------------------------------------------------------------- /lib/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /lib/lvgl/scripts/cppcheck_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/cppcheck_run.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/find_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/find_version.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/genexamplelist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/genexamplelist.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/infer_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/infer_run.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/lv_conf_internal_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/lv_conf_internal_gen.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/release/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/release/patch.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/release/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/release/release.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/style_api_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/scripts/style_api_gen.py -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_core.mk -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_event.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_event.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_group.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_group.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_indev.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_indev.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_indev_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_indev_scroll.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_indev_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_indev_scroll.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_class.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_class.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_draw.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_draw.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_pos.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_pos.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_scroll.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_scroll.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_style.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_style.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_style_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_style_gen.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_style_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_style_gen.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_tree.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_obj_tree.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_theme.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/core/lv_theme.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw.mk -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_arc.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_arc.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_blend.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_blend.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_img.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_img.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_label.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_label.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_line.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_line.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_mask.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_mask.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_rect.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_rect.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_triangle.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_draw_triangle.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_img_buf.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_img_buf.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_img_cache.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_img_cache.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_img_decoder.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/draw/lv_img_decoder.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/extra.mk -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/flex/lv_flex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/layouts/flex/lv_flex.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/flex/lv_flex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/layouts/flex/lv_flex.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/grid/lv_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/layouts/grid/lv_grid.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/grid/lv_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/layouts/grid/lv_grid.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/lv_layouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/layouts/lv_layouts.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/lv_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/lv_extra.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/lv_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/lv_extra.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/themes/lv_themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/themes/lv_themes.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/led/lv_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/widgets/led/lv_led.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/led/lv_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/widgets/led/lv_led.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/list/lv_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/widgets/list/lv_list.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/list/lv_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/widgets/list/lv_list.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/lv_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/widgets/lv_widgets.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/span/lv_span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/widgets/span/lv_span.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/span/lv_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/widgets/span/lv_span.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/win/lv_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/widgets/win/lv_win.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/win/lv_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/extra/widgets/win/lv_win.h -------------------------------------------------------------------------------- /lib/lvgl/src/font/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/korean.ttf -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font.mk -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_fmt_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_fmt_txt.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_fmt_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_fmt_txt.h -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_loader.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_loader.h -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_10.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_12.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_14.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_16.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_18.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_20.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_22.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_24.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_26.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_26.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_28.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_30.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_32.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_34.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_36.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_38.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_38.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_40.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_42.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_44.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_46.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_46.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_48.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_montserrat_8.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_simsun_16_cjk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_simsun_16_cjk.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_unscii_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_unscii_16.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_unscii_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_font_unscii_8.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_symbol_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/font/lv_symbol_def.h -------------------------------------------------------------------------------- /lib/lvgl/src/gpu/lv_gpu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/gpu/lv_gpu.mk -------------------------------------------------------------------------------- /lib/lvgl/src/gpu/lv_gpu_nxp_pxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/gpu/lv_gpu_nxp_pxp.c -------------------------------------------------------------------------------- /lib/lvgl/src/gpu/lv_gpu_nxp_pxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/gpu/lv_gpu_nxp_pxp.h -------------------------------------------------------------------------------- /lib/lvgl/src/gpu/lv_gpu_nxp_pxp_osa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/gpu/lv_gpu_nxp_pxp_osa.c -------------------------------------------------------------------------------- /lib/lvgl/src/gpu/lv_gpu_nxp_pxp_osa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/gpu/lv_gpu_nxp_pxp_osa.h -------------------------------------------------------------------------------- /lib/lvgl/src/gpu/lv_gpu_nxp_vglite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/gpu/lv_gpu_nxp_vglite.c -------------------------------------------------------------------------------- /lib/lvgl/src/gpu/lv_gpu_nxp_vglite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/gpu/lv_gpu_nxp_vglite.h -------------------------------------------------------------------------------- /lib/lvgl/src/gpu/lv_gpu_stm32_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/gpu/lv_gpu_stm32_dma2d.c -------------------------------------------------------------------------------- /lib/lvgl/src/gpu/lv_gpu_stm32_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/gpu/lv_gpu_stm32_dma2d.h -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/hal/lv_hal_disp.c -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/hal/lv_hal_disp.h -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/hal/lv_hal_indev.c -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/hal/lv_hal_indev.h -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/hal/lv_hal_tick.c -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/hal/lv_hal_tick.h -------------------------------------------------------------------------------- /lib/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /lib/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /lib/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /lib/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_assert.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_async.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_async.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_color.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_color.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_misc.mk -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_printf.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_printf.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_style.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_style.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_style_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_style_gen.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_style_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_style_gen.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_templ.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_templ.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_timer.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_timer.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_txt_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_txt_ap.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_txt_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_txt_ap.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_types.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_utils.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/misc/lv_utils.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_arc.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_arc.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_bar.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_bar.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_btn.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_btn.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_btnmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_btnmatrix.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_btnmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_btnmatrix.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_canvas.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_canvas.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_checkbox.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_checkbox.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_dropdown.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_dropdown.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_img.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_img.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_label.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_label.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_line.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_line.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_objx_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_objx_templ.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_objx_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_objx_templ.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_roller.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_roller.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_slider.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_slider.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_switch.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_switch.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_table.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_table.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_textarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_textarea.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_textarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_textarea.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_widgets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/src/widgets/lv_widgets.mk -------------------------------------------------------------------------------- /lib/lvgl/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/Makefile -------------------------------------------------------------------------------- /lib/lvgl/tests/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/build.py -------------------------------------------------------------------------------- /lib/lvgl/tests/font_1.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/font_1.fnt -------------------------------------------------------------------------------- /lib/lvgl/tests/font_2.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/font_2.fnt -------------------------------------------------------------------------------- /lib/lvgl/tests/font_3.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/font_3.fnt -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_assert.c -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_assert.h -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_conf.h -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_core/lv_test_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_core/lv_test_core.c -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_core/lv_test_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_core/lv_test_core.h -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_core/lv_test_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_core/lv_test_obj.c -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_core/lv_test_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_core/lv_test_obj.h -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_fonts/font_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_fonts/font_1.c -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_fonts/font_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_fonts/font_2.c -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_fonts/font_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_fonts/font_3.c -------------------------------------------------------------------------------- /lib/lvgl/tests/lv_test_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/lib/lvgl/tests/lv_test_main.c -------------------------------------------------------------------------------- /lib/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/BLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/BLE.cpp -------------------------------------------------------------------------------- /src/Morse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/Morse.cpp -------------------------------------------------------------------------------- /src/WatchIR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/WatchIR.cpp -------------------------------------------------------------------------------- /src/WatchfaceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/WatchfaceManager.cpp -------------------------------------------------------------------------------- /src/alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/alarm.cpp -------------------------------------------------------------------------------- /src/configParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/configParams.h -------------------------------------------------------------------------------- /src/fonts/font_weather_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/fonts/font_weather_32.c -------------------------------------------------------------------------------- /src/fonts/font_weather_num_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/fonts/font_weather_num_24.c -------------------------------------------------------------------------------- /src/fonts/font_weather_symbol_96.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/fonts/font_weather_symbol_96.c -------------------------------------------------------------------------------- /src/fonts/icon_64px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/fonts/icon_64px.c -------------------------------------------------------------------------------- /src/fonts/lv_font_chinese_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/fonts/lv_font_chinese_16.c -------------------------------------------------------------------------------- /src/fonts/num_32px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/fonts/num_32px.c -------------------------------------------------------------------------------- /src/fonts/num_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/fonts/num_48px.c -------------------------------------------------------------------------------- /src/fonts/num_64px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/fonts/num_64px.c -------------------------------------------------------------------------------- /src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/gui.cpp -------------------------------------------------------------------------------- /src/hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/hal.cpp -------------------------------------------------------------------------------- /src/images/bird_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/images/bird_0.c -------------------------------------------------------------------------------- /src/images/bird_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/images/bird_1.c -------------------------------------------------------------------------------- /src/images/bird_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/images/bird_2.c -------------------------------------------------------------------------------- /src/images/game_over.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/images/game_over.c -------------------------------------------------------------------------------- /src/images/pic_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/images/pic_pipe.c -------------------------------------------------------------------------------- /src/images/tutorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/images/tutorial.c -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/menu/IR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/menu/IR.cpp -------------------------------------------------------------------------------- /src/menu/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/menu/settings.cpp -------------------------------------------------------------------------------- /src/watchface/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/Keyboard.cpp -------------------------------------------------------------------------------- /src/watchface/bilibili.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/bilibili.cpp -------------------------------------------------------------------------------- /src/watchface/class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/class.cpp -------------------------------------------------------------------------------- /src/watchface/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/clock.cpp -------------------------------------------------------------------------------- /src/watchface/flappyBird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/flappyBird.cpp -------------------------------------------------------------------------------- /src/watchface/hiddenFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/hiddenFunctions.cpp -------------------------------------------------------------------------------- /src/watchface/stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/stopwatch.cpp -------------------------------------------------------------------------------- /src/watchface/sysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/sysinfo.cpp -------------------------------------------------------------------------------- /src/watchface/weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/weather.cpp -------------------------------------------------------------------------------- /src/watchface/webserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/watchface/webserver.cpp -------------------------------------------------------------------------------- /src/watchface/wifiduck.cpp: -------------------------------------------------------------------------------- 1 | //TODO: WiFiDuck -------------------------------------------------------------------------------- /src/weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/weather.cpp -------------------------------------------------------------------------------- /src/weather_img.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/src/weather_img.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diylxy/lvgl-watch/HEAD/test/README --------------------------------------------------------------------------------