├── CNAME ├── FAQ.md ├── README.md ├── _config.yml ├── documentation ├── Large Details Card │ ├── 1.png │ └── 2.png ├── Small Details Card │ ├── 1.png │ └── 2.png └── tindieListing.md ├── examples ├── Basics │ ├── ColourTest │ │ └── ColourTest.ino │ ├── HelloWorld │ │ └── HelloWorld.ino │ └── PanelChecker │ │ └── PanelChecker.ino ├── BoardTest │ ├── BoardTest.ino │ ├── FPS.h │ └── pallet.h ├── BuildingBlocks │ ├── Images │ │ ├── DisplayGIF │ │ │ ├── DisplayGIF.ino │ │ │ ├── ThisIsFine.h │ │ │ ├── cat.h │ │ │ ├── fire.h │ │ │ └── homer_tiny.h │ │ └── DisplayImageFromWeb │ │ │ ├── DisplayImageFromWeb.ino │ │ │ └── WebRequest.h │ ├── Shapes │ │ └── BouncingSquares │ │ │ └── BouncingSquares.ino │ └── Text │ │ ├── CenterText │ │ └── CenterText.ino │ │ └── ScrollingText │ │ └── ScrollingText.ino ├── Projects │ ├── BluetoothSpeakerSpectrumDisplay │ │ └── BluetoothSpeakerSpectrumDisplay.ino │ ├── FallingSand │ │ ├── FPS.h │ │ ├── FallingSand.ino │ │ └── pallet.h │ ├── MovingEyes │ │ ├── DrawMovingEyes │ │ │ └── DrawMovingEyes.ino │ │ └── ESPCamMotionDetection │ │ │ ├── ESPCamMotionDetection.ino │ │ │ └── camera_pins.h │ ├── SnakeWithNunchuck │ │ └── SnakeWithNunchuck.ino │ ├── TetrisWithNunchuck │ │ └── TetrisWithNunchuck.ino │ ├── TrafficLight │ │ └── TrafficLight.ino │ ├── WifiTetrisClock │ │ └── WifiTetrisClock.ino │ ├── WifiTetrisClockWifiManager │ │ └── WifiTetrisClockWifiManager.ino │ └── YouTubeLivestreamDraw │ │ └── YouTubeLivestreamDraw.ino ├── README.md └── TrinityFeatures │ ├── LDRAutoBrightness │ └── LDRAutoBrightness.ino │ ├── SDCardTest │ └── SDCardTest.ino │ └── TouchPointTest │ └── TouchPointTest.ino ├── hardware ├── Add-Ons │ ├── Add-on-Breakout │ │ ├── BOM_Trinity Add-On-Breakout_2021-09-19.csv │ │ ├── Gerber_PCB_Trinity Add-On-Breakout_2021-09-19.zip │ │ ├── Schematic_Trinity Add-On-Breakout_2021-09-19.pdf │ │ └── Schematic_Trinity Add-On-Breakout_2021-09-19.png │ ├── Matrix Logic Level Shifter │ │ ├── README.md │ │ └── V1.0 │ │ │ ├── BOM_Hub75-Level-shifter_2024-02-03.csv │ │ │ ├── Gerber_Hub75-Level-shifter_PCB_LEvel-Shift_2_2024-02-03.zip │ │ │ ├── PickAndPlace_PCB_LEvel-Shift_2_2024-02-03.csv │ │ │ ├── Schematic_Hub75-Level-shifter_2024-02-03.pdf │ │ │ └── Schematic_Hub75-Level-shifter_2024-02-03.png │ ├── MicroSd-board │ │ ├── BOM_PCB_SD Card GY521_2021-07-08.csv │ │ ├── Gerber_PCB_SD Card GY521_2021-07-08.zip │ │ ├── Schematic_SD Card GY521_2021-09-19.pdf │ │ └── Schematic_SD Card GY521_2021-09-19.png │ └── Nunchuck-board │ │ ├── BOM_Nunchuck-MPU6050_2021-09-19.csv │ │ ├── Nunchuck-MPU6050_2021-09-19.pdf │ │ ├── Schematic_Nunchuck-MPU6050_2021-09-19.png │ │ └── Trinity_Nunchuck_PCB_V2.zip ├── ESP32Trinity │ ├── V1.2 │ │ ├── BOM_ESP32_TRINITY_V1_2_2021-07-05.csv │ │ ├── ESP32_Trinity_IBom_1_2.htm │ │ ├── EasyEDA_Project_Backup-ESP32-Trinity.zip │ │ ├── Gerber_PCB_ESP32_TRINITY_V1_2_2021-02-08_22-58-49-RoyaltyFree.zip │ │ ├── Gerber_PCB_ESP32_TRINITY_V1_2_2021-02-08_22-58-49.zip │ │ ├── Schematic_ESP32-Trinity_2021-08-27.pdf │ │ ├── Schematic_ESP32-Trinity_2021-08-27.png │ │ ├── Trinity Bom V1.2 - BOM_ESP32_TRINITY_V1_2_2021-07-05.csv │ │ ├── Trinity_V1_2_PNP_2021-08-06.csv │ │ └── Trinity_V1_2_PNP_MIRROR_2021-08-06.csv │ └── V2.0 - Unreleased 4 layer version │ │ ├── BOM_ESP32-Trinity_2024-02-03.csv │ │ ├── Gerber_ESP32-Trinity_V2-TRinity-4-Layer-Before-Moving-UART_2024-02-03.zip │ │ ├── PickAndPlace_V2-TRinity-4-Layer-Before-Moving-UART_2024-02-03.csv │ │ ├── README.md │ │ ├── Schematic_ESP32-Trinity_2024-02-03.pdf │ │ └── Schematic_ESP32-Trinity_2024-02-03.png └── README.md ├── images ├── IMG_20210925_105910.jpg ├── IMG_20210925_105923.jpg ├── IMG_20210925_110000.jpg ├── IMG_20210925_110022.jpg ├── IMG_20210925_110224.jpg ├── IMG_20210925_110518.jpg ├── IMG_20210925_112144_fixed.jpg ├── P1000168.jpg ├── TrinityTopComptressed.jpg ├── instructions │ ├── ForBobToCut.jpg │ ├── ForBobToSolder.jpg │ ├── matrixArrow.jpg │ ├── screwTerminals.jpg │ └── usbDiodeBypasss.jpg └── trinity-2d.png ├── license.md ├── setup.md ├── userProjects.md └── webFlash.md /CNAME: -------------------------------------------------------------------------------- 1 | esp32trinity.com -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/FAQ.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/_config.yml -------------------------------------------------------------------------------- /documentation/Large Details Card/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/documentation/Large Details Card/1.png -------------------------------------------------------------------------------- /documentation/Large Details Card/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/documentation/Large Details Card/2.png -------------------------------------------------------------------------------- /documentation/Small Details Card/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/documentation/Small Details Card/1.png -------------------------------------------------------------------------------- /documentation/Small Details Card/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/documentation/Small Details Card/2.png -------------------------------------------------------------------------------- /documentation/tindieListing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/documentation/tindieListing.md -------------------------------------------------------------------------------- /examples/Basics/ColourTest/ColourTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Basics/ColourTest/ColourTest.ino -------------------------------------------------------------------------------- /examples/Basics/HelloWorld/HelloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Basics/HelloWorld/HelloWorld.ino -------------------------------------------------------------------------------- /examples/Basics/PanelChecker/PanelChecker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Basics/PanelChecker/PanelChecker.ino -------------------------------------------------------------------------------- /examples/BoardTest/BoardTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BoardTest/BoardTest.ino -------------------------------------------------------------------------------- /examples/BoardTest/FPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BoardTest/FPS.h -------------------------------------------------------------------------------- /examples/BoardTest/pallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BoardTest/pallet.h -------------------------------------------------------------------------------- /examples/BuildingBlocks/Images/DisplayGIF/DisplayGIF.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Images/DisplayGIF/DisplayGIF.ino -------------------------------------------------------------------------------- /examples/BuildingBlocks/Images/DisplayGIF/ThisIsFine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Images/DisplayGIF/ThisIsFine.h -------------------------------------------------------------------------------- /examples/BuildingBlocks/Images/DisplayGIF/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Images/DisplayGIF/cat.h -------------------------------------------------------------------------------- /examples/BuildingBlocks/Images/DisplayGIF/fire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Images/DisplayGIF/fire.h -------------------------------------------------------------------------------- /examples/BuildingBlocks/Images/DisplayGIF/homer_tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Images/DisplayGIF/homer_tiny.h -------------------------------------------------------------------------------- /examples/BuildingBlocks/Images/DisplayImageFromWeb/DisplayImageFromWeb.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Images/DisplayImageFromWeb/DisplayImageFromWeb.ino -------------------------------------------------------------------------------- /examples/BuildingBlocks/Images/DisplayImageFromWeb/WebRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Images/DisplayImageFromWeb/WebRequest.h -------------------------------------------------------------------------------- /examples/BuildingBlocks/Shapes/BouncingSquares/BouncingSquares.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Shapes/BouncingSquares/BouncingSquares.ino -------------------------------------------------------------------------------- /examples/BuildingBlocks/Text/CenterText/CenterText.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Text/CenterText/CenterText.ino -------------------------------------------------------------------------------- /examples/BuildingBlocks/Text/ScrollingText/ScrollingText.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/BuildingBlocks/Text/ScrollingText/ScrollingText.ino -------------------------------------------------------------------------------- /examples/Projects/BluetoothSpeakerSpectrumDisplay/BluetoothSpeakerSpectrumDisplay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/BluetoothSpeakerSpectrumDisplay/BluetoothSpeakerSpectrumDisplay.ino -------------------------------------------------------------------------------- /examples/Projects/FallingSand/FPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/FallingSand/FPS.h -------------------------------------------------------------------------------- /examples/Projects/FallingSand/FallingSand.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/FallingSand/FallingSand.ino -------------------------------------------------------------------------------- /examples/Projects/FallingSand/pallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/FallingSand/pallet.h -------------------------------------------------------------------------------- /examples/Projects/MovingEyes/DrawMovingEyes/DrawMovingEyes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/MovingEyes/DrawMovingEyes/DrawMovingEyes.ino -------------------------------------------------------------------------------- /examples/Projects/MovingEyes/ESPCamMotionDetection/ESPCamMotionDetection.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/MovingEyes/ESPCamMotionDetection/ESPCamMotionDetection.ino -------------------------------------------------------------------------------- /examples/Projects/MovingEyes/ESPCamMotionDetection/camera_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/MovingEyes/ESPCamMotionDetection/camera_pins.h -------------------------------------------------------------------------------- /examples/Projects/SnakeWithNunchuck/SnakeWithNunchuck.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/SnakeWithNunchuck/SnakeWithNunchuck.ino -------------------------------------------------------------------------------- /examples/Projects/TetrisWithNunchuck/TetrisWithNunchuck.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/TetrisWithNunchuck/TetrisWithNunchuck.ino -------------------------------------------------------------------------------- /examples/Projects/TrafficLight/TrafficLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/TrafficLight/TrafficLight.ino -------------------------------------------------------------------------------- /examples/Projects/WifiTetrisClock/WifiTetrisClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/WifiTetrisClock/WifiTetrisClock.ino -------------------------------------------------------------------------------- /examples/Projects/WifiTetrisClockWifiManager/WifiTetrisClockWifiManager.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/WifiTetrisClockWifiManager/WifiTetrisClockWifiManager.ino -------------------------------------------------------------------------------- /examples/Projects/YouTubeLivestreamDraw/YouTubeLivestreamDraw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/Projects/YouTubeLivestreamDraw/YouTubeLivestreamDraw.ino -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/TrinityFeatures/LDRAutoBrightness/LDRAutoBrightness.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/TrinityFeatures/LDRAutoBrightness/LDRAutoBrightness.ino -------------------------------------------------------------------------------- /examples/TrinityFeatures/SDCardTest/SDCardTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/TrinityFeatures/SDCardTest/SDCardTest.ino -------------------------------------------------------------------------------- /examples/TrinityFeatures/TouchPointTest/TouchPointTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/examples/TrinityFeatures/TouchPointTest/TouchPointTest.ino -------------------------------------------------------------------------------- /hardware/Add-Ons/Add-on-Breakout/BOM_Trinity Add-On-Breakout_2021-09-19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Add-on-Breakout/BOM_Trinity Add-On-Breakout_2021-09-19.csv -------------------------------------------------------------------------------- /hardware/Add-Ons/Add-on-Breakout/Gerber_PCB_Trinity Add-On-Breakout_2021-09-19.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Add-on-Breakout/Gerber_PCB_Trinity Add-On-Breakout_2021-09-19.zip -------------------------------------------------------------------------------- /hardware/Add-Ons/Add-on-Breakout/Schematic_Trinity Add-On-Breakout_2021-09-19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Add-on-Breakout/Schematic_Trinity Add-On-Breakout_2021-09-19.pdf -------------------------------------------------------------------------------- /hardware/Add-Ons/Add-on-Breakout/Schematic_Trinity Add-On-Breakout_2021-09-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Add-on-Breakout/Schematic_Trinity Add-On-Breakout_2021-09-19.png -------------------------------------------------------------------------------- /hardware/Add-Ons/Matrix Logic Level Shifter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Matrix Logic Level Shifter/README.md -------------------------------------------------------------------------------- /hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/BOM_Hub75-Level-shifter_2024-02-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/BOM_Hub75-Level-shifter_2024-02-03.csv -------------------------------------------------------------------------------- /hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/Gerber_Hub75-Level-shifter_PCB_LEvel-Shift_2_2024-02-03.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/Gerber_Hub75-Level-shifter_PCB_LEvel-Shift_2_2024-02-03.zip -------------------------------------------------------------------------------- /hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/PickAndPlace_PCB_LEvel-Shift_2_2024-02-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/PickAndPlace_PCB_LEvel-Shift_2_2024-02-03.csv -------------------------------------------------------------------------------- /hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/Schematic_Hub75-Level-shifter_2024-02-03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/Schematic_Hub75-Level-shifter_2024-02-03.pdf -------------------------------------------------------------------------------- /hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/Schematic_Hub75-Level-shifter_2024-02-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Matrix Logic Level Shifter/V1.0/Schematic_Hub75-Level-shifter_2024-02-03.png -------------------------------------------------------------------------------- /hardware/Add-Ons/MicroSd-board/BOM_PCB_SD Card GY521_2021-07-08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/MicroSd-board/BOM_PCB_SD Card GY521_2021-07-08.csv -------------------------------------------------------------------------------- /hardware/Add-Ons/MicroSd-board/Gerber_PCB_SD Card GY521_2021-07-08.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/MicroSd-board/Gerber_PCB_SD Card GY521_2021-07-08.zip -------------------------------------------------------------------------------- /hardware/Add-Ons/MicroSd-board/Schematic_SD Card GY521_2021-09-19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/MicroSd-board/Schematic_SD Card GY521_2021-09-19.pdf -------------------------------------------------------------------------------- /hardware/Add-Ons/MicroSd-board/Schematic_SD Card GY521_2021-09-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/MicroSd-board/Schematic_SD Card GY521_2021-09-19.png -------------------------------------------------------------------------------- /hardware/Add-Ons/Nunchuck-board/BOM_Nunchuck-MPU6050_2021-09-19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Nunchuck-board/BOM_Nunchuck-MPU6050_2021-09-19.csv -------------------------------------------------------------------------------- /hardware/Add-Ons/Nunchuck-board/Nunchuck-MPU6050_2021-09-19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Nunchuck-board/Nunchuck-MPU6050_2021-09-19.pdf -------------------------------------------------------------------------------- /hardware/Add-Ons/Nunchuck-board/Schematic_Nunchuck-MPU6050_2021-09-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Nunchuck-board/Schematic_Nunchuck-MPU6050_2021-09-19.png -------------------------------------------------------------------------------- /hardware/Add-Ons/Nunchuck-board/Trinity_Nunchuck_PCB_V2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/Add-Ons/Nunchuck-board/Trinity_Nunchuck_PCB_V2.zip -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/BOM_ESP32_TRINITY_V1_2_2021-07-05.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V1.2/BOM_ESP32_TRINITY_V1_2_2021-07-05.csv -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/ESP32_Trinity_IBom_1_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V1.2/ESP32_Trinity_IBom_1_2.htm -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/EasyEDA_Project_Backup-ESP32-Trinity.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V1.2/EasyEDA_Project_Backup-ESP32-Trinity.zip -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/Gerber_PCB_ESP32_TRINITY_V1_2_2021-02-08_22-58-49-RoyaltyFree.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/Gerber_PCB_ESP32_TRINITY_V1_2_2021-02-08_22-58-49.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V1.2/Gerber_PCB_ESP32_TRINITY_V1_2_2021-02-08_22-58-49.zip -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/Schematic_ESP32-Trinity_2021-08-27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V1.2/Schematic_ESP32-Trinity_2021-08-27.pdf -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/Schematic_ESP32-Trinity_2021-08-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V1.2/Schematic_ESP32-Trinity_2021-08-27.png -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/Trinity Bom V1.2 - BOM_ESP32_TRINITY_V1_2_2021-07-05.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V1.2/Trinity Bom V1.2 - BOM_ESP32_TRINITY_V1_2_2021-07-05.csv -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/Trinity_V1_2_PNP_2021-08-06.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V1.2/Trinity_V1_2_PNP_2021-08-06.csv -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V1.2/Trinity_V1_2_PNP_MIRROR_2021-08-06.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V1.2/Trinity_V1_2_PNP_MIRROR_2021-08-06.csv -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/BOM_ESP32-Trinity_2024-02-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/BOM_ESP32-Trinity_2024-02-03.csv -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/Gerber_ESP32-Trinity_V2-TRinity-4-Layer-Before-Moving-UART_2024-02-03.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/Gerber_ESP32-Trinity_V2-TRinity-4-Layer-Before-Moving-UART_2024-02-03.zip -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/PickAndPlace_V2-TRinity-4-Layer-Before-Moving-UART_2024-02-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/PickAndPlace_V2-TRinity-4-Layer-Before-Moving-UART_2024-02-03.csv -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/README.md -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/Schematic_ESP32-Trinity_2024-02-03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/Schematic_ESP32-Trinity_2024-02-03.pdf -------------------------------------------------------------------------------- /hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/Schematic_ESP32-Trinity_2024-02-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/ESP32Trinity/V2.0 - Unreleased 4 layer version/Schematic_ESP32-Trinity_2024-02-03.png -------------------------------------------------------------------------------- /hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/hardware/README.md -------------------------------------------------------------------------------- /images/IMG_20210925_105910.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/IMG_20210925_105910.jpg -------------------------------------------------------------------------------- /images/IMG_20210925_105923.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/IMG_20210925_105923.jpg -------------------------------------------------------------------------------- /images/IMG_20210925_110000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/IMG_20210925_110000.jpg -------------------------------------------------------------------------------- /images/IMG_20210925_110022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/IMG_20210925_110022.jpg -------------------------------------------------------------------------------- /images/IMG_20210925_110224.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/IMG_20210925_110224.jpg -------------------------------------------------------------------------------- /images/IMG_20210925_110518.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/IMG_20210925_110518.jpg -------------------------------------------------------------------------------- /images/IMG_20210925_112144_fixed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/IMG_20210925_112144_fixed.jpg -------------------------------------------------------------------------------- /images/P1000168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/P1000168.jpg -------------------------------------------------------------------------------- /images/TrinityTopComptressed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/TrinityTopComptressed.jpg -------------------------------------------------------------------------------- /images/instructions/ForBobToCut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/instructions/ForBobToCut.jpg -------------------------------------------------------------------------------- /images/instructions/ForBobToSolder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/instructions/ForBobToSolder.jpg -------------------------------------------------------------------------------- /images/instructions/matrixArrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/instructions/matrixArrow.jpg -------------------------------------------------------------------------------- /images/instructions/screwTerminals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/instructions/screwTerminals.jpg -------------------------------------------------------------------------------- /images/instructions/usbDiodeBypasss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/instructions/usbDiodeBypasss.jpg -------------------------------------------------------------------------------- /images/trinity-2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/images/trinity-2d.png -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/license.md -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/setup.md -------------------------------------------------------------------------------- /userProjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/userProjects.md -------------------------------------------------------------------------------- /webFlash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witnessmenow/ESP32-Trinity/HEAD/webFlash.md --------------------------------------------------------------------------------