├── 3DPrinting ├── 基础版本(无拓展) │ ├── 外壳主体.STL │ ├── 外壳盖板.STL │ ├── 屏幕按键外壳x3.STL │ └── 旋钮.STL ├── 新方案三(★★★推荐★★★) │ ├── 改进版新方案FDM(适用拓竹等常见打印机) │ │ ├── OrcaSlicer切片摆盘.3mf │ │ ├── 主体外壳FDM.STEP │ │ ├── 主体盖板FDM.STEP │ │ ├── 按键屏幕FDM.STEP │ │ └── 旋钮FDM.STEP │ └── 改进版新方案SLA光固化(适用嘉立创3D打印) │ │ ├── 主体盖板.STL │ │ ├── 屏幕按键外壳x3.STL │ │ ├── 新版主体外壳.STL │ │ └── 旋钮.STL ├── 方案一(含米家拓展) │ ├── 外壳主体.STL │ ├── 外壳盖板.STL │ ├── 屏幕按键外壳x3.STL │ ├── 旋钮.STL │ ├── 米家拓展外壳.STL │ └── 米家拓展盖板.STL └── 方案二(含米家拓展) │ ├── 主体外壳.STL │ ├── 主体盖板.STL │ ├── 屏幕按键外壳x3.STL │ ├── 旋钮.STL │ ├── 米家拓展外壳.STL │ └── 米家拓展盖板.STL ├── Firmware ├── firmware_GC9107_16MB.bin ├── firmware_GC9107_8MB.bin ├── firmware_NV3023_16MB.bin └── firmware_NV3023_8MB.bin ├── Hardware ├── Gerber_【主板】TripleKey主板_2024-05-09.zip ├── Gerber_【定位板】按键定位板-屏幕排线板-拓展IO板_2024-05-09.zip ├── Gerber_【拓展方案2】右侧拓展板_2024-05-09.zip ├── Gerber_【拓展方案2】米家及人在传感器拓展_2024-05-09.zip ├── Gerber_【拓展方案3】米家及人在传感器拓展_贴_2024-06-05.zip └── Panel_透明亚克力_1mm_底面打印_带胶_2024-05-09.epanm ├── LICENSE ├── README.assets ├── IMG_20240514_224806.jpg ├── IMG_20240514_224814-17163724153263.jpg ├── IMG_20240514_224814.jpg ├── IMG_20240514_225016.jpg ├── IMG_20240515_004026.jpg ├── IMG_20240522_190503.jpg ├── IMG_20240522_190955.jpg ├── IMG_20240605_011150.jpg ├── IMG_20240605_024737.jpg ├── QQ截图20240705213352.jpg ├── QQ截图20240705220017.jpg ├── QQ截图20240705220030.jpg ├── QQ截图20240705220120.jpg ├── image-20240508171413572.png ├── image-20240508174730741.png ├── image-20240508221109063.png ├── image-20240508223518974.png ├── image-20240508223740065.png ├── image-20240522181441683.png ├── image-20240522181445707.png ├── image-20240522181726047.png ├── image-20240605121523363.png ├── image-20240605121546520.png ├── image-20240628224732417.png ├── image-20240703172011564.png ├── image-20240703203007263.png ├── image-20240703203100893.png ├── image-20240705220411624.png ├── 主板.jpg ├── 屏幕定位板1.jpg ├── 屏幕定位板2.jpg ├── 拓展方案1.jpg ├── 拓展方案二.jpg ├── 插接长排12PIN.jpg ├── 插接长排12PIN实物.jpg ├── 焊接长排12PIN.jpg ├── 焊接长排12PIN实物.jpg └── 编码器.jpg ├── README.md ├── Software ├── .gitignore ├── .vscode │ ├── extensions.json │ └── settings.json ├── LICENSE ├── README.md ├── VERSION ├── custom.csv ├── custom_16MB.csv ├── custom_8MB.csv ├── data │ ├── Copyright.png │ ├── KEY.png │ ├── PLE.png │ ├── TRI.png │ ├── clock_theme │ │ ├── 14Segment │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── 7Segment │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── BINAView │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── Butterfly │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── FlipFlap │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── Flowers │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── Gradient │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── LixieCyan │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── LixiePurple │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── Matrix │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── NIMO │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── NeonBlue │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── NeonGreen │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── NeonPurple │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── NeonWhite │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── NeonYellow │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── NixieTube │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── Notebook │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── PixiePro │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── RGB │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── SolidBlue │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── SolidGreen │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── SolidPurple │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── SolidWhite │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── SolidYellow │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── VFD │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ ├── Wood │ │ │ ├── eight.png │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── seven.png │ │ │ ├── six.png │ │ │ ├── three.png │ │ │ ├── two.png │ │ │ └── zero.png │ │ └── readme.md │ ├── cn_girl │ │ ├── 0.wav │ │ ├── 1.wav │ │ ├── 10.wav │ │ ├── 11.wav │ │ ├── 12.wav │ │ ├── 13.wav │ │ ├── 14.wav │ │ ├── 15.wav │ │ ├── 16.wav │ │ ├── 17.wav │ │ ├── 18.wav │ │ ├── 19.wav │ │ ├── 2.wav │ │ ├── 20.wav │ │ ├── 3.wav │ │ ├── 30.wav │ │ ├── 4.wav │ │ ├── 40.wav │ │ ├── 5.wav │ │ ├── 50.wav │ │ ├── 6.wav │ │ ├── 7.wav │ │ ├── 8.wav │ │ ├── 9.wav │ │ ├── afternoon.wav │ │ ├── dian.wav │ │ ├── fen.wav │ │ ├── morning.wav │ │ └── the time is.wav │ ├── config_clock.json │ ├── config_encoder.json │ ├── config_mijia.txt │ ├── config_photo.json │ ├── config_stocks.txt │ ├── config_weather.json │ ├── config_web.txt │ ├── end.wav │ ├── media │ │ ├── next.png │ │ ├── pause.png │ │ ├── play.png │ │ └── prev.png │ ├── mijia │ │ ├── off.png │ │ └── on.png │ ├── photo │ │ ├── Example1.png │ │ ├── Example2.png │ │ └── Example3.jpg │ ├── shortcut │ │ ├── copy.png │ │ ├── cut.png │ │ ├── desktop.png │ │ ├── paste.png │ │ ├── refresh.png │ │ ├── select_all.png │ │ ├── switch_windows.png │ │ └── undo.png │ ├── weather │ │ ├── Humidity.png │ │ ├── Temperature.png │ │ ├── maxtemp.png │ │ ├── mintemp.png │ │ ├── warning │ │ │ ├── Cold WaveBlue.png │ │ │ ├── Cold WaveOrange.png │ │ │ ├── Cold WaveRed.png │ │ │ ├── Cold WaveYellow.png │ │ │ ├── DroughtOrange.png │ │ │ ├── DroughtRed.png │ │ │ ├── FrostBlue.png │ │ │ ├── FrostOrange.png │ │ │ ├── FrostYellow.png │ │ │ ├── GaleBlue.png │ │ │ ├── GaleOrange.png │ │ │ ├── GaleRed.png │ │ │ ├── GaleYellow.png │ │ │ ├── HailOrange.png │ │ │ ├── HailRed.png │ │ │ ├── HazeOrange.png │ │ │ ├── HazeYellow.png │ │ │ ├── Heat WaveOrange.png │ │ │ ├── Heat WaveRed.png │ │ │ ├── Heat WaveYellow.png │ │ │ ├── Heavy FogOrange.png │ │ │ ├── Heavy FogRed.png │ │ │ ├── Heavy FogYellow.png │ │ │ ├── LandslideOrange.png │ │ │ ├── LandslideRed.png │ │ │ ├── LandslideYellow.png │ │ │ ├── LightningOrange.png │ │ │ ├── LightningRed.png │ │ │ ├── LightningYellow.png │ │ │ ├── RainstormBlue.png │ │ │ ├── RainstormOrange.png │ │ │ ├── RainstormRed.png │ │ │ ├── RainstormYellow.png │ │ │ ├── Road IcingOrange.png │ │ │ ├── Road IcingRed.png │ │ │ ├── Road IcingYellow.png │ │ │ ├── SandstormOrange.png │ │ │ ├── SandstormRed.png │ │ │ ├── SandstormYellow.png │ │ │ ├── Snow StormBlue.png │ │ │ ├── Snow StormOrange.png │ │ │ ├── Snow StormRed.png │ │ │ ├── Snow StormYellow.png │ │ │ ├── Strong ConvectionBlue.png │ │ │ ├── Strong ConvectionOrange.png │ │ │ ├── Strong ConvectionYellow.png │ │ │ ├── Thunder GustOrange.png │ │ │ ├── Thunder GustRed.png │ │ │ ├── Thunder GustYellow.png │ │ │ ├── Thunderstorm And GaleOrange.png │ │ │ ├── Thunderstorm And GaleRed.png │ │ │ ├── Thunderstorm And GaleYellow.png │ │ │ ├── TyphoonBlue.png │ │ │ ├── TyphoonOrange.png │ │ │ ├── TyphoonRed.png │ │ │ ├── TyphoonYellow.png │ │ │ ├── UniBlue.png │ │ │ ├── UniOrange.png │ │ │ ├── UniRed.png │ │ │ ├── UniYellow.png │ │ │ ├── WildfireRed.png │ │ │ └── WildfireYellow.png │ │ └── weather │ │ │ ├── 100.png │ │ │ ├── 101.png │ │ │ ├── 104.png │ │ │ ├── 150.png │ │ │ ├── 151.png │ │ │ ├── 300.png │ │ │ ├── 302.png │ │ │ ├── 305.png │ │ │ ├── 306.png │ │ │ ├── 307.png │ │ │ ├── 310.png │ │ │ ├── 350.png │ │ │ ├── 399.png │ │ │ ├── 400.png │ │ │ ├── 401.png │ │ │ ├── 402.png │ │ │ ├── 403.png │ │ │ ├── 404.png │ │ │ ├── 407.png │ │ │ ├── 501.png │ │ │ ├── 502.png │ │ │ ├── 503.png │ │ │ ├── 504.png │ │ │ ├── 507.png │ │ │ ├── NA.png │ │ │ └── icon_yejianwu.png │ ├── web │ │ ├── bili.png │ │ ├── gitee.png │ │ ├── github.png │ │ ├── lcsc.png │ │ └── oshwhub.png │ └── webserver │ │ ├── config.html │ │ ├── firmware.html │ │ ├── moresettings.html │ │ ├── root.html │ │ ├── uploadphoto.html │ │ └── uploadweb.html ├── include │ ├── JpegFunc.h │ └── README ├── lib │ ├── Adafruit NeoPixel │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .gitignore │ │ ├── .piopm │ │ ├── Adafruit_NeoPixel.cpp │ │ ├── Adafruit_NeoPixel.h │ │ ├── CONTRIBUTING.md │ │ ├── COPYING │ │ ├── README.md │ │ ├── esp.c │ │ ├── esp8266.c │ │ ├── examples │ │ │ ├── RGBWstrandtest │ │ │ │ ├── .esp8266.test.skip │ │ │ │ ├── .trinket.test.skip │ │ │ │ └── RGBWstrandtest.ino │ │ │ ├── StrandtestArduinoBLE │ │ │ │ ├── .none.test.only │ │ │ │ └── StrandtestArduinoBLE.ino │ │ │ ├── StrandtestArduinoBLECallback │ │ │ │ ├── .none.test.only │ │ │ │ └── StrandtestArduinoBLECallback.ino │ │ │ ├── StrandtestBLE │ │ │ │ ├── .none.test.only │ │ │ │ ├── BLESerial.cpp │ │ │ │ ├── BLESerial.h │ │ │ │ └── StrandtestBLE.ino │ │ │ ├── StrandtestBLE_nodelay │ │ │ │ ├── .none.test.only │ │ │ │ ├── BLESerial.cpp │ │ │ │ ├── BLESerial.h │ │ │ │ └── StrandtestBLE_nodelay.ino │ │ │ ├── buttoncycler │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── buttoncycler.ino │ │ │ ├── simple │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── simple.ino │ │ │ ├── simple_new_operator │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── simple_new_operator.ino │ │ │ ├── strandtest │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── strandtest.ino │ │ │ ├── strandtest_nodelay │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── strandtest_nodelay.ino │ │ │ └── strandtest_wheel │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── strandtest_wheel.ino │ │ ├── kendyte_k210.c │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── rp2040_pio.h │ ├── ArduinoUZlib │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── example │ │ │ └── StreamHttpsClientGzipDemo.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── ArduinoUZlib.cpp │ │ │ ├── ArduinoUZlib.h │ │ │ ├── CMakeLists.txt │ │ │ ├── adler32.c │ │ │ ├── crc32.c │ │ │ ├── defl_static.c │ │ │ ├── defl_static.h │ │ │ ├── genlz77.c │ │ │ ├── makefile │ │ │ ├── makefile.b32 │ │ │ ├── makefile.dj2 │ │ │ ├── makefile.dmc │ │ │ ├── makefile.mgw │ │ │ ├── makefile.vc │ │ │ ├── makefile.wat │ │ │ ├── nasm │ │ │ ├── crc32.nas │ │ │ ├── nasmlcm.inc │ │ │ └── tinfzlib.nas │ │ │ ├── tinf.h │ │ │ ├── tinf_compat.h │ │ │ ├── tinfgzip.c │ │ │ ├── tinflate.c │ │ │ ├── tinfzlib.c │ │ │ ├── uzlib.h │ │ │ └── uzlib_conf.h │ ├── Arduino_GFX-1.4.6 │ │ ├── README.md │ │ ├── examples │ │ │ ├── ArduinoVNC │ │ │ │ ├── ArduinoVNC.ino │ │ │ │ ├── VNC_GFX.h │ │ │ │ ├── keyboard.h │ │ │ │ └── touch.h │ │ │ ├── AsciiTable │ │ │ │ └── AsciiTable.ino │ │ │ ├── Clock │ │ │ │ └── Clock.ino │ │ │ ├── HelloWorld │ │ │ │ └── HelloWorld.ino │ │ │ ├── HelloWorldGfxfont │ │ │ │ ├── FreeMono8pt7b.h │ │ │ │ ├── FreeSansBold10pt7b.h │ │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ │ └── HelloWorldGfxfont.ino │ │ │ ├── ImgViewer │ │ │ │ ├── ImgViewerAnimatedGIF │ │ │ │ │ ├── GifClass.h │ │ │ │ │ ├── ImgViewerAnimatedGIF.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── ezgif.com-optimize.gif │ │ │ │ │ │ └── ezgif.com-resize.gif │ │ │ │ ├── ImgViewerBmp │ │ │ │ │ ├── BmpClass.h │ │ │ │ │ ├── ImgViewerBmp.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── octocatL.bmp │ │ │ │ │ │ ├── octocatM.bmp │ │ │ │ │ │ └── octocatS.bmp │ │ │ │ ├── ImgViewerJpeg │ │ │ │ │ ├── ImgViewerJpeg.ino │ │ │ │ │ ├── JpegFunc.h │ │ │ │ │ └── data │ │ │ │ │ │ └── octocat.jpg │ │ │ │ ├── ImgViewerMjpeg │ │ │ │ │ ├── ImgViewerMjpeg.ino │ │ │ │ │ ├── MjpegClass.h │ │ │ │ │ └── data │ │ │ │ │ │ ├── earth.mjpeg │ │ │ │ │ │ └── earth128.mjpeg │ │ │ │ ├── ImgViewerMjpegESP32SIMD │ │ │ │ │ ├── Data │ │ │ │ │ │ └── earth480x320.mjpeg │ │ │ │ │ ├── ImgViewerMjpegESP32SIMD.ino │ │ │ │ │ └── MjpegClass.h │ │ │ │ ├── ImgViewerPROGMEM │ │ │ │ │ ├── Arduino_UNO_Rev3_Ok.c │ │ │ │ │ └── ImgViewerPROGMEM.ino │ │ │ │ └── ImgViewerPng │ │ │ │ │ ├── ImgViewerPng.ino │ │ │ │ │ └── data │ │ │ │ │ ├── octocat-4bpp.png │ │ │ │ │ └── octocat.png │ │ │ ├── LVGL │ │ │ │ ├── LvglBenchmark │ │ │ │ │ ├── LvglBenchmark.ino │ │ │ │ │ ├── img_benchmark_cogwheel_alpha16.c │ │ │ │ │ ├── img_benchmark_cogwheel_argb.c │ │ │ │ │ ├── img_benchmark_cogwheel_chroma_keyed.c │ │ │ │ │ ├── img_benchmark_cogwheel_indexed16.c │ │ │ │ │ ├── img_benchmark_cogwheel_rgb.c │ │ │ │ │ ├── img_benchmark_cogwheel_rgb565a8.c │ │ │ │ │ ├── lv_demo_benchmark.c │ │ │ │ │ ├── lv_demo_benchmark.h │ │ │ │ │ ├── lv_font_bechmark_montserrat_12_compr_az.c │ │ │ │ │ ├── lv_font_bechmark_montserrat_16_compr_az.c │ │ │ │ │ ├── lv_font_bechmark_montserrat_28_compr_az.c │ │ │ │ │ └── touch.h │ │ │ │ ├── LvglHelloNeoPixel │ │ │ │ │ ├── Adafruit_NeoPixel_GFX.h │ │ │ │ │ ├── LvglHelloNeoPixel.ino │ │ │ │ │ └── ui_font_Chill7.c │ │ │ │ ├── LvglHelloWorld │ │ │ │ │ └── LvglHelloWorld.ino │ │ │ │ └── LvglWidgets │ │ │ │ │ ├── LvglWidgets.ino │ │ │ │ │ ├── img_clothes.c │ │ │ │ │ ├── img_demo_widgets_avatar.c │ │ │ │ │ ├── img_lvgl_logo.c │ │ │ │ │ ├── lv_demo_widgets.c │ │ │ │ │ ├── lv_demo_widgets.h │ │ │ │ │ └── touch.h │ │ │ ├── MultipleDisplay │ │ │ │ ├── MultipleAnimatedGIF │ │ │ │ │ ├── GifClass.h │ │ │ │ │ ├── MultipleAnimatedGIF.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── archer.gif │ │ │ │ │ │ ├── jobs.gif │ │ │ │ │ │ ├── lancer.gif │ │ │ │ │ │ └── white.gif │ │ │ │ └── MultiplePDQgraphicstest │ │ │ │ │ └── MultiplePDQgraphicstest.ino │ │ │ ├── NeoPixel │ │ │ │ ├── Adafruit_NeoPixel │ │ │ │ │ ├── Adafruit_NeoPixel.ino │ │ │ │ │ └── Adafruit_NeoPixel_GFX.h │ │ │ │ └── FastLED │ │ │ │ │ ├── FastLED.ino │ │ │ │ │ └── FastLED_GFX.h │ │ │ ├── PDQgraphicstest │ │ │ │ ├── Arduino_GFX_databus.h │ │ │ │ ├── Arduino_GFX_dev_device.h │ │ │ │ ├── Arduino_GFX_display.h │ │ │ │ ├── Arduino_GFX_pins.h │ │ │ │ └── PDQgraphicstest.ino │ │ │ ├── SetTextBound │ │ │ │ └── SetTextBound.ino │ │ │ ├── Sprite │ │ │ │ └── SpriteGif │ │ │ │ │ ├── GifClass.h │ │ │ │ │ ├── IndexedSprite.h │ │ │ │ │ ├── SpriteGif.ino │ │ │ │ │ └── data │ │ │ │ │ └── city17_240.gif │ │ │ ├── TouchCalibration │ │ │ │ ├── TouchCalibration.ino │ │ │ │ └── touch.h │ │ │ ├── U8g2Font │ │ │ │ ├── U8g2FontHelloWorld │ │ │ │ │ └── U8g2FontHelloWorld.ino │ │ │ │ ├── U8g2FontPrintUTF8 │ │ │ │ │ └── U8g2FontPrintUTF8.ino │ │ │ │ ├── U8g2FontUTF8Chinese │ │ │ │ │ └── U8g2FontUTF8Chinese.ino │ │ │ │ ├── U8g2FontUTF8FullCJK │ │ │ │ │ └── U8g2FontUTF8FullCJK.ino │ │ │ │ ├── U8g2FontUTF8FullUnifont │ │ │ │ │ └── U8g2FontUTF8FullUnifont.ino │ │ │ │ └── U8g2RssReader │ │ │ │ │ └── U8g2RssReader.ino │ │ │ ├── WiFiAnalyzer │ │ │ │ ├── ESPWiFiAnalyzer │ │ │ │ │ └── ESPWiFiAnalyzer.ino │ │ │ │ ├── ESPWiFiAnalyzerUTF8 │ │ │ │ │ └── ESPWiFiAnalyzerUTF8.ino │ │ │ │ ├── PicoWiFiAnalyzer │ │ │ │ │ └── PicoWiFiAnalyzer.ino │ │ │ │ ├── PicoWiFiAnalyzerUTF8 │ │ │ │ │ └── PicoWiFiAnalyzerUTF8.ino │ │ │ │ ├── RTLWiFiAnalyzer │ │ │ │ │ └── RTLWiFiAnalyzer.ino │ │ │ │ ├── RTLWiFiAnalyzerUTF8 │ │ │ │ │ └── RTLWiFiAnalyzerUTF8.ino │ │ │ │ └── WioWiFiAnalyzer │ │ │ │ │ └── WioWiFiAnalyzer.ino │ │ │ └── WiFiPhotoFrame │ │ │ │ ├── JpegFunc.h │ │ │ │ └── WiFiPhotoFrame.ino │ │ ├── library.properties │ │ └── src │ │ │ ├── Arduino_DataBus.cpp │ │ │ ├── Arduino_DataBus.h │ │ │ ├── Arduino_G.cpp │ │ │ ├── Arduino_G.h │ │ │ ├── Arduino_GFX.cpp │ │ │ ├── Arduino_GFX.h │ │ │ ├── Arduino_GFX_Library.cpp │ │ │ ├── Arduino_GFX_Library.h │ │ │ ├── Arduino_TFT.cpp │ │ │ ├── Arduino_TFT.h │ │ │ ├── Arduino_TFT_18bit.cpp │ │ │ ├── Arduino_TFT_18bit.h │ │ │ ├── YCbCr2RGB.h │ │ │ ├── canvas │ │ │ ├── Arduino_Canvas.cpp │ │ │ ├── Arduino_Canvas.h │ │ │ ├── Arduino_Canvas_3bit.cpp │ │ │ ├── Arduino_Canvas_3bit.h │ │ │ ├── Arduino_Canvas_Indexed.cpp │ │ │ ├── Arduino_Canvas_Indexed.h │ │ │ ├── Arduino_Canvas_Mono.cpp │ │ │ ├── Arduino_Canvas_Mono.h │ │ │ └── readme.md │ │ │ ├── databus │ │ │ ├── Arduino_AVRPAR16.cpp │ │ │ ├── Arduino_AVRPAR16.h │ │ │ ├── Arduino_AVRPAR8.cpp │ │ │ ├── Arduino_AVRPAR8.h │ │ │ ├── Arduino_DUEPAR16.cpp │ │ │ ├── Arduino_DUEPAR16.h │ │ │ ├── Arduino_ESP32LCD16.cpp │ │ │ ├── Arduino_ESP32LCD16.h │ │ │ ├── Arduino_ESP32LCD8.cpp │ │ │ ├── Arduino_ESP32LCD8.h │ │ │ ├── Arduino_ESP32PAR16.cpp │ │ │ ├── Arduino_ESP32PAR16.h │ │ │ ├── Arduino_ESP32PAR16Q.cpp │ │ │ ├── Arduino_ESP32PAR16Q.h │ │ │ ├── Arduino_ESP32PAR16QQ.cpp │ │ │ ├── Arduino_ESP32PAR16QQ.h │ │ │ ├── Arduino_ESP32PAR8.cpp │ │ │ ├── Arduino_ESP32PAR8.h │ │ │ ├── Arduino_ESP32PAR8Q.cpp │ │ │ ├── Arduino_ESP32PAR8Q.h │ │ │ ├── Arduino_ESP32PAR8QQ.cpp │ │ │ ├── Arduino_ESP32PAR8QQ.h │ │ │ ├── Arduino_ESP32PAR8QQQ.cpp │ │ │ ├── Arduino_ESP32PAR8QQQ.h │ │ │ ├── Arduino_ESP32QSPI.cpp │ │ │ ├── Arduino_ESP32QSPI.h │ │ │ ├── Arduino_ESP32RGBPanel.cpp │ │ │ ├── Arduino_ESP32RGBPanel.h │ │ │ ├── Arduino_ESP32S2PAR16.cpp │ │ │ ├── Arduino_ESP32S2PAR16.h │ │ │ ├── Arduino_ESP32S2PAR16Q.cpp │ │ │ ├── Arduino_ESP32S2PAR16Q.h │ │ │ ├── Arduino_ESP32S2PAR8.cpp │ │ │ ├── Arduino_ESP32S2PAR8.h │ │ │ ├── Arduino_ESP32S2PAR8Q.cpp │ │ │ ├── Arduino_ESP32S2PAR8Q.h │ │ │ ├── Arduino_ESP32SPI.cpp │ │ │ ├── Arduino_ESP32SPI.h │ │ │ ├── Arduino_ESP32SPIDMA.cpp │ │ │ ├── Arduino_ESP32SPIDMA.h │ │ │ ├── Arduino_ESP8266SPI.cpp │ │ │ ├── Arduino_ESP8266SPI.h │ │ │ ├── Arduino_HWSPI.cpp │ │ │ ├── Arduino_HWSPI.h │ │ │ ├── Arduino_NRFXSPI.cpp │ │ │ ├── Arduino_NRFXSPI.h │ │ │ ├── Arduino_RPiPicoPAR16.cpp │ │ │ ├── Arduino_RPiPicoPAR16.h │ │ │ ├── Arduino_RPiPicoPAR8.cpp │ │ │ ├── Arduino_RPiPicoPAR8.h │ │ │ ├── Arduino_RPiPicoSPI.cpp │ │ │ ├── Arduino_RPiPicoSPI.h │ │ │ ├── Arduino_RTLPAR8.cpp │ │ │ ├── Arduino_RTLPAR8.h │ │ │ ├── Arduino_STM32PAR8.cpp │ │ │ ├── Arduino_STM32PAR8.h │ │ │ ├── Arduino_SWPAR16.cpp │ │ │ ├── Arduino_SWPAR16.h │ │ │ ├── Arduino_SWPAR8.cpp │ │ │ ├── Arduino_SWPAR8.h │ │ │ ├── Arduino_SWSPI.cpp │ │ │ ├── Arduino_SWSPI.h │ │ │ ├── Arduino_UNOPAR8.cpp │ │ │ ├── Arduino_UNOPAR8.h │ │ │ ├── Arduino_Wire.cpp │ │ │ ├── Arduino_Wire.h │ │ │ ├── Arduino_XCA9554SWSPI.cpp │ │ │ ├── Arduino_XCA9554SWSPI.h │ │ │ ├── Arduino_XL9535SWSPI.cpp │ │ │ ├── Arduino_XL9535SWSPI.h │ │ │ ├── Arduino_mbedSPI.cpp │ │ │ └── Arduino_mbedSPI.h │ │ │ ├── display │ │ │ ├── Arduino_AXS15231B.cpp │ │ │ ├── Arduino_AXS15231B.h │ │ │ ├── Arduino_GC9106.cpp │ │ │ ├── Arduino_GC9106.h │ │ │ ├── Arduino_GC9107.cpp │ │ │ ├── Arduino_GC9107.h │ │ │ ├── Arduino_GC9A01.cpp │ │ │ ├── Arduino_GC9A01.h │ │ │ ├── Arduino_HX8347C.cpp │ │ │ ├── Arduino_HX8347C.h │ │ │ ├── Arduino_HX8347D.cpp │ │ │ ├── Arduino_HX8347D.h │ │ │ ├── Arduino_HX8352C.cpp │ │ │ ├── Arduino_HX8352C.h │ │ │ ├── Arduino_HX8357A.cpp │ │ │ ├── Arduino_HX8357A.h │ │ │ ├── Arduino_HX8357B.cpp │ │ │ ├── Arduino_HX8357B.h │ │ │ ├── Arduino_HX8369A.cpp │ │ │ ├── Arduino_HX8369A.h │ │ │ ├── Arduino_ILI9225.cpp │ │ │ ├── Arduino_ILI9225.h │ │ │ ├── Arduino_ILI9331.cpp │ │ │ ├── Arduino_ILI9331.h │ │ │ ├── Arduino_ILI9341.cpp │ │ │ ├── Arduino_ILI9341.h │ │ │ ├── Arduino_ILI9342.cpp │ │ │ ├── Arduino_ILI9342.h │ │ │ ├── Arduino_ILI9481_18bit.cpp │ │ │ ├── Arduino_ILI9481_18bit.h │ │ │ ├── Arduino_ILI9486.cpp │ │ │ ├── Arduino_ILI9486.h │ │ │ ├── Arduino_ILI9486_18bit.cpp │ │ │ ├── Arduino_ILI9486_18bit.h │ │ │ ├── Arduino_ILI9488.cpp │ │ │ ├── Arduino_ILI9488.h │ │ │ ├── Arduino_ILI9488_18bit.cpp │ │ │ ├── Arduino_ILI9488_18bit.h │ │ │ ├── Arduino_ILI9488_3bit.cpp │ │ │ ├── Arduino_ILI9488_3bit.h │ │ │ ├── Arduino_ILI9806.cpp │ │ │ ├── Arduino_ILI9806.h │ │ │ ├── Arduino_JBT6K71.cpp │ │ │ ├── Arduino_JBT6K71.h │ │ │ ├── Arduino_JD9613.cpp │ │ │ ├── Arduino_JD9613.h │ │ │ ├── Arduino_NT35310.cpp │ │ │ ├── Arduino_NT35310.h │ │ │ ├── Arduino_NT35510.cpp │ │ │ ├── Arduino_NT35510.h │ │ │ ├── Arduino_NT39125.cpp │ │ │ ├── Arduino_NT39125.h │ │ │ ├── Arduino_NV3023.cpp │ │ │ ├── Arduino_NV3023.h │ │ │ ├── Arduino_NV3041A.cpp │ │ │ ├── Arduino_NV3041A.h │ │ │ ├── Arduino_OTM8009A.cpp │ │ │ ├── Arduino_OTM8009A.h │ │ │ ├── Arduino_R61529.cpp │ │ │ ├── Arduino_R61529.h │ │ │ ├── Arduino_RGB_Display.cpp │ │ │ ├── Arduino_RGB_Display.h │ │ │ ├── Arduino_RM67162.cpp │ │ │ ├── Arduino_RM67162.h │ │ │ ├── Arduino_SEPS525.cpp │ │ │ ├── Arduino_SEPS525.h │ │ │ ├── Arduino_SH1106.cpp │ │ │ ├── Arduino_SH1106.h │ │ │ ├── Arduino_SSD1283A.cpp │ │ │ ├── Arduino_SSD1283A.h │ │ │ ├── Arduino_SSD1306.cpp │ │ │ ├── Arduino_SSD1306.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_WEA2012.cpp │ │ │ └── Arduino_WEA2012.h │ │ │ ├── font │ │ │ ├── chinese4.list │ │ │ ├── glcdfont.h │ │ │ ├── u8g2_font_chill7_h_cjk.h │ │ │ ├── u8g2_font_cubic11_h_cjk.h │ │ │ ├── u8g2_font_quan7_h_cjk.h │ │ │ ├── u8g2_font_unifont_h_utf8.h │ │ │ ├── u8g2_font_unifont_t_chinese.h │ │ │ ├── u8g2_font_unifont_t_chinese4.h │ │ │ └── u8g2_font_unifont_t_cjk.h │ │ │ └── gfxfont.h │ ├── AsyncTCP │ │ ├── .github │ │ │ ├── scripts │ │ │ │ ├── install-arduino-core-esp32.sh │ │ │ │ ├── install-arduino-ide.sh │ │ │ │ ├── install-platformio.sh │ │ │ │ └── on-push.sh │ │ │ ├── stale.yml │ │ │ └── workflows │ │ │ │ └── push.yml │ │ ├── .gitignore │ │ ├── .piopm │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.mk │ │ ├── library.json │ │ ├── library.properties │ │ └── src │ │ │ ├── AsyncTCP.cpp │ │ │ └── AsyncTCP.h │ ├── Button2-2.2.4 │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ │ ├── ButtonLoop │ │ │ │ └── ButtonLoop.ino │ │ │ ├── CustomButtonStateHandler │ │ │ │ └── CustomButtonStateHandler.ino │ │ │ ├── ESP32CapacitiveTouch │ │ │ │ └── ESP32CapacitiveTouch.ino │ │ │ ├── ESP32TimerInterrupt │ │ │ │ └── ESP32TimerInterrupt.ino │ │ │ ├── LongpressHandler │ │ │ │ └── LongpressHandler.ino │ │ │ ├── M5StackCore2CustomHandler │ │ │ │ └── M5StackCore2CustomHandler.ino │ │ │ ├── MultiHandler │ │ │ │ └── MultiHandler.ino │ │ │ ├── MultiHandlerTwoButtons │ │ │ │ └── MultiHandlerTwoButtons.ino │ │ │ ├── MultipleButtons │ │ │ │ └── MultipleButtons.ino │ │ │ ├── SingleButton │ │ │ │ └── SingleButton.ino │ │ │ ├── SingleButtonSimple │ │ │ │ └── SingleButtonSimple.ino │ │ │ └── TrackDualButtonClick │ │ │ │ └── TrackDualButtonClick.ino │ │ ├── keywords.txt │ │ ├── library.json │ │ ├── library.properties │ │ └── src │ │ │ ├── Button2.cpp │ │ │ └── Button2.h │ ├── DFRobot_CH423 │ │ ├── DFRobot_CH423.cpp │ │ ├── DFRobot_CH423.h │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README_CN.md │ │ ├── examples │ │ │ ├── blink │ │ │ │ └── blink.ino │ │ │ ├── group │ │ │ │ └── group.ino │ │ │ ├── input │ │ │ │ └── input.ino │ │ │ ├── ioInterrupt │ │ │ │ └── ioInterrupt.ino │ │ │ ├── pollInterrupt │ │ │ │ └── pollInterrupt.ino │ │ │ ├── sleep │ │ │ │ └── sleep.ino │ │ │ └── waterLamp │ │ │ │ └── waterLamp.ino │ │ ├── keywords.txt │ │ └── library.properties │ ├── ElegantOTA-3.1.0 │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ │ ├── demo.gif │ │ │ ├── feature.png │ │ │ ├── logo.svg │ │ │ └── pro-preview.jpg │ │ ├── examples │ │ │ ├── AsyncDemo │ │ │ │ ├── .picow_rp2040.test.skip │ │ │ │ └── AsyncDemo.ino │ │ │ └── Demo │ │ │ │ └── Demo.ino │ │ ├── keywords.txt │ │ ├── library.json │ │ ├── library.properties │ │ ├── platformio_upload.py │ │ └── src │ │ │ ├── ElegantOTA.cpp │ │ │ ├── ElegantOTA.h │ │ │ ├── elop.cpp │ │ │ └── elop.h │ ├── QRCode │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── examples │ │ │ └── QRCode │ │ │ │ └── QRCode.ino │ │ ├── generate_table.py │ │ ├── keywords.txt │ │ ├── library.properties │ │ ├── src │ │ │ ├── QRCode_Library.c │ │ │ └── QRCode_Library.h │ │ └── tests │ │ │ ├── BitBuffer.cpp │ │ │ ├── BitBuffer.hpp │ │ │ ├── QrCode.cpp │ │ │ ├── QrCode.hpp │ │ │ ├── QrSegment.cpp │ │ │ ├── QrSegment.hpp │ │ │ ├── README.md │ │ │ ├── run-tests.cpp │ │ │ └── run.sh │ ├── README │ └── WiFiManager-2.0.16-rc.2 │ │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ └── workflows │ │ │ ├── compile_examples.yaml │ │ │ ├── compile_library.yml │ │ │ └── cpp_lint.yml │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WiFiManager.cpp │ │ ├── WiFiManager.h │ │ ├── examples │ │ ├── Advanced │ │ │ └── Advanced.ino │ │ ├── Basic │ │ │ └── Basic.ino │ │ ├── NonBlocking │ │ │ ├── AutoConnectNonBlocking │ │ │ │ └── AutoConnectNonBlocking.ino │ │ │ ├── AutoConnectNonBlockingwParams │ │ │ │ └── AutoConnectNonBlockingwParams.ino │ │ │ └── OnDemandNonBlocking │ │ │ │ └── onDemandNonBlocking.ino │ │ ├── Old_examples │ │ │ ├── AutoConnectWithFeedback │ │ │ │ └── AutoConnectWithFeedback.ino │ │ │ ├── AutoConnectWithReset │ │ │ │ └── AutoConnectWithReset.ino │ │ │ ├── AutoConnectWithStaticIP │ │ │ │ └── AutoConnectWithStaticIP.ino │ │ │ └── AutoConnectWithTimeout │ │ │ │ └── AutoConnectWithTimeout.ino │ │ ├── OnDemand │ │ │ ├── OnDemandConfigPortal │ │ │ │ └── OnDemandConfigPortal.ino │ │ │ └── OnDemandWebPortal │ │ │ │ └── onDemandWebPortal.ino │ │ ├── Parameters │ │ │ ├── LittleFS │ │ │ │ └── LittleFSParameters.ino │ │ │ └── SPIFFS │ │ │ │ ├── AutoConnectWithFSParameters │ │ │ │ └── AutoConnectWithFSParameters.ino │ │ │ │ └── AutoConnectWithFSParametersAndCustomIP │ │ │ │ └── AutoConnectWithFSParametersAndCustomIP.ino │ │ ├── ParamsChildClass │ │ │ └── ParamsChildClass.ino │ │ ├── Super │ │ │ └── OnDemandConfigPortal │ │ │ │ └── OnDemandConfigPortal.ino │ │ ├── Tests │ │ │ └── wifi_softap │ │ │ │ └── wifi_softap.ino │ │ └── Unique │ │ │ └── cb │ │ │ └── AnonymousCB.ino │ │ ├── extras │ │ ├── WiFiManager.template.html │ │ ├── parse.js │ │ ├── png_signal_strength_master.png │ │ ├── template.h │ │ └── test.html │ │ ├── keywords.txt │ │ ├── library.json │ │ ├── library.properties │ │ ├── strings_en.h │ │ ├── travis │ │ └── common.sh │ │ ├── wm_consts_en.h │ │ ├── wm_strings_en.h │ │ └── wm_strings_es.h ├── partition_custom.csv ├── platformio.ini ├── src │ ├── app │ │ ├── SoftwareTimer.cpp │ │ ├── SoftwareTimer.h │ │ ├── app_audio.cpp │ │ ├── app_audio.h │ │ ├── app_drawpicture.cpp │ │ ├── app_drawpicture.h │ │ ├── app_humansensor.cpp │ │ ├── app_humansensor.h │ │ ├── app_key.cpp │ │ ├── app_key.h │ │ ├── app_led.cpp │ │ ├── app_led.h │ │ ├── app_mijia.cpp │ │ ├── app_mijia.h │ │ ├── app_pc.cpp │ │ ├── app_pc.h │ │ ├── app_settings.cpp │ │ ├── app_settings.h │ │ ├── app_stocks.cpp │ │ ├── app_stocks.h │ │ ├── app_timeout.cpp │ │ ├── app_timeout.h │ │ ├── app_weather.cpp │ │ ├── app_weather.h │ │ └── pc.rslcd │ ├── board_def.cpp │ ├── board_def.h │ ├── fonts │ │ ├── Calligraffitti_Regular_12.h │ │ ├── Chillax_MediumEN_50.h │ │ ├── Coming_Soon_Regular_12.h │ │ ├── DSEG14_Classic_Regular_40.h │ │ ├── DouyinSansBoldCN_Weather_38.h │ │ ├── DreamHanSerifCN_W15_Stocks_21.h │ │ ├── DreamHanSerifCN_W17_Mijia_25.h │ │ ├── DreamHanSerifCN_W17_NoWarning_24.h │ │ ├── DreamHanSerifCN_W17_Processing_24.h │ │ ├── DreamHanSerifCN_W17_Weekday_21.h │ │ ├── GillSansEN_Bold_12.h │ │ ├── Guangliang_Title_26.h │ │ ├── MiSans_DemiboldCN_18.h │ │ ├── MiSans_Demibold_12.h │ │ ├── MiSans_LightCN_Weather_20.h │ │ ├── MiSans_MediumEN_12.h │ │ ├── MiSans_Regular45pt_num.h │ │ ├── Roboto_Thin_24.h │ │ ├── Satisfy_24.h │ │ └── Yellowtail_32.h │ ├── main.cpp │ ├── manager │ │ ├── manager.cpp │ │ └── manager.h │ └── pages │ │ ├── bilibili │ │ ├── bilibili.cpp │ │ ├── bilibili.h │ │ ├── danmu.h │ │ ├── img.h │ │ ├── quanping.h │ │ └── yijiansanlian.h │ │ ├── clock │ │ ├── clock.cpp │ │ ├── clock.h │ │ └── img.h │ │ ├── countdown │ │ ├── countdown.cpp │ │ ├── countdown.h │ │ └── img.h │ │ ├── keyboard │ │ ├── img.h │ │ ├── keyboard.cpp │ │ └── keyboard.h │ │ ├── media │ │ ├── img.h │ │ ├── media.cpp │ │ └── media.h │ │ ├── mijia │ │ ├── img.h │ │ ├── mijia.cpp │ │ └── mijia.h │ │ ├── pages.cpp │ │ ├── pages.h │ │ ├── pcstate │ │ ├── img.h │ │ ├── pcstate.cpp │ │ └── pcstate.h │ │ ├── photo │ │ ├── img.h │ │ ├── photo.cpp │ │ └── photo.h │ │ ├── pomodoro │ │ ├── img.h │ │ ├── pomodoro.cpp │ │ └── pomodoro.h │ │ ├── settings │ │ ├── img.h │ │ ├── settings.cpp │ │ └── settings.h │ │ ├── shortcut │ │ ├── img.h │ │ ├── shortcut.cpp │ │ └── shortcut.h │ │ ├── stocks │ │ ├── img.h │ │ ├── stocks.cpp │ │ └── stocks.h │ │ ├── template │ │ ├── img.h │ │ ├── template.cpp │ │ └── template.h │ │ ├── weather │ │ ├── img.h │ │ ├── weather.cpp │ │ └── weather.h │ │ └── web │ │ ├── img.h │ │ ├── web.cpp │ │ └── web.h └── test │ └── README └── docs ├── BOM_【主板】TripleKey主板_2024-05-09.xlsx ├── BOM_【拓展方案1】米家及人在传感器拓展_2024-05-09.xlsx ├── BOM_【拓展方案2】右侧拓展板_2024-05-09.xlsx ├── BOM_【拓展方案2】米家及人在传感器拓展_2024-05-09.xlsx ├── BOM_【拓展方案3】米家及人在传感器拓展_贴_2024-06-05.xlsx └── 额外BOM.xlsx /3DPrinting/基础版本(无拓展)/外壳主体.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/基础版本(无拓展)/外壳主体.STL -------------------------------------------------------------------------------- /3DPrinting/基础版本(无拓展)/外壳盖板.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/基础版本(无拓展)/外壳盖板.STL -------------------------------------------------------------------------------- /3DPrinting/基础版本(无拓展)/屏幕按键外壳x3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/基础版本(无拓展)/屏幕按键外壳x3.STL -------------------------------------------------------------------------------- /3DPrinting/基础版本(无拓展)/旋钮.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/基础版本(无拓展)/旋钮.STL -------------------------------------------------------------------------------- /3DPrinting/新方案三(★★★推荐★★★)/改进版新方案FDM(适用拓竹等常见打印机)/主体外壳FDM.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/新方案三(★★★推荐★★★)/改进版新方案FDM(适用拓竹等常见打印机)/主体外壳FDM.STEP -------------------------------------------------------------------------------- /3DPrinting/新方案三(★★★推荐★★★)/改进版新方案FDM(适用拓竹等常见打印机)/主体盖板FDM.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/新方案三(★★★推荐★★★)/改进版新方案FDM(适用拓竹等常见打印机)/主体盖板FDM.STEP -------------------------------------------------------------------------------- /3DPrinting/新方案三(★★★推荐★★★)/改进版新方案FDM(适用拓竹等常见打印机)/按键屏幕FDM.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/新方案三(★★★推荐★★★)/改进版新方案FDM(适用拓竹等常见打印机)/按键屏幕FDM.STEP -------------------------------------------------------------------------------- /3DPrinting/新方案三(★★★推荐★★★)/改进版新方案FDM(适用拓竹等常见打印机)/旋钮FDM.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/新方案三(★★★推荐★★★)/改进版新方案FDM(适用拓竹等常见打印机)/旋钮FDM.STEP -------------------------------------------------------------------------------- /3DPrinting/新方案三(★★★推荐★★★)/改进版新方案SLA光固化(适用嘉立创3D打印)/主体盖板.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/新方案三(★★★推荐★★★)/改进版新方案SLA光固化(适用嘉立创3D打印)/主体盖板.STL -------------------------------------------------------------------------------- /3DPrinting/新方案三(★★★推荐★★★)/改进版新方案SLA光固化(适用嘉立创3D打印)/屏幕按键外壳x3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/新方案三(★★★推荐★★★)/改进版新方案SLA光固化(适用嘉立创3D打印)/屏幕按键外壳x3.STL -------------------------------------------------------------------------------- /3DPrinting/新方案三(★★★推荐★★★)/改进版新方案SLA光固化(适用嘉立创3D打印)/新版主体外壳.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/新方案三(★★★推荐★★★)/改进版新方案SLA光固化(适用嘉立创3D打印)/新版主体外壳.STL -------------------------------------------------------------------------------- /3DPrinting/新方案三(★★★推荐★★★)/改进版新方案SLA光固化(适用嘉立创3D打印)/旋钮.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/新方案三(★★★推荐★★★)/改进版新方案SLA光固化(适用嘉立创3D打印)/旋钮.STL -------------------------------------------------------------------------------- /3DPrinting/方案一(含米家拓展)/外壳主体.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案一(含米家拓展)/外壳主体.STL -------------------------------------------------------------------------------- /3DPrinting/方案一(含米家拓展)/外壳盖板.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案一(含米家拓展)/外壳盖板.STL -------------------------------------------------------------------------------- /3DPrinting/方案一(含米家拓展)/屏幕按键外壳x3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案一(含米家拓展)/屏幕按键外壳x3.STL -------------------------------------------------------------------------------- /3DPrinting/方案一(含米家拓展)/旋钮.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案一(含米家拓展)/旋钮.STL -------------------------------------------------------------------------------- /3DPrinting/方案一(含米家拓展)/米家拓展外壳.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案一(含米家拓展)/米家拓展外壳.STL -------------------------------------------------------------------------------- /3DPrinting/方案一(含米家拓展)/米家拓展盖板.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案一(含米家拓展)/米家拓展盖板.STL -------------------------------------------------------------------------------- /3DPrinting/方案二(含米家拓展)/主体外壳.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案二(含米家拓展)/主体外壳.STL -------------------------------------------------------------------------------- /3DPrinting/方案二(含米家拓展)/主体盖板.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案二(含米家拓展)/主体盖板.STL -------------------------------------------------------------------------------- /3DPrinting/方案二(含米家拓展)/屏幕按键外壳x3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案二(含米家拓展)/屏幕按键外壳x3.STL -------------------------------------------------------------------------------- /3DPrinting/方案二(含米家拓展)/旋钮.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案二(含米家拓展)/旋钮.STL -------------------------------------------------------------------------------- /3DPrinting/方案二(含米家拓展)/米家拓展外壳.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案二(含米家拓展)/米家拓展外壳.STL -------------------------------------------------------------------------------- /3DPrinting/方案二(含米家拓展)/米家拓展盖板.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/3DPrinting/方案二(含米家拓展)/米家拓展盖板.STL -------------------------------------------------------------------------------- /Firmware/firmware_GC9107_16MB.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Firmware/firmware_GC9107_16MB.bin -------------------------------------------------------------------------------- /Firmware/firmware_GC9107_8MB.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Firmware/firmware_GC9107_8MB.bin -------------------------------------------------------------------------------- /Firmware/firmware_NV3023_16MB.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Firmware/firmware_NV3023_16MB.bin -------------------------------------------------------------------------------- /Firmware/firmware_NV3023_8MB.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Firmware/firmware_NV3023_8MB.bin -------------------------------------------------------------------------------- /Hardware/Gerber_【主板】TripleKey主板_2024-05-09.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Hardware/Gerber_【主板】TripleKey主板_2024-05-09.zip -------------------------------------------------------------------------------- /Hardware/Gerber_【定位板】按键定位板-屏幕排线板-拓展IO板_2024-05-09.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Hardware/Gerber_【定位板】按键定位板-屏幕排线板-拓展IO板_2024-05-09.zip -------------------------------------------------------------------------------- /Hardware/Gerber_【拓展方案2】右侧拓展板_2024-05-09.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Hardware/Gerber_【拓展方案2】右侧拓展板_2024-05-09.zip -------------------------------------------------------------------------------- /Hardware/Gerber_【拓展方案2】米家及人在传感器拓展_2024-05-09.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Hardware/Gerber_【拓展方案2】米家及人在传感器拓展_2024-05-09.zip -------------------------------------------------------------------------------- /Hardware/Gerber_【拓展方案3】米家及人在传感器拓展_贴_2024-06-05.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Hardware/Gerber_【拓展方案3】米家及人在传感器拓展_贴_2024-06-05.zip -------------------------------------------------------------------------------- /Hardware/Panel_透明亚克力_1mm_底面打印_带胶_2024-05-09.epanm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Hardware/Panel_透明亚克力_1mm_底面打印_带胶_2024-05-09.epanm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.assets/IMG_20240514_224806.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/IMG_20240514_224806.jpg -------------------------------------------------------------------------------- /README.assets/IMG_20240514_224814-17163724153263.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/IMG_20240514_224814-17163724153263.jpg -------------------------------------------------------------------------------- /README.assets/IMG_20240514_224814.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/IMG_20240514_224814.jpg -------------------------------------------------------------------------------- /README.assets/IMG_20240514_225016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/IMG_20240514_225016.jpg -------------------------------------------------------------------------------- /README.assets/IMG_20240515_004026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/IMG_20240515_004026.jpg -------------------------------------------------------------------------------- /README.assets/IMG_20240522_190503.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/IMG_20240522_190503.jpg -------------------------------------------------------------------------------- /README.assets/IMG_20240522_190955.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/IMG_20240522_190955.jpg -------------------------------------------------------------------------------- /README.assets/IMG_20240605_011150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/IMG_20240605_011150.jpg -------------------------------------------------------------------------------- /README.assets/IMG_20240605_024737.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/IMG_20240605_024737.jpg -------------------------------------------------------------------------------- /README.assets/QQ截图20240705213352.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/QQ截图20240705213352.jpg -------------------------------------------------------------------------------- /README.assets/QQ截图20240705220017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/QQ截图20240705220017.jpg -------------------------------------------------------------------------------- /README.assets/QQ截图20240705220030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/QQ截图20240705220030.jpg -------------------------------------------------------------------------------- /README.assets/QQ截图20240705220120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/QQ截图20240705220120.jpg -------------------------------------------------------------------------------- /README.assets/image-20240508171413572.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240508171413572.png -------------------------------------------------------------------------------- /README.assets/image-20240508174730741.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240508174730741.png -------------------------------------------------------------------------------- /README.assets/image-20240508221109063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240508221109063.png -------------------------------------------------------------------------------- /README.assets/image-20240508223518974.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240508223518974.png -------------------------------------------------------------------------------- /README.assets/image-20240508223740065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240508223740065.png -------------------------------------------------------------------------------- /README.assets/image-20240522181441683.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240522181441683.png -------------------------------------------------------------------------------- /README.assets/image-20240522181445707.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240522181445707.png -------------------------------------------------------------------------------- /README.assets/image-20240522181726047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240522181726047.png -------------------------------------------------------------------------------- /README.assets/image-20240605121523363.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240605121523363.png -------------------------------------------------------------------------------- /README.assets/image-20240605121546520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240605121546520.png -------------------------------------------------------------------------------- /README.assets/image-20240628224732417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240628224732417.png -------------------------------------------------------------------------------- /README.assets/image-20240703172011564.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240703172011564.png -------------------------------------------------------------------------------- /README.assets/image-20240703203007263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240703203007263.png -------------------------------------------------------------------------------- /README.assets/image-20240703203100893.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240703203100893.png -------------------------------------------------------------------------------- /README.assets/image-20240705220411624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/image-20240705220411624.png -------------------------------------------------------------------------------- /README.assets/主板.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/主板.jpg -------------------------------------------------------------------------------- /README.assets/屏幕定位板1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/屏幕定位板1.jpg -------------------------------------------------------------------------------- /README.assets/屏幕定位板2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/屏幕定位板2.jpg -------------------------------------------------------------------------------- /README.assets/拓展方案1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/拓展方案1.jpg -------------------------------------------------------------------------------- /README.assets/拓展方案二.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/拓展方案二.jpg -------------------------------------------------------------------------------- /README.assets/插接长排12PIN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/插接长排12PIN.jpg -------------------------------------------------------------------------------- /README.assets/插接长排12PIN实物.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/插接长排12PIN实物.jpg -------------------------------------------------------------------------------- /README.assets/焊接长排12PIN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/焊接长排12PIN.jpg -------------------------------------------------------------------------------- /README.assets/焊接长排12PIN实物.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/焊接长排12PIN实物.jpg -------------------------------------------------------------------------------- /README.assets/编码器.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.assets/编码器.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/README.md -------------------------------------------------------------------------------- /Software/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/.gitignore -------------------------------------------------------------------------------- /Software/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/.vscode/extensions.json -------------------------------------------------------------------------------- /Software/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/.vscode/settings.json -------------------------------------------------------------------------------- /Software/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/LICENSE -------------------------------------------------------------------------------- /Software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/README.md -------------------------------------------------------------------------------- /Software/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.0 -------------------------------------------------------------------------------- /Software/custom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/custom.csv -------------------------------------------------------------------------------- /Software/custom_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/custom_16MB.csv -------------------------------------------------------------------------------- /Software/custom_8MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/custom_8MB.csv -------------------------------------------------------------------------------- /Software/data/Copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/Copyright.png -------------------------------------------------------------------------------- /Software/data/KEY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/KEY.png -------------------------------------------------------------------------------- /Software/data/PLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/PLE.png -------------------------------------------------------------------------------- /Software/data/TRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/TRI.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/14Segment/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/14Segment/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/7Segment/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/7Segment/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/BINAView/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/BINAView/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Butterfly/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Butterfly/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/FlipFlap/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/FlipFlap/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Flowers/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Flowers/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Gradient/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Gradient/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixieCyan/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixieCyan/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/LixiePurple/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/LixiePurple/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Matrix/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Matrix/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NIMO/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NIMO/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonBlue/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonBlue/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonGreen/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonGreen/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonPurple/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonPurple/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonWhite/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonWhite/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NeonYellow/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NeonYellow/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/NixieTube/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/NixieTube/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Notebook/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Notebook/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/PixiePro/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/PixiePro/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/RGB/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/RGB/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidBlue/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidBlue/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidGreen/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidGreen/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidPurple/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidPurple/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidWhite/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidWhite/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/SolidYellow/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/SolidYellow/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/VFD/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/VFD/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/eight.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/five.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/four.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/nine.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/one.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/seven.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/six.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/three.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/two.png -------------------------------------------------------------------------------- /Software/data/clock_theme/Wood/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/clock_theme/Wood/zero.png -------------------------------------------------------------------------------- /Software/data/clock_theme/readme.md: -------------------------------------------------------------------------------- 1 | images from https://github.com/JosueAGtz/displayArray/ -------------------------------------------------------------------------------- /Software/data/cn_girl/0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/0.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/1.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/10.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/11.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/12.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/13.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/14.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/15.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/15.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/16.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/17.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/17.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/18.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/18.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/19.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/19.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/2.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/20.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/20.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/3.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/30.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/30.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/4.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/40.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/40.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/5.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/50.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/50.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/6.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/7.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/8.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/9.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/afternoon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/afternoon.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/dian.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/dian.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/fen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/fen.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/morning.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/morning.wav -------------------------------------------------------------------------------- /Software/data/cn_girl/the time is.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/cn_girl/the time is.wav -------------------------------------------------------------------------------- /Software/data/config_clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/config_clock.json -------------------------------------------------------------------------------- /Software/data/config_encoder.json: -------------------------------------------------------------------------------- 1 | {"rotary":2,"encreverse":false} -------------------------------------------------------------------------------- /Software/data/config_mijia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/config_mijia.txt -------------------------------------------------------------------------------- /Software/data/config_photo.json: -------------------------------------------------------------------------------- 1 | {"photoscroll":true} -------------------------------------------------------------------------------- /Software/data/config_stocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/config_stocks.txt -------------------------------------------------------------------------------- /Software/data/config_weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/config_weather.json -------------------------------------------------------------------------------- /Software/data/config_web.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/config_web.txt -------------------------------------------------------------------------------- /Software/data/end.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/end.wav -------------------------------------------------------------------------------- /Software/data/media/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/media/next.png -------------------------------------------------------------------------------- /Software/data/media/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/media/pause.png -------------------------------------------------------------------------------- /Software/data/media/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/media/play.png -------------------------------------------------------------------------------- /Software/data/media/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/media/prev.png -------------------------------------------------------------------------------- /Software/data/mijia/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/mijia/off.png -------------------------------------------------------------------------------- /Software/data/mijia/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/mijia/on.png -------------------------------------------------------------------------------- /Software/data/photo/Example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/photo/Example1.png -------------------------------------------------------------------------------- /Software/data/photo/Example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/photo/Example2.png -------------------------------------------------------------------------------- /Software/data/photo/Example3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/photo/Example3.jpg -------------------------------------------------------------------------------- /Software/data/shortcut/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/shortcut/copy.png -------------------------------------------------------------------------------- /Software/data/shortcut/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/shortcut/cut.png -------------------------------------------------------------------------------- /Software/data/shortcut/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/shortcut/desktop.png -------------------------------------------------------------------------------- /Software/data/shortcut/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/shortcut/paste.png -------------------------------------------------------------------------------- /Software/data/shortcut/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/shortcut/refresh.png -------------------------------------------------------------------------------- /Software/data/shortcut/select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/shortcut/select_all.png -------------------------------------------------------------------------------- /Software/data/shortcut/switch_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/shortcut/switch_windows.png -------------------------------------------------------------------------------- /Software/data/shortcut/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/shortcut/undo.png -------------------------------------------------------------------------------- /Software/data/weather/Humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/Humidity.png -------------------------------------------------------------------------------- /Software/data/weather/Temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/Temperature.png -------------------------------------------------------------------------------- /Software/data/weather/maxtemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/maxtemp.png -------------------------------------------------------------------------------- /Software/data/weather/mintemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/mintemp.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Cold WaveBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Cold WaveBlue.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Cold WaveOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Cold WaveOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Cold WaveRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Cold WaveRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Cold WaveYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Cold WaveYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/DroughtOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/DroughtOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/DroughtRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/DroughtRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/FrostBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/FrostBlue.png -------------------------------------------------------------------------------- /Software/data/weather/warning/FrostOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/FrostOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/FrostYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/FrostYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/GaleBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/GaleBlue.png -------------------------------------------------------------------------------- /Software/data/weather/warning/GaleOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/GaleOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/GaleRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/GaleRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/GaleYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/GaleYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/HailOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/HailOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/HailRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/HailRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/HazeOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/HazeOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/HazeYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/HazeYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Heat WaveOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Heat WaveOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Heat WaveRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Heat WaveRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Heat WaveYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Heat WaveYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Heavy FogOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Heavy FogOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Heavy FogRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Heavy FogRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Heavy FogYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Heavy FogYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/LandslideOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/LandslideOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/LandslideRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/LandslideRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/LandslideYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/LandslideYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/LightningOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/LightningOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/LightningRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/LightningRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/LightningYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/LightningYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/RainstormBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/RainstormBlue.png -------------------------------------------------------------------------------- /Software/data/weather/warning/RainstormOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/RainstormOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/RainstormRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/RainstormRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/RainstormYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/RainstormYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Road IcingOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Road IcingOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Road IcingRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Road IcingRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Road IcingYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Road IcingYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/SandstormOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/SandstormOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/SandstormRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/SandstormRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/SandstormYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/SandstormYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Snow StormBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Snow StormBlue.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Snow StormOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Snow StormOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Snow StormRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Snow StormRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Snow StormYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Snow StormYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Strong ConvectionBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Strong ConvectionBlue.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Strong ConvectionOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Strong ConvectionOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Strong ConvectionYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Strong ConvectionYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Thunder GustOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Thunder GustOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Thunder GustRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Thunder GustRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Thunder GustYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Thunder GustYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Thunderstorm And GaleOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Thunderstorm And GaleOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Thunderstorm And GaleRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Thunderstorm And GaleRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/Thunderstorm And GaleYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/Thunderstorm And GaleYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/TyphoonBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/TyphoonBlue.png -------------------------------------------------------------------------------- /Software/data/weather/warning/TyphoonOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/TyphoonOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/TyphoonRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/TyphoonRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/TyphoonYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/TyphoonYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/UniBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/UniBlue.png -------------------------------------------------------------------------------- /Software/data/weather/warning/UniOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/UniOrange.png -------------------------------------------------------------------------------- /Software/data/weather/warning/UniRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/UniRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/UniYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/UniYellow.png -------------------------------------------------------------------------------- /Software/data/weather/warning/WildfireRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/WildfireRed.png -------------------------------------------------------------------------------- /Software/data/weather/warning/WildfireYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/warning/WildfireYellow.png -------------------------------------------------------------------------------- /Software/data/weather/weather/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/100.png -------------------------------------------------------------------------------- /Software/data/weather/weather/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/101.png -------------------------------------------------------------------------------- /Software/data/weather/weather/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/104.png -------------------------------------------------------------------------------- /Software/data/weather/weather/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/150.png -------------------------------------------------------------------------------- /Software/data/weather/weather/151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/151.png -------------------------------------------------------------------------------- /Software/data/weather/weather/300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/300.png -------------------------------------------------------------------------------- /Software/data/weather/weather/302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/302.png -------------------------------------------------------------------------------- /Software/data/weather/weather/305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/305.png -------------------------------------------------------------------------------- /Software/data/weather/weather/306.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/306.png -------------------------------------------------------------------------------- /Software/data/weather/weather/307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/307.png -------------------------------------------------------------------------------- /Software/data/weather/weather/310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/310.png -------------------------------------------------------------------------------- /Software/data/weather/weather/350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/350.png -------------------------------------------------------------------------------- /Software/data/weather/weather/399.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/399.png -------------------------------------------------------------------------------- /Software/data/weather/weather/400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/400.png -------------------------------------------------------------------------------- /Software/data/weather/weather/401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/401.png -------------------------------------------------------------------------------- /Software/data/weather/weather/402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/402.png -------------------------------------------------------------------------------- /Software/data/weather/weather/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/403.png -------------------------------------------------------------------------------- /Software/data/weather/weather/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/404.png -------------------------------------------------------------------------------- /Software/data/weather/weather/407.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/407.png -------------------------------------------------------------------------------- /Software/data/weather/weather/501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/501.png -------------------------------------------------------------------------------- /Software/data/weather/weather/502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/502.png -------------------------------------------------------------------------------- /Software/data/weather/weather/503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/503.png -------------------------------------------------------------------------------- /Software/data/weather/weather/504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/504.png -------------------------------------------------------------------------------- /Software/data/weather/weather/507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/507.png -------------------------------------------------------------------------------- /Software/data/weather/weather/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/NA.png -------------------------------------------------------------------------------- /Software/data/weather/weather/icon_yejianwu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/weather/weather/icon_yejianwu.png -------------------------------------------------------------------------------- /Software/data/web/bili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/web/bili.png -------------------------------------------------------------------------------- /Software/data/web/gitee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/web/gitee.png -------------------------------------------------------------------------------- /Software/data/web/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/web/github.png -------------------------------------------------------------------------------- /Software/data/web/lcsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/web/lcsc.png -------------------------------------------------------------------------------- /Software/data/web/oshwhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/web/oshwhub.png -------------------------------------------------------------------------------- /Software/data/webserver/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/webserver/config.html -------------------------------------------------------------------------------- /Software/data/webserver/firmware.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/webserver/firmware.html -------------------------------------------------------------------------------- /Software/data/webserver/moresettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/webserver/moresettings.html -------------------------------------------------------------------------------- /Software/data/webserver/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/webserver/root.html -------------------------------------------------------------------------------- /Software/data/webserver/uploadphoto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/webserver/uploadphoto.html -------------------------------------------------------------------------------- /Software/data/webserver/uploadweb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/data/webserver/uploadweb.html -------------------------------------------------------------------------------- /Software/include/JpegFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/include/JpegFunc.h -------------------------------------------------------------------------------- /Software/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/include/README -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/.piopm -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/Adafruit_NeoPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/Adafruit_NeoPixel.cpp -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/Adafruit_NeoPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/Adafruit_NeoPixel.h -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/CONTRIBUTING.md -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/COPYING -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/README.md -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/esp.c -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/esp8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/esp8266.c -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/RGBWstrandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/RGBWstrandtest/.trinket.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/StrandtestArduinoBLE/.none.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/StrandtestArduinoBLECallback/.none.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/StrandtestBLE/.none.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/StrandtestBLE_nodelay/.none.test.only: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/buttoncycler/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/simple/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/examples/simple/simple.ino -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/simple_new_operator/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/strandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/strandtest_nodelay/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/examples/strandtest_wheel/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/kendyte_k210.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/kendyte_k210.c -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/keywords.txt -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/library.properties -------------------------------------------------------------------------------- /Software/lib/Adafruit NeoPixel/rp2040_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Adafruit NeoPixel/rp2040_pio.h -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/.vscode/settings.json -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/README.md -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/keywords.txt -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/library.properties -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/ArduinoUZlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/ArduinoUZlib.cpp -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/ArduinoUZlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/ArduinoUZlib.h -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/CMakeLists.txt -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/adler32.c -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/crc32.c -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/defl_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/defl_static.c -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/defl_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/defl_static.h -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/genlz77.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/genlz77.c -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/makefile -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/makefile.b32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/makefile.b32 -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/makefile.dj2 -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/makefile.dmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/makefile.dmc -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/makefile.mgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/makefile.mgw -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/makefile.vc -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/makefile.wat -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/nasm/crc32.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/nasm/crc32.nas -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/nasm/nasmlcm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/nasm/nasmlcm.inc -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/nasm/tinfzlib.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/nasm/tinfzlib.nas -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/tinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/tinf.h -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/tinf_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/tinf_compat.h -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/tinfgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/tinfgzip.c -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/tinflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/tinflate.c -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/tinfzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/tinfzlib.c -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/uzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/uzlib.h -------------------------------------------------------------------------------- /Software/lib/ArduinoUZlib/src/uzlib_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ArduinoUZlib/src/uzlib_conf.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/README.md -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/examples/ArduinoVNC/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/examples/ArduinoVNC/touch.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/examples/Clock/Clock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/examples/Clock/Clock.ino -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/library.properties -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_DataBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_DataBus.cpp -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_DataBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_DataBus.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_G.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_G.cpp -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_G.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_G.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_GFX.cpp -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_GFX.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_GFX_Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_GFX_Library.cpp -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_GFX_Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_GFX_Library.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_TFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_TFT.cpp -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_TFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_TFT.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_TFT_18bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_TFT_18bit.cpp -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/Arduino_TFT_18bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/Arduino_TFT_18bit.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/YCbCr2RGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/YCbCr2RGB.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/canvas/Arduino_Canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/canvas/Arduino_Canvas.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/canvas/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/canvas/readme.md -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_HWSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_HWSPI.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_SWPAR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_SWPAR8.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_SWSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_SWSPI.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_Wire.cpp -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/databus/Arduino_Wire.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_GC9106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_GC9106.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_GC9107.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_GC9107.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_GC9A01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_GC9A01.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_JD9613.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_JD9613.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_NV3023.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_NV3023.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_R61529.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_R61529.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_SH1106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_SH1106.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_ST7735.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_ST7789.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_ST7796.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/display/Arduino_ST7796.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/font/chinese4.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/font/chinese4.list -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/font/glcdfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/font/glcdfont.h -------------------------------------------------------------------------------- /Software/lib/Arduino_GFX-1.4.6/src/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Arduino_GFX-1.4.6/src/gfxfont.h -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/.github/scripts/install-platformio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/.github/scripts/install-platformio.sh -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/.github/scripts/on-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/.github/scripts/on-push.sh -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/.github/stale.yml -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/.github/workflows/push.yml -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/.piopm -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/.travis.yml -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/CMakeLists.txt -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/Kconfig.projbuild -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/LICENSE -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/README.md -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/component.mk -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/library.json -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/library.properties -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/src/AsyncTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/src/AsyncTCP.cpp -------------------------------------------------------------------------------- /Software/lib/AsyncTCP/src/AsyncTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/AsyncTCP/src/AsyncTCP.h -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: lennart0815 -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Button2-2.2.4/.gitignore -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Button2-2.2.4/CHANGELOG.md -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Button2-2.2.4/LICENSE -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Button2-2.2.4/README.md -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Button2-2.2.4/keywords.txt -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Button2-2.2.4/library.json -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Button2-2.2.4/library.properties -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/src/Button2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Button2-2.2.4/src/Button2.cpp -------------------------------------------------------------------------------- /Software/lib/Button2-2.2.4/src/Button2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/Button2-2.2.4/src/Button2.h -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/DFRobot_CH423.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/DFRobot_CH423.cpp -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/DFRobot_CH423.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/DFRobot_CH423.h -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/LICENSE -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/README.md -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/README_CN.md -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/examples/blink/blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/examples/blink/blink.ino -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/examples/group/group.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/examples/group/group.ino -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/examples/input/input.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/examples/input/input.ino -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/examples/sleep/sleep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/examples/sleep/sleep.ino -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/examples/waterLamp/waterLamp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/examples/waterLamp/waterLamp.ino -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/keywords.txt -------------------------------------------------------------------------------- /Software/lib/DFRobot_CH423/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/DFRobot_CH423/library.properties -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/.gitattributes -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/.github/workflows/ci.yml -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/.gitignore -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/LICENSE -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/README.md -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/docs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/docs/demo.gif -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/docs/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/docs/feature.png -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/docs/logo.svg -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/docs/pro-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/docs/pro-preview.jpg -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/examples/AsyncDemo/.picow_rp2040.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/examples/Demo/Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/examples/Demo/Demo.ino -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/keywords.txt -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/library.json -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/library.properties -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/platformio_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/platformio_upload.py -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/src/ElegantOTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/src/ElegantOTA.cpp -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/src/ElegantOTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/src/ElegantOTA.h -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/src/elop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/src/elop.cpp -------------------------------------------------------------------------------- /Software/lib/ElegantOTA-3.1.0/src/elop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/ElegantOTA-3.1.0/src/elop.h -------------------------------------------------------------------------------- /Software/lib/QRCode/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Software/lib/QRCode/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/LICENSE.txt -------------------------------------------------------------------------------- /Software/lib/QRCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/README.md -------------------------------------------------------------------------------- /Software/lib/QRCode/examples/QRCode/QRCode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/examples/QRCode/QRCode.ino -------------------------------------------------------------------------------- /Software/lib/QRCode/generate_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/generate_table.py -------------------------------------------------------------------------------- /Software/lib/QRCode/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/keywords.txt -------------------------------------------------------------------------------- /Software/lib/QRCode/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/library.properties -------------------------------------------------------------------------------- /Software/lib/QRCode/src/QRCode_Library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/src/QRCode_Library.c -------------------------------------------------------------------------------- /Software/lib/QRCode/src/QRCode_Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/src/QRCode_Library.h -------------------------------------------------------------------------------- /Software/lib/QRCode/tests/BitBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/tests/BitBuffer.cpp -------------------------------------------------------------------------------- /Software/lib/QRCode/tests/BitBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/tests/BitBuffer.hpp -------------------------------------------------------------------------------- /Software/lib/QRCode/tests/QrCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/tests/QrCode.cpp -------------------------------------------------------------------------------- /Software/lib/QRCode/tests/QrCode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/tests/QrCode.hpp -------------------------------------------------------------------------------- /Software/lib/QRCode/tests/QrSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/tests/QrSegment.cpp -------------------------------------------------------------------------------- /Software/lib/QRCode/tests/QrSegment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/tests/QrSegment.hpp -------------------------------------------------------------------------------- /Software/lib/QRCode/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/tests/README.md -------------------------------------------------------------------------------- /Software/lib/QRCode/tests/run-tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/tests/run-tests.cpp -------------------------------------------------------------------------------- /Software/lib/QRCode/tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/QRCode/tests/run.sh -------------------------------------------------------------------------------- /Software/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/README -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/.travis.yml -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/CMakeLists.txt -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/LICENSE -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/README.md -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/WiFiManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/WiFiManager.cpp -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/WiFiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/WiFiManager.h -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/extras/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/extras/parse.js -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/extras/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/extras/template.h -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/extras/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/extras/test.html -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/keywords.txt -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/library.json -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/library.properties -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/strings_en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/strings_en.h -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/travis/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/travis/common.sh -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/wm_consts_en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/wm_consts_en.h -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/wm_strings_en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/wm_strings_en.h -------------------------------------------------------------------------------- /Software/lib/WiFiManager-2.0.16-rc.2/wm_strings_es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/lib/WiFiManager-2.0.16-rc.2/wm_strings_es.h -------------------------------------------------------------------------------- /Software/partition_custom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/partition_custom.csv -------------------------------------------------------------------------------- /Software/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/platformio.ini -------------------------------------------------------------------------------- /Software/src/app/SoftwareTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/SoftwareTimer.cpp -------------------------------------------------------------------------------- /Software/src/app/SoftwareTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/SoftwareTimer.h -------------------------------------------------------------------------------- /Software/src/app/app_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_audio.cpp -------------------------------------------------------------------------------- /Software/src/app/app_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_audio.h -------------------------------------------------------------------------------- /Software/src/app/app_drawpicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_drawpicture.cpp -------------------------------------------------------------------------------- /Software/src/app/app_drawpicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_drawpicture.h -------------------------------------------------------------------------------- /Software/src/app/app_humansensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_humansensor.cpp -------------------------------------------------------------------------------- /Software/src/app/app_humansensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_humansensor.h -------------------------------------------------------------------------------- /Software/src/app/app_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_key.cpp -------------------------------------------------------------------------------- /Software/src/app/app_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_key.h -------------------------------------------------------------------------------- /Software/src/app/app_led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_led.cpp -------------------------------------------------------------------------------- /Software/src/app/app_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_led.h -------------------------------------------------------------------------------- /Software/src/app/app_mijia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_mijia.cpp -------------------------------------------------------------------------------- /Software/src/app/app_mijia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_mijia.h -------------------------------------------------------------------------------- /Software/src/app/app_pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_pc.cpp -------------------------------------------------------------------------------- /Software/src/app/app_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_pc.h -------------------------------------------------------------------------------- /Software/src/app/app_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_settings.cpp -------------------------------------------------------------------------------- /Software/src/app/app_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_settings.h -------------------------------------------------------------------------------- /Software/src/app/app_stocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_stocks.cpp -------------------------------------------------------------------------------- /Software/src/app/app_stocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_stocks.h -------------------------------------------------------------------------------- /Software/src/app/app_timeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_timeout.cpp -------------------------------------------------------------------------------- /Software/src/app/app_timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_timeout.h -------------------------------------------------------------------------------- /Software/src/app/app_weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_weather.cpp -------------------------------------------------------------------------------- /Software/src/app/app_weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/app_weather.h -------------------------------------------------------------------------------- /Software/src/app/pc.rslcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/app/pc.rslcd -------------------------------------------------------------------------------- /Software/src/board_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/board_def.cpp -------------------------------------------------------------------------------- /Software/src/board_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/board_def.h -------------------------------------------------------------------------------- /Software/src/fonts/Calligraffitti_Regular_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/Calligraffitti_Regular_12.h -------------------------------------------------------------------------------- /Software/src/fonts/Chillax_MediumEN_50.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/Chillax_MediumEN_50.h -------------------------------------------------------------------------------- /Software/src/fonts/Coming_Soon_Regular_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/Coming_Soon_Regular_12.h -------------------------------------------------------------------------------- /Software/src/fonts/DSEG14_Classic_Regular_40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/DSEG14_Classic_Regular_40.h -------------------------------------------------------------------------------- /Software/src/fonts/DouyinSansBoldCN_Weather_38.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/DouyinSansBoldCN_Weather_38.h -------------------------------------------------------------------------------- /Software/src/fonts/DreamHanSerifCN_W15_Stocks_21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/DreamHanSerifCN_W15_Stocks_21.h -------------------------------------------------------------------------------- /Software/src/fonts/DreamHanSerifCN_W17_Mijia_25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/DreamHanSerifCN_W17_Mijia_25.h -------------------------------------------------------------------------------- /Software/src/fonts/DreamHanSerifCN_W17_NoWarning_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/DreamHanSerifCN_W17_NoWarning_24.h -------------------------------------------------------------------------------- /Software/src/fonts/DreamHanSerifCN_W17_Processing_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/DreamHanSerifCN_W17_Processing_24.h -------------------------------------------------------------------------------- /Software/src/fonts/DreamHanSerifCN_W17_Weekday_21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/DreamHanSerifCN_W17_Weekday_21.h -------------------------------------------------------------------------------- /Software/src/fonts/GillSansEN_Bold_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/GillSansEN_Bold_12.h -------------------------------------------------------------------------------- /Software/src/fonts/Guangliang_Title_26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/Guangliang_Title_26.h -------------------------------------------------------------------------------- /Software/src/fonts/MiSans_DemiboldCN_18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/MiSans_DemiboldCN_18.h -------------------------------------------------------------------------------- /Software/src/fonts/MiSans_Demibold_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/MiSans_Demibold_12.h -------------------------------------------------------------------------------- /Software/src/fonts/MiSans_LightCN_Weather_20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/MiSans_LightCN_Weather_20.h -------------------------------------------------------------------------------- /Software/src/fonts/MiSans_MediumEN_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/MiSans_MediumEN_12.h -------------------------------------------------------------------------------- /Software/src/fonts/MiSans_Regular45pt_num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/MiSans_Regular45pt_num.h -------------------------------------------------------------------------------- /Software/src/fonts/Roboto_Thin_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/Roboto_Thin_24.h -------------------------------------------------------------------------------- /Software/src/fonts/Satisfy_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/Satisfy_24.h -------------------------------------------------------------------------------- /Software/src/fonts/Yellowtail_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/fonts/Yellowtail_32.h -------------------------------------------------------------------------------- /Software/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/main.cpp -------------------------------------------------------------------------------- /Software/src/manager/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/manager/manager.cpp -------------------------------------------------------------------------------- /Software/src/manager/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/manager/manager.h -------------------------------------------------------------------------------- /Software/src/pages/bilibili/bilibili.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/bilibili/bilibili.cpp -------------------------------------------------------------------------------- /Software/src/pages/bilibili/bilibili.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/bilibili/bilibili.h -------------------------------------------------------------------------------- /Software/src/pages/bilibili/danmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/bilibili/danmu.h -------------------------------------------------------------------------------- /Software/src/pages/bilibili/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/bilibili/img.h -------------------------------------------------------------------------------- /Software/src/pages/bilibili/quanping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/bilibili/quanping.h -------------------------------------------------------------------------------- /Software/src/pages/bilibili/yijiansanlian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/bilibili/yijiansanlian.h -------------------------------------------------------------------------------- /Software/src/pages/clock/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/clock/clock.cpp -------------------------------------------------------------------------------- /Software/src/pages/clock/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/clock/clock.h -------------------------------------------------------------------------------- /Software/src/pages/clock/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/clock/img.h -------------------------------------------------------------------------------- /Software/src/pages/countdown/countdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/countdown/countdown.cpp -------------------------------------------------------------------------------- /Software/src/pages/countdown/countdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/countdown/countdown.h -------------------------------------------------------------------------------- /Software/src/pages/countdown/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/countdown/img.h -------------------------------------------------------------------------------- /Software/src/pages/keyboard/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/keyboard/img.h -------------------------------------------------------------------------------- /Software/src/pages/keyboard/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/keyboard/keyboard.cpp -------------------------------------------------------------------------------- /Software/src/pages/keyboard/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/keyboard/keyboard.h -------------------------------------------------------------------------------- /Software/src/pages/media/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/media/img.h -------------------------------------------------------------------------------- /Software/src/pages/media/media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/media/media.cpp -------------------------------------------------------------------------------- /Software/src/pages/media/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/media/media.h -------------------------------------------------------------------------------- /Software/src/pages/mijia/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/mijia/img.h -------------------------------------------------------------------------------- /Software/src/pages/mijia/mijia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/mijia/mijia.cpp -------------------------------------------------------------------------------- /Software/src/pages/mijia/mijia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/mijia/mijia.h -------------------------------------------------------------------------------- /Software/src/pages/pages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/pages.cpp -------------------------------------------------------------------------------- /Software/src/pages/pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/pages.h -------------------------------------------------------------------------------- /Software/src/pages/pcstate/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/pcstate/img.h -------------------------------------------------------------------------------- /Software/src/pages/pcstate/pcstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/pcstate/pcstate.cpp -------------------------------------------------------------------------------- /Software/src/pages/pcstate/pcstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/pcstate/pcstate.h -------------------------------------------------------------------------------- /Software/src/pages/photo/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/photo/img.h -------------------------------------------------------------------------------- /Software/src/pages/photo/photo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/photo/photo.cpp -------------------------------------------------------------------------------- /Software/src/pages/photo/photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/photo/photo.h -------------------------------------------------------------------------------- /Software/src/pages/pomodoro/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/pomodoro/img.h -------------------------------------------------------------------------------- /Software/src/pages/pomodoro/pomodoro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/pomodoro/pomodoro.cpp -------------------------------------------------------------------------------- /Software/src/pages/pomodoro/pomodoro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/pomodoro/pomodoro.h -------------------------------------------------------------------------------- /Software/src/pages/settings/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/settings/img.h -------------------------------------------------------------------------------- /Software/src/pages/settings/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/settings/settings.cpp -------------------------------------------------------------------------------- /Software/src/pages/settings/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/settings/settings.h -------------------------------------------------------------------------------- /Software/src/pages/shortcut/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/shortcut/img.h -------------------------------------------------------------------------------- /Software/src/pages/shortcut/shortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/shortcut/shortcut.cpp -------------------------------------------------------------------------------- /Software/src/pages/shortcut/shortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/shortcut/shortcut.h -------------------------------------------------------------------------------- /Software/src/pages/stocks/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/stocks/img.h -------------------------------------------------------------------------------- /Software/src/pages/stocks/stocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/stocks/stocks.cpp -------------------------------------------------------------------------------- /Software/src/pages/stocks/stocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/stocks/stocks.h -------------------------------------------------------------------------------- /Software/src/pages/template/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/template/img.h -------------------------------------------------------------------------------- /Software/src/pages/template/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/template/template.cpp -------------------------------------------------------------------------------- /Software/src/pages/template/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/template/template.h -------------------------------------------------------------------------------- /Software/src/pages/weather/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/weather/img.h -------------------------------------------------------------------------------- /Software/src/pages/weather/weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/weather/weather.cpp -------------------------------------------------------------------------------- /Software/src/pages/weather/weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/weather/weather.h -------------------------------------------------------------------------------- /Software/src/pages/web/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/web/img.h -------------------------------------------------------------------------------- /Software/src/pages/web/web.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/web/web.cpp -------------------------------------------------------------------------------- /Software/src/pages/web/web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/src/pages/web/web.h -------------------------------------------------------------------------------- /Software/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/Software/test/README -------------------------------------------------------------------------------- /docs/BOM_【主板】TripleKey主板_2024-05-09.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/docs/BOM_【主板】TripleKey主板_2024-05-09.xlsx -------------------------------------------------------------------------------- /docs/BOM_【拓展方案1】米家及人在传感器拓展_2024-05-09.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/docs/BOM_【拓展方案1】米家及人在传感器拓展_2024-05-09.xlsx -------------------------------------------------------------------------------- /docs/BOM_【拓展方案2】右侧拓展板_2024-05-09.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/docs/BOM_【拓展方案2】右侧拓展板_2024-05-09.xlsx -------------------------------------------------------------------------------- /docs/BOM_【拓展方案2】米家及人在传感器拓展_2024-05-09.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/docs/BOM_【拓展方案2】米家及人在传感器拓展_2024-05-09.xlsx -------------------------------------------------------------------------------- /docs/BOM_【拓展方案3】米家及人在传感器拓展_贴_2024-06-05.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/docs/BOM_【拓展方案3】米家及人在传感器拓展_贴_2024-06-05.xlsx -------------------------------------------------------------------------------- /docs/额外BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChancenJ/TripleKey/HEAD/docs/额外BOM.xlsx --------------------------------------------------------------------------------