├── .gitignore ├── LICENSE ├── README.md ├── README_CN.MD ├── Shell_file └── shell-003_asm.stp ├── boards ├── esp32-c3-devkitm-1.json └── esp32s3_nopsram.json ├── datasheet ├── RSM232MT5V_CN_v1.0.pdf └── RSM485MT5V_CN_v1.0.pdf ├── example ├── Blynk_Console │ ├── Blynk_Console.ino │ ├── readme.md │ └── utilities.h ├── Integration │ ├── Integration.ino │ ├── README.md │ └── utilities.h ├── RS232_Modbus │ ├── RS232_Modbus.ino │ └── utilities.h ├── RS232_loopback │ ├── README.MD │ ├── RS232_loopback.ino │ └── utilities.h ├── RS232_simple │ ├── RS232_simple.ino │ └── utilities.h ├── RS485_Modbus │ ├── RS485_Modbus.ino │ └── utilities.h └── RS485_simple │ ├── RS485_simple.ino │ └── utilities.h ├── frimware ├── README.md ├── T_RSC3_20221209.bin └── T_RSS3_Factory.bin ├── image ├── ArduinoIDE.jpg ├── Flash_Download.png ├── T-RSC3.jpg ├── blynk │ ├── 1-Create_Template-T-RSC3.png │ ├── 2-Create_device-T-RSC3.png │ ├── 3-1-Configuration_module.png │ ├── 3-2-Configuration_module.png │ ├── 3-3-Configuration_module.png │ ├── 3-Configuration_module.png │ ├── 4-1-Dash_board.png │ ├── 4-2-Dash_board.png │ ├── 4-3-Dash_board.png │ └── 6-RSC3_code.png └── rs232.jpg ├── lib ├── AceButton │ ├── .github │ │ └── workflows │ │ │ └── aunit_tests.yml │ ├── .gitignore │ ├── .piopm │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ArrayButtons │ │ │ ├── ArrayButtons.ino │ │ │ └── Makefile │ │ ├── AutoBenchmark │ │ │ ├── AutoBenchmark.ino │ │ │ ├── Makefile │ │ │ ├── ProfilingButtonConfig.h │ │ │ ├── README.md │ │ │ ├── esp32.txt │ │ │ ├── esp8266.txt │ │ │ ├── generate_readme.py │ │ │ ├── generate_table.awk │ │ │ ├── micro.txt │ │ │ ├── nano.txt │ │ │ ├── samd21.txt │ │ │ ├── samd51.txt │ │ │ └── stm32.txt │ │ ├── CapacitiveButton │ │ │ └── CapacitiveButton.ino │ │ ├── ClickVersusDoubleClickUsingBoth │ │ │ ├── ClickVersusDoubleClickUsingBoth.ino │ │ │ └── Makefile │ │ ├── ClickVersusDoubleClickUsingReleased │ │ │ ├── ClickVersusDoubleClickUsingReleased.ino │ │ │ └── Makefile │ │ ├── ClickVersusDoubleClickUsingSuppression │ │ │ ├── ClickVersusDoubleClickUsingSuppression.ino │ │ │ └── Makefile │ │ ├── Encoded16To4Buttons │ │ │ ├── Encoded16To4Buttons.ino │ │ │ ├── Makefile │ │ │ └── README.md │ │ ├── Encoded4To2Buttons │ │ │ ├── Encoded4To2Buttons.ino │ │ │ ├── Makefile │ │ │ └── README.md │ │ ├── Encoded8To3Buttons │ │ │ ├── Encoded8To3Buttons.ino │ │ │ ├── Makefile │ │ │ └── README.md │ │ ├── HeartBeat │ │ │ ├── HeartBeat.ino │ │ │ └── Makefile │ │ ├── HelloButton │ │ │ ├── HelloButton.ino │ │ │ └── Makefile │ │ ├── LadderButtonCalibrator │ │ │ ├── LadderButtonCalibrator.ino │ │ │ └── Makefile │ │ ├── LadderButtons │ │ │ ├── LadderButtons.ino │ │ │ ├── Makefile │ │ │ └── README.md │ │ ├── LadderButtonsTiny │ │ │ ├── LadderButtonsTiny.ino │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── MemoryBenchmark │ │ │ ├── Makefile │ │ │ ├── MemoryBenchmark.ino │ │ │ ├── README.md │ │ │ ├── attiny.txt │ │ │ ├── collect.sh │ │ │ ├── esp32.txt │ │ │ ├── esp8266.txt │ │ │ ├── generate_readme.py │ │ │ ├── generate_table.awk │ │ │ ├── micro.txt │ │ │ ├── nano.txt │ │ │ ├── samd21.txt │ │ │ ├── samd51.txt │ │ │ ├── stm32.txt │ │ │ └── validate_using_epoxy_duino.sh │ │ ├── PressVersusLongPress │ │ │ ├── Makefile │ │ │ └── PressVersusLongPress.ino │ │ ├── SimultaneousButtons │ │ │ ├── Makefile │ │ │ └── SimultaneousButtons.ino │ │ ├── SingleButton │ │ │ ├── Makefile │ │ │ └── SingleButton.ino │ │ ├── SingleButtonFast │ │ │ ├── Makefile │ │ │ └── SingleButtonFast.ino │ │ ├── SingleButtonPullDown │ │ │ ├── Makefile │ │ │ └── SingleButtonPullDown.ino │ │ ├── SingleButtonUsingIEventHandler │ │ │ ├── Makefile │ │ │ └── SingleButtonUsingIEventHandler.ino │ │ ├── Stopwatch │ │ │ ├── Makefile │ │ │ └── Stopwatch.ino │ │ ├── ThreeButtonsUsingOneButtonConfig │ │ │ ├── Makefile │ │ │ └── ThreeButtonsUsingOneButtonConfig.ino │ │ ├── ThreeButtonsUsingOneButtonConfigFast │ │ │ ├── Makefile │ │ │ └── ThreeButtonsUsingOneButtonConfigFast.ino │ │ ├── TunerButtons │ │ │ ├── Makefile │ │ │ └── TunerButtons.ino │ │ ├── TwoButtonsUsingOneButtonConfig │ │ │ ├── Makefile │ │ │ └── TwoButtonsUsingOneButtonConfig.ino │ │ ├── TwoButtonsUsingOneButtonConfigFast │ │ │ ├── Makefile │ │ │ └── TwoButtonsUsingOneButtonConfigFast.ino │ │ └── TwoButtonsUsingTwoButtonConfigs │ │ │ ├── Makefile │ │ │ └── TwoButtonsUsingTwoButtonConfigs.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── AceButton.h │ │ └── ace_button │ │ ├── AceButton.cpp │ │ ├── AceButton.h │ │ ├── ButtonConfig.cpp │ │ ├── ButtonConfig.h │ │ ├── Encoded4To2ButtonConfig.h │ │ ├── Encoded8To3ButtonConfig.h │ │ ├── EncodedButtonConfig.cpp │ │ ├── EncodedButtonConfig.h │ │ ├── IEventHandler.h │ │ ├── LadderButtonConfig.cpp │ │ ├── LadderButtonConfig.h │ │ ├── fast │ │ ├── ButtonConfigFast1.h │ │ ├── ButtonConfigFast2.h │ │ └── ButtonConfigFast3.h │ │ └── testing │ │ ├── EventTracker.cpp │ │ ├── EventTracker.h │ │ ├── HelperForButtonConfig.h │ │ ├── HelperForEncodedButtonConfig.h │ │ ├── HelperForLadderButtonConfig.h │ │ ├── TestableButtonConfig.h │ │ ├── TestableEncodedButtonConfig.h │ │ └── TestableLadderButtonConfig.h ├── Adafruit_NeoPixel │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── .gitignore │ ├── 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 ├── ESP Async WebServer │ ├── .github │ │ ├── scripts │ │ │ ├── install-arduino-core-esp32.sh │ │ │ ├── install-arduino-core-esp8266.sh │ │ │ ├── install-arduino-ide.sh │ │ │ ├── install-platformio.sh │ │ │ └── on-push.sh │ │ ├── stale.yml │ │ └── workflows │ │ │ └── push.yml │ ├── .gitignore │ ├── .piopm │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── README.md │ ├── _config.yml │ ├── component.mk │ ├── examples │ │ ├── CaptivePortal │ │ │ └── CaptivePortal.ino │ │ ├── ESP_AsyncFSBrowser │ │ │ ├── ESP_AsyncFSBrowser.ino │ │ │ └── data │ │ │ │ ├── .exclude.files │ │ │ │ ├── favicon.ico │ │ │ │ └── index.htm │ │ ├── regex_patterns │ │ │ └── regex_patterns.ino │ │ └── simple_server │ │ │ └── simple_server.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── AsyncEventSource.cpp │ │ ├── AsyncEventSource.h │ │ ├── AsyncJson.h │ │ ├── AsyncWebSocket.cpp │ │ ├── AsyncWebSocket.h │ │ ├── AsyncWebSynchronization.h │ │ ├── ESPAsyncWebServer.h │ │ ├── SPIFFSEditor.cpp │ │ ├── SPIFFSEditor.h │ │ ├── StringArray.h │ │ ├── WebAuthentication.cpp │ │ ├── WebAuthentication.h │ │ ├── WebHandlerImpl.h │ │ ├── WebHandlers.cpp │ │ ├── WebRequest.cpp │ │ ├── WebResponseImpl.h │ │ ├── WebResponses.cpp │ │ ├── WebServer.cpp │ │ └── edit.htm └── ModbusMaster-2.0.0 │ ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md │ ├── .github_changelog_generator │ ├── .gitignore │ ├── .ruby-gemset │ ├── .ruby-version │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── Rakefile │ ├── STYLE.md │ ├── VERSION │ ├── examples │ ├── Basic │ │ └── Basic.pde │ ├── PhoenixContact_nanoLC │ │ └── PhoenixContact_nanoLC.pde │ └── RS485_HalfDuplex │ │ └── RS485_HalfDuplex.ino │ ├── extras │ ├── ModbusMaster reference-2.0.0.pdf │ └── README.txt │ ├── keywords.txt │ ├── library.properties │ └── src │ ├── ModbusMaster.cpp │ ├── ModbusMaster.h │ └── util │ ├── crc16.h │ └── word.h ├── platformio.ini └── schematic ├── T-RSC3.pdf └── T-RSS3.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .vscode 3 | script 4 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/README_CN.MD -------------------------------------------------------------------------------- /Shell_file/shell-003_asm.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/Shell_file/shell-003_asm.stp -------------------------------------------------------------------------------- /boards/esp32-c3-devkitm-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/boards/esp32-c3-devkitm-1.json -------------------------------------------------------------------------------- /boards/esp32s3_nopsram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/boards/esp32s3_nopsram.json -------------------------------------------------------------------------------- /datasheet/RSM232MT5V_CN_v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/datasheet/RSM232MT5V_CN_v1.0.pdf -------------------------------------------------------------------------------- /datasheet/RSM485MT5V_CN_v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/datasheet/RSM485MT5V_CN_v1.0.pdf -------------------------------------------------------------------------------- /example/Blynk_Console/Blynk_Console.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/Blynk_Console/Blynk_Console.ino -------------------------------------------------------------------------------- /example/Blynk_Console/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/Blynk_Console/readme.md -------------------------------------------------------------------------------- /example/Blynk_Console/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/Blynk_Console/utilities.h -------------------------------------------------------------------------------- /example/Integration/Integration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/Integration/Integration.ino -------------------------------------------------------------------------------- /example/Integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/Integration/README.md -------------------------------------------------------------------------------- /example/Integration/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/Integration/utilities.h -------------------------------------------------------------------------------- /example/RS232_Modbus/RS232_Modbus.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS232_Modbus/RS232_Modbus.ino -------------------------------------------------------------------------------- /example/RS232_Modbus/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS232_Modbus/utilities.h -------------------------------------------------------------------------------- /example/RS232_loopback/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS232_loopback/README.MD -------------------------------------------------------------------------------- /example/RS232_loopback/RS232_loopback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS232_loopback/RS232_loopback.ino -------------------------------------------------------------------------------- /example/RS232_loopback/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS232_loopback/utilities.h -------------------------------------------------------------------------------- /example/RS232_simple/RS232_simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS232_simple/RS232_simple.ino -------------------------------------------------------------------------------- /example/RS232_simple/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS232_simple/utilities.h -------------------------------------------------------------------------------- /example/RS485_Modbus/RS485_Modbus.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS485_Modbus/RS485_Modbus.ino -------------------------------------------------------------------------------- /example/RS485_Modbus/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS485_Modbus/utilities.h -------------------------------------------------------------------------------- /example/RS485_simple/RS485_simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS485_simple/RS485_simple.ino -------------------------------------------------------------------------------- /example/RS485_simple/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/example/RS485_simple/utilities.h -------------------------------------------------------------------------------- /frimware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/frimware/README.md -------------------------------------------------------------------------------- /frimware/T_RSC3_20221209.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/frimware/T_RSC3_20221209.bin -------------------------------------------------------------------------------- /frimware/T_RSS3_Factory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/frimware/T_RSS3_Factory.bin -------------------------------------------------------------------------------- /image/ArduinoIDE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/ArduinoIDE.jpg -------------------------------------------------------------------------------- /image/Flash_Download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/Flash_Download.png -------------------------------------------------------------------------------- /image/T-RSC3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/T-RSC3.jpg -------------------------------------------------------------------------------- /image/blynk/1-Create_Template-T-RSC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/1-Create_Template-T-RSC3.png -------------------------------------------------------------------------------- /image/blynk/2-Create_device-T-RSC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/2-Create_device-T-RSC3.png -------------------------------------------------------------------------------- /image/blynk/3-1-Configuration_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/3-1-Configuration_module.png -------------------------------------------------------------------------------- /image/blynk/3-2-Configuration_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/3-2-Configuration_module.png -------------------------------------------------------------------------------- /image/blynk/3-3-Configuration_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/3-3-Configuration_module.png -------------------------------------------------------------------------------- /image/blynk/3-Configuration_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/3-Configuration_module.png -------------------------------------------------------------------------------- /image/blynk/4-1-Dash_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/4-1-Dash_board.png -------------------------------------------------------------------------------- /image/blynk/4-2-Dash_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/4-2-Dash_board.png -------------------------------------------------------------------------------- /image/blynk/4-3-Dash_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/4-3-Dash_board.png -------------------------------------------------------------------------------- /image/blynk/6-RSC3_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/blynk/6-RSC3_code.png -------------------------------------------------------------------------------- /image/rs232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/image/rs232.jpg -------------------------------------------------------------------------------- /lib/AceButton/.github/workflows/aunit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/.github/workflows/aunit_tests.yml -------------------------------------------------------------------------------- /lib/AceButton/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/.gitignore -------------------------------------------------------------------------------- /lib/AceButton/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/.piopm -------------------------------------------------------------------------------- /lib/AceButton/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/CHANGELOG.md -------------------------------------------------------------------------------- /lib/AceButton/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/AceButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/LICENSE -------------------------------------------------------------------------------- /lib/AceButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/README.md -------------------------------------------------------------------------------- /lib/AceButton/examples/ArrayButtons/ArrayButtons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ArrayButtons/ArrayButtons.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/ArrayButtons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ArrayButtons/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/AutoBenchmark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/AutoBenchmark.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/ProfilingButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/ProfilingButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/README.md -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/esp32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/esp32.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/esp8266.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/esp8266.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/generate_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/generate_readme.py -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/generate_table.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/generate_table.awk -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/micro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/micro.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/nano.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/nano.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/samd21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/samd21.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/samd51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/samd51.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/AutoBenchmark/stm32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/AutoBenchmark/stm32.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/CapacitiveButton/CapacitiveButton.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/CapacitiveButton/CapacitiveButton.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/ClickVersusDoubleClickUsingBoth/ClickVersusDoubleClickUsingBoth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ClickVersusDoubleClickUsingBoth/ClickVersusDoubleClickUsingBoth.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/ClickVersusDoubleClickUsingBoth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ClickVersusDoubleClickUsingBoth/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/ClickVersusDoubleClickUsingReleased/ClickVersusDoubleClickUsingReleased.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ClickVersusDoubleClickUsingReleased/ClickVersusDoubleClickUsingReleased.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/ClickVersusDoubleClickUsingReleased/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ClickVersusDoubleClickUsingReleased/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/ClickVersusDoubleClickUsingSuppression/ClickVersusDoubleClickUsingSuppression.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ClickVersusDoubleClickUsingSuppression/ClickVersusDoubleClickUsingSuppression.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/ClickVersusDoubleClickUsingSuppression/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ClickVersusDoubleClickUsingSuppression/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/Encoded16To4Buttons/Encoded16To4Buttons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Encoded16To4Buttons/Encoded16To4Buttons.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/Encoded16To4Buttons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Encoded16To4Buttons/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/Encoded16To4Buttons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Encoded16To4Buttons/README.md -------------------------------------------------------------------------------- /lib/AceButton/examples/Encoded4To2Buttons/Encoded4To2Buttons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Encoded4To2Buttons/Encoded4To2Buttons.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/Encoded4To2Buttons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Encoded4To2Buttons/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/Encoded4To2Buttons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Encoded4To2Buttons/README.md -------------------------------------------------------------------------------- /lib/AceButton/examples/Encoded8To3Buttons/Encoded8To3Buttons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Encoded8To3Buttons/Encoded8To3Buttons.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/Encoded8To3Buttons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Encoded8To3Buttons/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/Encoded8To3Buttons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Encoded8To3Buttons/README.md -------------------------------------------------------------------------------- /lib/AceButton/examples/HeartBeat/HeartBeat.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/HeartBeat/HeartBeat.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/HeartBeat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/HeartBeat/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/HelloButton/HelloButton.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/HelloButton/HelloButton.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/HelloButton/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/HelloButton/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/LadderButtonCalibrator/LadderButtonCalibrator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/LadderButtonCalibrator/LadderButtonCalibrator.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/LadderButtonCalibrator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/LadderButtonCalibrator/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/LadderButtons/LadderButtons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/LadderButtons/LadderButtons.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/LadderButtons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/LadderButtons/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/LadderButtons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/LadderButtons/README.md -------------------------------------------------------------------------------- /lib/AceButton/examples/LadderButtonsTiny/LadderButtonsTiny.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/LadderButtonsTiny/LadderButtonsTiny.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/LadderButtonsTiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/LadderButtonsTiny/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/MemoryBenchmark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/MemoryBenchmark.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/README.md -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/attiny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/attiny.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/collect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/collect.sh -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/esp32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/esp32.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/esp8266.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/esp8266.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/generate_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/generate_readme.py -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/generate_table.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/generate_table.awk -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/micro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/micro.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/nano.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/nano.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/samd21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/samd21.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/samd51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/samd51.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/stm32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/stm32.txt -------------------------------------------------------------------------------- /lib/AceButton/examples/MemoryBenchmark/validate_using_epoxy_duino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/MemoryBenchmark/validate_using_epoxy_duino.sh -------------------------------------------------------------------------------- /lib/AceButton/examples/PressVersusLongPress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/PressVersusLongPress/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/PressVersusLongPress/PressVersusLongPress.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/PressVersusLongPress/PressVersusLongPress.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/SimultaneousButtons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SimultaneousButtons/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/SimultaneousButtons/SimultaneousButtons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SimultaneousButtons/SimultaneousButtons.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/SingleButton/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SingleButton/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/SingleButton/SingleButton.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SingleButton/SingleButton.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/SingleButtonFast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SingleButtonFast/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/SingleButtonFast/SingleButtonFast.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SingleButtonFast/SingleButtonFast.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/SingleButtonPullDown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SingleButtonPullDown/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/SingleButtonPullDown/SingleButtonPullDown.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SingleButtonPullDown/SingleButtonPullDown.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/SingleButtonUsingIEventHandler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SingleButtonUsingIEventHandler/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/SingleButtonUsingIEventHandler/SingleButtonUsingIEventHandler.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/SingleButtonUsingIEventHandler/SingleButtonUsingIEventHandler.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/Stopwatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Stopwatch/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/Stopwatch/Stopwatch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/Stopwatch/Stopwatch.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/ThreeButtonsUsingOneButtonConfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ThreeButtonsUsingOneButtonConfig/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/ThreeButtonsUsingOneButtonConfig/ThreeButtonsUsingOneButtonConfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ThreeButtonsUsingOneButtonConfig/ThreeButtonsUsingOneButtonConfig.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/ThreeButtonsUsingOneButtonConfigFast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ThreeButtonsUsingOneButtonConfigFast/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/ThreeButtonsUsingOneButtonConfigFast/ThreeButtonsUsingOneButtonConfigFast.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/ThreeButtonsUsingOneButtonConfigFast/ThreeButtonsUsingOneButtonConfigFast.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/TunerButtons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/TunerButtons/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/TunerButtons/TunerButtons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/TunerButtons/TunerButtons.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/TwoButtonsUsingOneButtonConfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/TwoButtonsUsingOneButtonConfig/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/TwoButtonsUsingOneButtonConfig/TwoButtonsUsingOneButtonConfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/TwoButtonsUsingOneButtonConfig/TwoButtonsUsingOneButtonConfig.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/TwoButtonsUsingOneButtonConfigFast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/TwoButtonsUsingOneButtonConfigFast/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/TwoButtonsUsingOneButtonConfigFast/TwoButtonsUsingOneButtonConfigFast.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/TwoButtonsUsingOneButtonConfigFast/TwoButtonsUsingOneButtonConfigFast.ino -------------------------------------------------------------------------------- /lib/AceButton/examples/TwoButtonsUsingTwoButtonConfigs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/TwoButtonsUsingTwoButtonConfigs/Makefile -------------------------------------------------------------------------------- /lib/AceButton/examples/TwoButtonsUsingTwoButtonConfigs/TwoButtonsUsingTwoButtonConfigs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/examples/TwoButtonsUsingTwoButtonConfigs/TwoButtonsUsingTwoButtonConfigs.ino -------------------------------------------------------------------------------- /lib/AceButton/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/keywords.txt -------------------------------------------------------------------------------- /lib/AceButton/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/library.properties -------------------------------------------------------------------------------- /lib/AceButton/src/AceButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/AceButton.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/AceButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/AceButton.cpp -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/AceButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/AceButton.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/ButtonConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/ButtonConfig.cpp -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/ButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/ButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/Encoded4To2ButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/Encoded4To2ButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/Encoded8To3ButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/Encoded8To3ButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/EncodedButtonConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/EncodedButtonConfig.cpp -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/EncodedButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/EncodedButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/IEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/IEventHandler.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/LadderButtonConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/LadderButtonConfig.cpp -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/LadderButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/LadderButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/fast/ButtonConfigFast1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/fast/ButtonConfigFast1.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/fast/ButtonConfigFast2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/fast/ButtonConfigFast2.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/fast/ButtonConfigFast3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/fast/ButtonConfigFast3.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/testing/EventTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/testing/EventTracker.cpp -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/testing/EventTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/testing/EventTracker.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/testing/HelperForButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/testing/HelperForButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/testing/HelperForEncodedButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/testing/HelperForEncodedButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/testing/HelperForLadderButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/testing/HelperForLadderButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/testing/TestableButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/testing/TestableButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/testing/TestableEncodedButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/testing/TestableEncodedButtonConfig.h -------------------------------------------------------------------------------- /lib/AceButton/src/ace_button/testing/TestableLadderButtonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/AceButton/src/ace_button/testing/TestableLadderButtonConfig.h -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/Adafruit_NeoPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/Adafruit_NeoPixel.h -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/COPYING -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/README.md -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/esp.c -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/esp8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/esp8266.c -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/RGBWstrandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/RGBWstrandtest/.trinket.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/RGBWstrandtest/RGBWstrandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/RGBWstrandtest/RGBWstrandtest.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestArduinoBLE/.none.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestArduinoBLE/StrandtestArduinoBLE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/StrandtestArduinoBLE/StrandtestArduinoBLE.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestArduinoBLECallback/.none.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestArduinoBLECallback/StrandtestArduinoBLECallback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/StrandtestArduinoBLECallback/StrandtestArduinoBLECallback.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestBLE/.none.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestBLE/BLESerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/StrandtestBLE/BLESerial.cpp -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestBLE/BLESerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/StrandtestBLE/BLESerial.h -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestBLE/StrandtestBLE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/StrandtestBLE/StrandtestBLE.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestBLE_nodelay/.none.test.only: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestBLE_nodelay/BLESerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/StrandtestBLE_nodelay/BLESerial.cpp -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestBLE_nodelay/BLESerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/StrandtestBLE_nodelay/BLESerial.h -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/StrandtestBLE_nodelay/StrandtestBLE_nodelay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/StrandtestBLE_nodelay/StrandtestBLE_nodelay.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/buttoncycler/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/buttoncycler/buttoncycler.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/buttoncycler/buttoncycler.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/simple/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/simple/simple.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/simple_new_operator/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/simple_new_operator/simple_new_operator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/simple_new_operator/simple_new_operator.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/strandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/strandtest/strandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/strandtest/strandtest.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/strandtest_nodelay/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/strandtest_nodelay/strandtest_nodelay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/strandtest_nodelay/strandtest_nodelay.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/strandtest_wheel/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/examples/strandtest_wheel/strandtest_wheel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/examples/strandtest_wheel/strandtest_wheel.ino -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/kendyte_k210.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/kendyte_k210.c -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/keywords.txt -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_NeoPixel/rp2040_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/Adafruit_NeoPixel/rp2040_pio.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.github/scripts/install-arduino-core-esp32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/.github/scripts/install-arduino-core-esp32.sh -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.github/scripts/install-arduino-core-esp8266.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/.github/scripts/install-arduino-core-esp8266.sh -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.github/scripts/install-arduino-ide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/.github/scripts/install-arduino-ide.sh -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.github/scripts/install-platformio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/.github/scripts/install-platformio.sh -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.github/scripts/on-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/.github/scripts/on-push.sh -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/.github/stale.yml -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/.github/workflows/push.yml -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/.piopm -------------------------------------------------------------------------------- /lib/ESP Async WebServer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/.travis.yml -------------------------------------------------------------------------------- /lib/ESP Async WebServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ESP Async WebServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/README.md -------------------------------------------------------------------------------- /lib/ESP Async WebServer/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/_config.yml -------------------------------------------------------------------------------- /lib/ESP Async WebServer/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/component.mk -------------------------------------------------------------------------------- /lib/ESP Async WebServer/examples/CaptivePortal/CaptivePortal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/examples/CaptivePortal/CaptivePortal.ino -------------------------------------------------------------------------------- /lib/ESP Async WebServer/examples/ESP_AsyncFSBrowser/ESP_AsyncFSBrowser.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/examples/ESP_AsyncFSBrowser/ESP_AsyncFSBrowser.ino -------------------------------------------------------------------------------- /lib/ESP Async WebServer/examples/ESP_AsyncFSBrowser/data/.exclude.files: -------------------------------------------------------------------------------- 1 | /*.js.gz 2 | /.exclude.files 3 | -------------------------------------------------------------------------------- /lib/ESP Async WebServer/examples/ESP_AsyncFSBrowser/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/examples/ESP_AsyncFSBrowser/data/favicon.ico -------------------------------------------------------------------------------- /lib/ESP Async WebServer/examples/ESP_AsyncFSBrowser/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/examples/ESP_AsyncFSBrowser/data/index.htm -------------------------------------------------------------------------------- /lib/ESP Async WebServer/examples/regex_patterns/regex_patterns.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/examples/regex_patterns/regex_patterns.ino -------------------------------------------------------------------------------- /lib/ESP Async WebServer/examples/simple_server/simple_server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/examples/simple_server/simple_server.ino -------------------------------------------------------------------------------- /lib/ESP Async WebServer/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/keywords.txt -------------------------------------------------------------------------------- /lib/ESP Async WebServer/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/library.json -------------------------------------------------------------------------------- /lib/ESP Async WebServer/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/library.properties -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/AsyncEventSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/AsyncEventSource.cpp -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/AsyncEventSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/AsyncEventSource.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/AsyncJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/AsyncJson.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/AsyncWebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/AsyncWebSocket.cpp -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/AsyncWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/AsyncWebSocket.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/AsyncWebSynchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/AsyncWebSynchronization.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/ESPAsyncWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/ESPAsyncWebServer.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/SPIFFSEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/SPIFFSEditor.cpp -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/SPIFFSEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/SPIFFSEditor.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/StringArray.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/WebAuthentication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/WebAuthentication.cpp -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/WebAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/WebAuthentication.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/WebHandlerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/WebHandlerImpl.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/WebHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/WebHandlers.cpp -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/WebRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/WebRequest.cpp -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/WebResponseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/WebResponseImpl.h -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/WebResponses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/WebResponses.cpp -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/WebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/WebServer.cpp -------------------------------------------------------------------------------- /lib/ESP Async WebServer/src/edit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ESP Async WebServer/src/edit.htm -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/.github_changelog_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/.github_changelog_generator -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/.gitignore -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/.ruby-gemset: -------------------------------------------------------------------------------- 1 | global 2 | -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/.travis.yml -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/CHANGELOG.md -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/Gemfile -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/Gemfile.lock -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/LICENSE -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/Makefile -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/README.md -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/Rakefile -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/STYLE.md -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/examples/Basic/Basic.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/examples/Basic/Basic.pde -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/examples/PhoenixContact_nanoLC/PhoenixContact_nanoLC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/examples/PhoenixContact_nanoLC/PhoenixContact_nanoLC.pde -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/examples/RS485_HalfDuplex/RS485_HalfDuplex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/examples/RS485_HalfDuplex/RS485_HalfDuplex.ino -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/extras/ModbusMaster reference-2.0.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/extras/ModbusMaster reference-2.0.0.pdf -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/extras/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/extras/README.txt -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/keywords.txt -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/library.properties -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/src/ModbusMaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/src/ModbusMaster.cpp -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/src/ModbusMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/src/ModbusMaster.h -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/src/util/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/src/util/crc16.h -------------------------------------------------------------------------------- /lib/ModbusMaster-2.0.0/src/util/word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/lib/ModbusMaster-2.0.0/src/util/word.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/platformio.ini -------------------------------------------------------------------------------- /schematic/T-RSC3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/schematic/T-RSC3.pdf -------------------------------------------------------------------------------- /schematic/T-RSS3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-RSC3/HEAD/schematic/T-RSS3.pdf --------------------------------------------------------------------------------