├── .gitignore ├── InstallGuide ├── debian_ubuntu.md ├── fedora.md ├── mac.md ├── opensuse.md ├── win-screenshots │ ├── arduino-ide.png │ ├── esp32-1.png │ ├── git-pull.png │ ├── location.png │ ├── win-gui-5.png │ ├── win-gui-6.png │ └── win_gui_9.png └── windows.md ├── LICENSE ├── README.md ├── boards.txt ├── cores └── esp32 │ ├── Arduino.h │ ├── Client.h │ ├── Esp.cpp │ ├── Esp.h │ ├── FirmwareMSC.cpp │ ├── FirmwareMSC.h │ ├── FunctionalInterrupt.cpp │ ├── FunctionalInterrupt.h │ ├── HEXBuilder.cpp │ ├── HEXBuilder.h │ ├── HWCDC.cpp │ ├── HWCDC.h │ ├── HardwareI2C.h │ ├── HardwareSerial.cpp │ ├── HardwareSerial.h │ ├── HashBuilder.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── MD5Builder.cpp │ ├── MD5Builder.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── SHA1Builder.cpp │ ├── SHA1Builder.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── StreamString.cpp │ ├── StreamString.h │ ├── Tone.cpp │ ├── USB.cpp │ ├── USB.h │ ├── USBCDC.cpp │ ├── USBCDC.h │ ├── USBMSC.cpp │ ├── USBMSC.h │ ├── Udp.h │ ├── WCharacter.h │ ├── WMath.cpp │ ├── WString.cpp │ ├── WString.h │ ├── apps │ └── sntp │ │ └── sntp.h │ ├── base64.cpp │ ├── base64.h │ ├── binary.h │ ├── cbuf.cpp │ ├── cbuf.h │ ├── chip-debug-report.cpp │ ├── chip-debug-report.h │ ├── esp32-hal-adc.c │ ├── esp32-hal-adc.h │ ├── esp32-hal-bt.c │ ├── esp32-hal-bt.h │ ├── esp32-hal-cpu.c │ ├── esp32-hal-cpu.h │ ├── esp32-hal-dac.c │ ├── esp32-hal-dac.h │ ├── esp32-hal-gpio.c │ ├── esp32-hal-gpio.h │ ├── esp32-hal-i2c-slave.c │ ├── esp32-hal-i2c-slave.h │ ├── esp32-hal-i2c.c │ ├── esp32-hal-i2c.h │ ├── esp32-hal-ledc.c │ ├── esp32-hal-ledc.h │ ├── esp32-hal-log.h │ ├── esp32-hal-matrix.c │ ├── esp32-hal-matrix.h │ ├── esp32-hal-misc.c │ ├── esp32-hal-periman.c │ ├── esp32-hal-periman.h │ ├── esp32-hal-psram.c │ ├── esp32-hal-psram.h │ ├── esp32-hal-rgb-led.c │ ├── esp32-hal-rgb-led.h │ ├── esp32-hal-rmt.c │ ├── esp32-hal-rmt.h │ ├── esp32-hal-sigmadelta.c │ ├── esp32-hal-sigmadelta.h │ ├── esp32-hal-spi.c │ ├── esp32-hal-spi.h │ ├── esp32-hal-time.c │ ├── esp32-hal-timer.c │ ├── esp32-hal-timer.h │ ├── esp32-hal-tinyusb.c │ ├── esp32-hal-tinyusb.h │ ├── esp32-hal-touch.c │ ├── esp32-hal-touch.h │ ├── esp32-hal-uart.c │ ├── esp32-hal-uart.h │ ├── esp32-hal.h │ ├── esp8266-compat.h │ ├── esp_arduino_version.h │ ├── extra_attr.h │ ├── firmware_msc_fat.c │ ├── firmware_msc_fat.h │ ├── io_pin_remap.h │ ├── libb64 │ ├── AUTHORS │ ├── LICENSE │ ├── cdecode.c │ ├── cdecode.h │ ├── cencode.c │ └── cencode.h │ ├── main.cpp │ ├── pgmspace.h │ ├── stdlib_noniso.c │ ├── stdlib_noniso.h │ ├── wiring_private.h │ ├── wiring_pulse.c │ └── wiring_shift.c ├── libraries ├── ArduinoOTA │ ├── examples │ │ └── BasicOTA │ │ │ ├── .skip.esp32h2 │ │ │ └── BasicOTA.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── ArduinoOTA.cpp │ │ └── ArduinoOTA.h ├── AsyncUDP │ ├── examples │ │ ├── AsyncUDPClient │ │ │ ├── .skip.esp32h2 │ │ │ └── AsyncUDPClient.ino │ │ ├── AsyncUDPMulticastServer │ │ │ ├── .skip.esp32h2 │ │ │ └── AsyncUDPMulticastServer.ino │ │ └── AsyncUDPServer │ │ │ ├── .skip.esp32h2 │ │ │ └── AsyncUDPServer.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── AsyncUDP.cpp │ │ └── AsyncUDP.h ├── BLE │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── BLE5_extended_scan │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32s2 │ │ │ └── BLE5_extended_scan.ino │ │ ├── BLE5_multi_advertising │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32s2 │ │ │ └── BLE5_multi_advertising.ino │ │ ├── BLE5_periodic_advertising │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32s2 │ │ │ └── BLE5_periodic_advertising.ino │ │ ├── BLE5_periodic_sync │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32s2 │ │ │ └── BLE5_periodic_sync.ino │ │ ├── Beacon_Scanner │ │ │ ├── .skip.esp32s2 │ │ │ ├── Beacon_Scanner.ino │ │ │ └── Beacon_Scanner.md │ │ ├── Client │ │ │ ├── .skip.esp32s2 │ │ │ └── Client.ino │ │ ├── EddystoneTLM_Beacon │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── EddystoneTLM_Beacon.ino │ │ │ └── EddystoneTLM_Beacon.md │ │ ├── EddystoneURL_Beacon │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── EddystoneURL_Beacon.ino │ │ │ └── EddystoneURL_Beacon.md │ │ ├── Notify │ │ │ ├── .skip.esp32s2 │ │ │ └── Notify.ino │ │ ├── Scan │ │ │ ├── .skip.esp32s2 │ │ │ └── Scan.ino │ │ ├── Server │ │ │ ├── .skip.esp32s2 │ │ │ └── Server.ino │ │ ├── Server_multiconnect │ │ │ ├── .skip.esp32s2 │ │ │ └── Server_multiconnect.ino │ │ ├── UART │ │ │ ├── .skip.esp32s2 │ │ │ └── UART.ino │ │ ├── Write │ │ │ ├── .skip.esp32s2 │ │ │ └── Write.ino │ │ └── iBeacon │ │ │ ├── .skip.esp32s2 │ │ │ └── iBeacon.ino │ ├── library.properties │ └── src │ │ ├── BLE2902.cpp │ │ ├── BLE2902.h │ │ ├── BLE2904.cpp │ │ ├── BLE2904.h │ │ ├── BLEAddress.cpp │ │ ├── BLEAddress.h │ │ ├── BLEAdvertisedDevice.cpp │ │ ├── BLEAdvertisedDevice.h │ │ ├── BLEAdvertising.cpp │ │ ├── BLEAdvertising.h │ │ ├── BLEBeacon.cpp │ │ ├── BLEBeacon.h │ │ ├── BLECharacteristic.cpp │ │ ├── BLECharacteristic.h │ │ ├── BLECharacteristicMap.cpp │ │ ├── BLEClient.cpp │ │ ├── BLEClient.h │ │ ├── BLEDescriptor.cpp │ │ ├── BLEDescriptor.h │ │ ├── BLEDescriptorMap.cpp │ │ ├── BLEDevice.cpp │ │ ├── BLEDevice.h │ │ ├── BLEEddystoneTLM.cpp │ │ ├── BLEEddystoneTLM.cppwithheadder │ │ ├── BLEEddystoneTLM.h │ │ ├── BLEEddystoneURL.cpp │ │ ├── BLEEddystoneURL.h │ │ ├── BLEEddystoneURL.h.orig │ │ ├── BLEExceptions.cpp │ │ ├── BLEExceptions.h │ │ ├── BLEHIDDevice.cpp │ │ ├── BLEHIDDevice.h │ │ ├── BLERemoteCharacteristic.cpp │ │ ├── BLERemoteCharacteristic.h │ │ ├── BLERemoteDescriptor.cpp │ │ ├── BLERemoteDescriptor.h │ │ ├── BLERemoteService.cpp │ │ ├── BLERemoteService.h │ │ ├── BLEScan.cpp │ │ ├── BLEScan.h │ │ ├── BLESecurity.cpp │ │ ├── BLESecurity.h │ │ ├── BLEServer.cpp │ │ ├── BLEServer.h │ │ ├── BLEService.cpp │ │ ├── BLEService.h │ │ ├── BLEServiceMap.cpp │ │ ├── BLEUUID.cpp │ │ ├── BLEUUID.h │ │ ├── BLEUtils.cpp │ │ ├── BLEUtils.h │ │ ├── BLEValue.cpp │ │ ├── BLEValue.h │ │ ├── FreeRTOS.cpp │ │ ├── GeneralUtils.cpp │ │ ├── GeneralUtils.h │ │ ├── HIDKeyboardTypes.h │ │ ├── HIDTypes.h │ │ └── RTOS.h ├── BluetoothSerial │ ├── README.md │ ├── examples │ │ ├── DiscoverConnect │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── DiscoverConnect.ino │ │ ├── GetLocalMAC │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── GetLocalMAC.ino │ │ ├── SerialToSerialBT │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── SerialToSerialBT.ino │ │ ├── SerialToSerialBTM │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── SerialToSerialBTM.ino │ │ ├── SerialToSerialBT_Legacy │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── SerialToSerialBT_Legacy.ino │ │ ├── SerialToSerialBT_SSP │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── SerialToSerialBT_SSP.ino │ │ ├── bt_classic_device_discovery │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── bt_classic_device_discovery.ino │ │ └── bt_remove_paired_devices │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── bt_remove_paired_devices.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── BTAddress.cpp │ │ ├── BTAddress.h │ │ ├── BTAdvertisedDevice.h │ │ ├── BTAdvertisedDeviceSet.cpp │ │ ├── BTScan.h │ │ ├── BTScanResultsSet.cpp │ │ ├── BluetoothSerial.cpp │ │ └── BluetoothSerial.h ├── DNSServer │ ├── examples │ │ └── CaptivePortal │ │ │ ├── .skip.esp32h2 │ │ │ └── CaptivePortal.ino │ ├── library.properties │ └── src │ │ ├── DNSServer.cpp │ │ └── DNSServer.h ├── EEPROM │ ├── README.md │ ├── examples │ │ ├── eeprom_class │ │ │ └── eeprom_class.ino │ │ ├── eeprom_extra │ │ │ └── eeprom_extra.ino │ │ └── eeprom_write │ │ │ └── eeprom_write.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── EEPROM.cpp │ │ └── EEPROM.h ├── ESP32 │ ├── examples │ │ ├── AnalogOut │ │ │ ├── LEDCFade │ │ │ │ └── LEDCFade.ino │ │ │ ├── LEDCSoftwareFade │ │ │ │ └── LEDCSoftwareFade.ino │ │ │ ├── SigmaDelta │ │ │ │ └── SigmaDelta.ino │ │ │ ├── ledcFrequency │ │ │ │ └── ledcFrequency.ino │ │ │ └── ledcWrite_RGB │ │ │ │ └── ledcWrite_RGB.ino │ │ ├── AnalogRead │ │ │ └── AnalogRead.ino │ │ ├── AnalogReadContinuous │ │ │ └── AnalogReadContinuous.ino │ │ ├── ArduinoStackSize │ │ │ └── ArduinoStackSize.ino │ │ ├── CI │ │ │ └── CIBoardsTest │ │ │ │ └── CIBoardsTest.ino │ │ ├── Camera │ │ │ └── CameraWebServer │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ ├── CameraWebServer.ino │ │ │ │ ├── app_httpd.cpp │ │ │ │ ├── camera_index.h │ │ │ │ └── camera_pins.h │ │ ├── ChipID │ │ │ └── GetChipID │ │ │ │ └── GetChipID.ino │ │ ├── DeepSleep │ │ │ ├── ExternalWakeUp │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── ExternalWakeUp.ino │ │ │ ├── SmoothBlink_ULP_Code │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ ├── .skip.esp32s2 │ │ │ │ ├── .skip.esp32s3 │ │ │ │ └── SmoothBlink_ULP_Code.ino │ │ │ ├── TimerWakeUp │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── TimerWakeUp.ino │ │ │ └── TouchWakeUp │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── TouchWakeUp.ino │ │ ├── ESPNow │ │ │ ├── ESPNow_Basic_Master │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── ESPNow_Basic_Master.ino │ │ │ ├── ESPNow_Basic_Slave │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── ESPNow_Basic_Slave.ino │ │ │ ├── ESPNow_MultiSlave_Master │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── ESPNow_MultiSlave_Master.ino │ │ │ └── ESPNow_MultiSlave_Slave │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── ESPNow_MultiSlave_Slave.ino │ │ ├── FreeRTOS │ │ │ ├── BasicMultiThreading │ │ │ │ ├── BasicMultiThreading.ino │ │ │ │ └── README.md │ │ │ ├── Mutex │ │ │ │ ├── Mutex.ino │ │ │ │ └── README.md │ │ │ ├── Queue │ │ │ │ ├── Queue.ino │ │ │ │ └── README.md │ │ │ └── Semaphore │ │ │ │ ├── README.md │ │ │ │ └── Semaphore.ino │ │ ├── GPIO │ │ │ ├── BlinkRGB │ │ │ │ └── BlinkRGB.ino │ │ │ ├── FunctionalInterrupt │ │ │ │ └── FunctionalInterrupt.ino │ │ │ ├── FunctionalInterruptStruct │ │ │ │ └── FunctionalInterruptStruct.ino │ │ │ └── GPIOInterrupt │ │ │ │ └── GPIOInterrupt.ino │ │ ├── HWSerial_Events │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32s2 │ │ │ └── HWSerial_Events.ino │ │ ├── MacAddress │ │ │ └── GetMacAddress │ │ │ │ └── GetMacAddress.ino │ │ ├── RMT │ │ │ ├── RMTCallback │ │ │ │ └── RMTCallback.ino │ │ │ ├── RMTLoopback │ │ │ │ └── RMTLoopback.ino │ │ │ ├── RMTReadXJT │ │ │ │ └── RMTReadXJT.ino │ │ │ ├── RMTWriteNeoPixel │ │ │ │ └── RMTWriteNeoPixel.ino │ │ │ ├── RMT_CPUFreq_Test │ │ │ │ └── RMT_CPUFreq_Test.ino │ │ │ ├── RMT_EndOfTransmissionState │ │ │ │ └── RMT_EndOfTransmissionState.ino │ │ │ └── RMT_LED_Blink │ │ │ │ └── RMT_LED_Blink.ino │ │ ├── ResetReason │ │ │ ├── ResetReason │ │ │ │ └── ResetReason.ino │ │ │ └── ResetReason2 │ │ │ │ └── ResetReason2.ino │ │ ├── Serial │ │ │ ├── BaudRateDetect_Demo │ │ │ │ └── BaudRateDetect_Demo.ino │ │ │ ├── OnReceiveError_BREAK_Demo │ │ │ │ └── OnReceiveError_BREAK_Demo.ino │ │ │ ├── OnReceive_Demo │ │ │ │ └── OnReceive_Demo.ino │ │ │ ├── RS485_Echo_Demo │ │ │ │ └── RS485_Echo_Demo.ino │ │ │ ├── RxFIFOFull_Demo │ │ │ │ └── RxFIFOFull_Demo.ino │ │ │ ├── RxTimeout_Demo │ │ │ │ └── RxTimeout_Demo.ino │ │ │ ├── Serial_All_CPU_Freqs │ │ │ │ └── Serial_All_CPU_Freqs.ino │ │ │ └── Serial_STD_Func_OnReceive │ │ │ │ └── Serial_STD_Func_OnReceive.ino │ │ ├── TWAI │ │ │ ├── TWAIreceive │ │ │ │ └── TWAIreceive.ino │ │ │ └── TWAItransmit │ │ │ │ └── TWAItransmit.ino │ │ ├── Template │ │ │ └── ExampleTemplate │ │ │ │ ├── ExampleTemplate.ino │ │ │ │ └── README.md │ │ ├── Time │ │ │ └── SimpleTime │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── SimpleTime.ino │ │ ├── Timer │ │ │ ├── RepeatTimer │ │ │ │ └── RepeatTimer.ino │ │ │ └── WatchdogTimer │ │ │ │ └── WatchdogTimer.ino │ │ ├── Touch │ │ │ ├── TouchButton │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ ├── .skip.esp32s2 │ │ │ │ ├── .skip.esp32s3 │ │ │ │ └── TouchButton.ino │ │ │ ├── TouchButtonV2 │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── TouchButtonV2.ino │ │ │ ├── TouchInterrupt │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── TouchInterrupt.ino │ │ │ └── TouchRead │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── TouchRead.ino │ │ ├── Utilities │ │ │ ├── HEXBuilder │ │ │ │ └── HEXBuilder.ino │ │ │ ├── MD5Builder │ │ │ │ └── MD5Builder.ino │ │ │ └── SHA1Builder │ │ │ │ └── SHA1Builder.ino │ │ └── Zigbee │ │ │ ├── Zigbee_Light_Bulb │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ ├── README.md │ │ │ └── Zigbee_Light_Bulb.ino │ │ │ └── Zigbee_Light_Switch │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ ├── README.md │ │ │ └── Zigbee_Light_Switch.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ └── dummy.h ├── ESP_I2S │ ├── examples │ │ ├── ES8388_loopback │ │ │ ├── ES8388.cpp │ │ │ ├── ES8388.h │ │ │ └── ES8388_loopback.ino │ │ ├── Record_to_WAV │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ └── Record_to_WAV.ino │ │ └── Simple_tone │ │ │ └── Simple_tone.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── ESP_I2S.cpp │ │ ├── ESP_I2S.h │ │ └── wav_header.h ├── ESP_SR │ ├── examples │ │ └── Basic │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ └── Basic.ino │ ├── keywords.txt │ ├── library.properties │ ├── src │ │ ├── ESP_SR.cpp │ │ ├── ESP_SR.h │ │ ├── esp32-hal-sr.c │ │ └── esp32-hal-sr.h │ └── tools │ │ └── gen_sr_commands.py ├── ESPmDNS │ ├── examples │ │ ├── mDNS-SD_Extended │ │ │ ├── .skip.esp32h2 │ │ │ └── mDNS-SD_Extended.ino │ │ └── mDNS_Web_Server │ │ │ ├── .skip.esp32h2 │ │ │ └── mDNS_Web_Server.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── ESPmDNS.cpp │ │ └── ESPmDNS.h ├── Ethernet │ ├── examples │ │ ├── ETH_LAN8720 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── ETH_LAN8720.ino │ │ ├── ETH_TLK110 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ ├── .skip.esp32s3 │ │ │ └── ETH_TLK110.ino │ │ ├── ETH_W5500_Arduino_SPI │ │ │ ├── .skip.esp32h2 │ │ │ └── ETH_W5500_Arduino_SPI.ino │ │ └── ETH_W5500_IDF_SPI │ │ │ ├── .skip.esp32h2 │ │ │ └── ETH_W5500_IDF_SPI.ino │ ├── library.properties │ └── src │ │ ├── ETH.cpp │ │ └── ETH.h ├── FFat │ ├── examples │ │ ├── FFat_Test │ │ │ └── FFat_Test.ino │ │ └── FFat_time │ │ │ ├── .skip.esp32h2 │ │ │ └── FFat_time.ino │ ├── library.properties │ └── src │ │ ├── FFat.cpp │ │ └── FFat.h ├── FS │ ├── library.properties │ └── src │ │ ├── FS.cpp │ │ ├── FS.h │ │ ├── FSImpl.h │ │ ├── vfs_api.cpp │ │ └── vfs_api.h ├── HTTPClient │ ├── examples │ │ ├── Authorization │ │ │ ├── .skip.esp32h2 │ │ │ └── Authorization.ino │ │ ├── BasicHttpClient │ │ │ ├── .skip.esp32h2 │ │ │ └── BasicHttpClient.ino │ │ ├── BasicHttpsClient │ │ │ ├── .skip.esp32h2 │ │ │ └── BasicHttpsClient.ino │ │ ├── HTTPClientEnterprise │ │ │ ├── .skip.esp32h2 │ │ │ └── HTTPClientEnterprise.ino │ │ ├── ReuseConnection │ │ │ ├── .skip.esp32h2 │ │ │ └── ReuseConnection.ino │ │ └── StreamHttpClient │ │ │ ├── .skip.esp32h2 │ │ │ └── StreamHttpClient.ino │ ├── library.properties │ └── src │ │ ├── HTTPClient.cpp │ │ └── HTTPClient.h ├── HTTPUpdate │ ├── examples │ │ ├── httpUpdate │ │ │ ├── .skip.esp32h2 │ │ │ └── httpUpdate.ino │ │ ├── httpUpdateSPIFFS │ │ │ ├── .skip.esp32h2 │ │ │ └── httpUpdateSPIFFS.ino │ │ └── httpUpdateSecure │ │ │ ├── .skip.esp32h2 │ │ │ └── httpUpdateSecure.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── HTTPUpdate.cpp │ │ └── HTTPUpdate.h ├── HTTPUpdateServer │ ├── examples │ │ └── WebUpdater │ │ │ ├── .skip.esp32h2 │ │ │ └── WebUpdater.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ └── HTTPUpdateServer.h ├── Insights │ ├── examples │ │ ├── DiagnosticsSmokeTest │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── DiagnosticsSmokeTest.ino │ │ │ └── README.md │ │ └── MinimalDiagnostics │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── MinimalDiagnostics.ino │ │ │ └── README.md │ ├── library.properties │ └── src │ │ ├── Insights.cpp │ │ └── Insights.h ├── LittleFS │ ├── examples │ │ ├── LITTLEFS_PlatformIO │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── data │ │ │ │ ├── file1.txt │ │ │ │ └── testfolder │ │ │ │ │ └── test2.txt │ │ │ ├── include │ │ │ │ └── .placeholder.txt │ │ │ ├── lib │ │ │ │ └── .placeholder.txt │ │ │ ├── partitions_custom.csv │ │ │ ├── platformio.ini │ │ │ └── src │ │ │ │ └── main.cpp │ │ ├── LITTLEFS_test │ │ │ ├── LITTLEFS_test.ino │ │ │ └── partitions.csv │ │ └── LITTLEFS_time │ │ │ ├── .skip.esp32h2 │ │ │ └── LITTLEFS_time.ino │ ├── library.properties │ └── src │ │ ├── LittleFS.cpp │ │ └── LittleFS.h ├── NetBIOS │ ├── examples │ │ └── ESP_NBNST │ │ │ ├── .skip.esp32h2 │ │ │ └── ESP_NBNST.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── NetBIOS.cpp │ │ └── NetBIOS.h ├── Preferences │ ├── examples │ │ ├── Prefs2Struct │ │ │ └── Prefs2Struct.ino │ │ └── StartCounter │ │ │ └── StartCounter.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Preferences.cpp │ │ └── Preferences.h ├── README.md ├── RainMaker │ ├── README.md │ ├── examples │ │ ├── README.md │ │ ├── RMakerCustom │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── RMakerCustom.ino │ │ ├── RMakerCustomAirCooler │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── RMakerCustomAirCooler.ino │ │ ├── RMakerSonoffDualR3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── RMakerSonoffDualR3.ino │ │ └── RMakerSwitch │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── RMakerSwitch.ino │ ├── library.properties │ └── src │ │ ├── AppInsights.cpp │ │ ├── AppInsights.h │ │ ├── RMaker.cpp │ │ ├── RMaker.h │ │ ├── RMakerDevice.cpp │ │ ├── RMakerDevice.h │ │ ├── RMakerNode.cpp │ │ ├── RMakerNode.h │ │ ├── RMakerParam.cpp │ │ ├── RMakerParam.h │ │ ├── RMakerQR.cpp │ │ ├── RMakerQR.h │ │ ├── RMakerType.cpp │ │ ├── RMakerType.h │ │ ├── RMakerUtils.cpp │ │ └── RMakerUtils.h ├── SD │ ├── README.md │ ├── examples │ │ ├── SD_Test │ │ │ └── SD_Test.ino │ │ └── SD_time │ │ │ ├── .skip.esp32h2 │ │ │ └── SD_time.ino │ ├── library.properties │ └── src │ │ ├── halow_SD.cpp │ │ ├── halow_SD.h │ │ ├── sd_defines.h │ │ ├── sd_diskio.cpp │ │ ├── sd_diskio.h │ │ └── sd_diskio_crc.c ├── SD_MMC │ ├── README.md │ ├── examples │ │ ├── SDMMC_Test │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ └── SDMMC_Test.ino │ │ └── SDMMC_time │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ └── SDMMC_time.ino │ ├── library.properties │ └── src │ │ ├── SD_MMC.cpp │ │ ├── SD_MMC.h │ │ └── sd_defines.h ├── SPI │ ├── examples │ │ └── SPI_Multiple_Buses │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ ├── SPI_Multiple_Buses.ino │ │ │ └── multiple_bus_output.PNG │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SPI.cpp │ │ └── SPI.h ├── SPIFFS │ ├── examples │ │ ├── SPIFFS_Test │ │ │ └── SPIFFS_Test.ino │ │ └── SPIFFS_time │ │ │ ├── .skip.esp32h2 │ │ │ └── SPIFFS_time.ino │ ├── library.properties │ └── src │ │ ├── SPIFFS.cpp │ │ └── SPIFFS.h ├── SimpleBLE │ ├── examples │ │ └── SimpleBleDevice │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32s2 │ │ │ └── SimpleBleDevice.ino │ ├── library.properties │ └── src │ │ ├── SimpleBLE.cpp │ │ └── SimpleBLE.h ├── TFLiteMicro │ ├── examples │ │ ├── hello_world │ │ │ ├── README.md │ │ │ ├── constants.cpp │ │ │ ├── constants.h │ │ │ ├── hello_world.ino │ │ │ ├── model.cpp │ │ │ ├── model.h │ │ │ ├── output_handler.cpp │ │ │ └── output_handler.h │ │ └── micro_speech │ │ │ ├── README.md │ │ │ ├── audio_provider.cpp │ │ │ ├── audio_provider.h │ │ │ ├── command_responder.cpp │ │ │ ├── command_responder.h │ │ │ ├── feature_provider.cpp │ │ │ ├── feature_provider.h │ │ │ ├── micro_features_generator.cpp │ │ │ ├── micro_features_generator.h │ │ │ ├── micro_model_settings.cpp │ │ │ ├── micro_model_settings.h │ │ │ ├── micro_speech.ino │ │ │ ├── model.cpp │ │ │ ├── model.h │ │ │ ├── recognize_commands.cpp │ │ │ ├── recognize_commands.h │ │ │ ├── ringbuf.c │ │ │ └── ringbuf.h │ ├── library.properties │ └── src │ │ ├── TFLIteMicro.h │ │ └── utility.h ├── Ticker │ ├── examples │ │ ├── Blinker │ │ │ └── Blinker.ino │ │ ├── TickerBasic │ │ │ └── TickerBasic.ino │ │ └── TickerParameter │ │ │ └── TickerParameter.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Ticker.cpp │ │ └── Ticker.h ├── USB │ ├── examples │ │ ├── CompositeDevice │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── CompositeDevice.ino │ │ ├── ConsumerControl │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── ConsumerControl.ino │ │ ├── CustomHIDDevice │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── CustomHIDDevice.ino │ │ ├── FirmwareMSC │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── FirmwareMSC.ino │ │ ├── Gamepad │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── Gamepad.ino │ │ ├── HIDVendor │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── HIDVendor.ino │ │ ├── Keyboard │ │ │ ├── KeyboardLogout │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── KeyboardLogout.ino │ │ │ ├── KeyboardMessage │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── KeyboardMessage.ino │ │ │ ├── KeyboardReprogram │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── KeyboardReprogram.ino │ │ │ └── KeyboardSerial │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── KeyboardSerial.ino │ │ ├── KeyboardAndMouseControl │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── KeyboardAndMouseControl.ino │ │ ├── MIDI │ │ │ ├── MidiController │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── MidiController.ino │ │ │ ├── MidiInterface │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── MidiInterface.ino │ │ │ ├── MidiMusicBox │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── MidiMusicBox.ino │ │ │ └── ReceiveMidi │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── ReceiveMidi.ino │ │ ├── Mouse │ │ │ └── ButtonMouseControl │ │ │ │ ├── .skip.esp32 │ │ │ │ ├── .skip.esp32c3 │ │ │ │ ├── .skip.esp32c6 │ │ │ │ ├── .skip.esp32h2 │ │ │ │ └── ButtonMouseControl.ino │ │ ├── SystemControl │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── SystemControl.ino │ │ ├── USBMSC │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── USBMSC.ino │ │ ├── USBSerial │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── USBSerial.ino │ │ └── USBVendor │ │ │ ├── .skip.esp32 │ │ │ ├── .skip.esp32c3 │ │ │ ├── .skip.esp32c6 │ │ │ ├── .skip.esp32h2 │ │ │ └── USBVendor.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── USBHID.cpp │ │ ├── USBHID.h │ │ ├── USBHIDConsumerControl.cpp │ │ ├── USBHIDConsumerControl.h │ │ ├── USBHIDGamepad.cpp │ │ ├── USBHIDGamepad.h │ │ ├── USBHIDKeyboard.cpp │ │ ├── USBHIDKeyboard.h │ │ ├── USBHIDMouse.cpp │ │ ├── USBHIDMouse.h │ │ ├── USBHIDSystemControl.cpp │ │ ├── USBHIDSystemControl.h │ │ ├── USBHIDVendor.cpp │ │ ├── USBHIDVendor.h │ │ ├── USBMIDI.cpp │ │ ├── USBMIDI.h │ │ ├── USBVendor.cpp │ │ ├── USBVendor.h │ │ └── tusb_hid_mouse.h ├── Update │ ├── examples │ │ ├── AWS_S3_OTA_Update │ │ │ ├── .skip.esp32h2 │ │ │ ├── AWS_S3_OTA_Update.ino │ │ │ └── StartCounter.ino.bin │ │ ├── HTTPS_OTA_Update │ │ │ ├── .skip.esp32h2 │ │ │ ├── HTTPS_OTA_Update.ino │ │ │ └── Readme.md │ │ ├── HTTP_Client_AES_OTA_Update │ │ │ ├── .skip.esp32h2 │ │ │ ├── HTTP_Client_AES_OTA_Update.ino │ │ │ └── updater.php │ │ ├── HTTP_Server_AES_OTA_Update │ │ │ ├── .skip.esp32h2 │ │ │ └── HTTP_Server_AES_OTA_Update.ino │ │ ├── OTAWebUpdater │ │ │ ├── .skip.esp32h2 │ │ │ ├── OTAWebUpdater.ino │ │ │ └── html.h │ │ └── SD_Update │ │ │ └── SD_Update.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── HttpsOTAUpdate.cpp │ │ ├── HttpsOTAUpdate.h │ │ ├── Update.h │ │ └── Updater.cpp ├── WebServer │ ├── examples │ │ ├── AdvancedWebServer │ │ │ ├── .skip.esp32h2 │ │ │ └── AdvancedWebServer.ino │ │ ├── FSBrowser │ │ │ ├── .skip.esp32h2 │ │ │ ├── FSBrowser.ino │ │ │ └── data │ │ │ │ ├── edit.htm.gz │ │ │ │ ├── favicon.ico │ │ │ │ ├── graphs.js.gz │ │ │ │ └── index.htm │ │ ├── HelloServer │ │ │ ├── .skip.esp32h2 │ │ │ └── HelloServer.ino │ │ ├── HttpAdvancedAuth │ │ │ ├── .skip.esp32h2 │ │ │ └── HttpAdvancedAuth.ino │ │ ├── HttpAuthCallback │ │ │ ├── .skip.esp32h2 │ │ │ └── HttpAuthCallback.ino │ │ ├── HttpAuthCallbackInline │ │ │ ├── .skip.esp32h2 │ │ │ └── HttpAuthCallbackInline.ino │ │ ├── HttpBasicAuth │ │ │ ├── .skip.esp32h2 │ │ │ └── HttpBasicAuth.ino │ │ ├── HttpBasicAuthSHA1 │ │ │ ├── .skip.esp32h2 │ │ │ └── HttpBasicAuthSHA1.ino │ │ ├── HttpBasicAuthSHA1orBearerToken │ │ │ ├── .skip.esp32h2 │ │ │ └── HttpBasicAuthSHA1orBearerToken.ino │ │ ├── MultiHomedServers │ │ │ ├── .skip.esp32h2 │ │ │ ├── MultiHomedServers.ino │ │ │ └── README.md │ │ ├── PathArgServer │ │ │ ├── .skip.esp32h2 │ │ │ └── PathArgServer.ino │ │ ├── SDWebServer │ │ │ ├── .skip.esp32h2 │ │ │ ├── SDWebServer.ino │ │ │ └── SdRoot │ │ │ │ ├── edit │ │ │ │ └── index.htm │ │ │ │ ├── index.htm │ │ │ │ └── pins.png │ │ ├── SimpleAuthentification │ │ │ ├── .skip.esp32h2 │ │ │ └── SimpleAuthentification.ino │ │ ├── WebServer │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ ├── WebServer.ino │ │ │ ├── builtinfiles.h │ │ │ ├── data │ │ │ │ ├── files.htm │ │ │ │ ├── index.htm │ │ │ │ └── style.css │ │ │ └── secrets.h │ │ └── WebUpdate │ │ │ ├── .skip.esp32h2 │ │ │ └── WebUpdate.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── HTTP_Method.h │ │ ├── Parsing.cpp │ │ ├── Uri.h │ │ ├── WebServer.cpp │ │ ├── WebServer.h │ │ ├── detail │ │ ├── RequestHandler.h │ │ ├── RequestHandlersImpl.h │ │ ├── mimetable.cpp │ │ └── mimetable.h │ │ └── uri │ │ ├── UriBraces.h │ │ ├── UriGlob.h │ │ └── UriRegex.h ├── WiFi │ ├── examples │ │ ├── FTM │ │ │ ├── FTM_Initiator │ │ │ │ ├── .skip.esp32h2 │ │ │ │ ├── FTM_Initiator.ino │ │ │ │ └── README.md │ │ │ └── FTM_Responder │ │ │ │ ├── .skip.esp32h2 │ │ │ │ ├── FTM_Responder.ino │ │ │ │ └── README.md │ │ ├── SimpleWiFiServer │ │ │ ├── .skip.esp32h2 │ │ │ └── SimpleWiFiServer.ino │ │ ├── WPS │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── WPS.ino │ │ ├── WiFiAccessPoint │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiAccessPoint.ino │ │ ├── WiFiBlueToothSwitch │ │ │ ├── .skip.esp32h2 │ │ │ ├── .skip.esp32s2 │ │ │ └── WiFiBlueToothSwitch.ino │ │ ├── WiFiClient │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── WiFiClient.ino │ │ ├── WiFiClientBasic │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientBasic.ino │ │ ├── WiFiClientConnect │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── WiFiClientConnect.ino │ │ ├── WiFiClientEnterprise │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── WiFiClientEnterprise.ino │ │ ├── WiFiClientEvents │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientEvents.ino │ │ ├── WiFiClientStaticIP │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientStaticIP.ino │ │ ├── WiFiIPv6 │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiIPv6.ino │ │ ├── WiFiMulti │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiMulti.ino │ │ ├── WiFiMultiAdvanced │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiMultiAdvanced.ino │ │ ├── WiFiScan │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── WiFiScan.ino │ │ ├── WiFiScanAsync │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── WiFiScanAsync.ino │ │ ├── WiFiScanDualAntenna │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── WiFiScanDualAntenna.ino │ │ ├── WiFiSmartConfig │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiSmartConfig.ino │ │ ├── WiFiTelnetToSerial │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiTelnetToSerial.ino │ │ └── WiFiUDPClient │ │ │ ├── .skip.esp32h2 │ │ │ ├── WiFiUDPClient.ino │ │ │ ├── udp_server.py │ │ │ └── udp_server.rb │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── WiFi.cpp │ │ ├── WiFi.h │ │ ├── WiFiAP.cpp │ │ ├── WiFiAP.h │ │ ├── WiFiClient.cpp │ │ ├── WiFiClient.h │ │ ├── WiFiGeneric.cpp │ │ ├── WiFiGeneric.h │ │ ├── WiFiMulti.cpp │ │ ├── WiFiMulti.h │ │ ├── WiFiSTA.cpp │ │ ├── WiFiSTA.h │ │ ├── WiFiScan.cpp │ │ ├── WiFiScan.h │ │ ├── WiFiServer.cpp │ │ ├── WiFiServer.h │ │ ├── WiFiType.h │ │ ├── WiFiUdp.cpp │ │ └── WiFiUdp.h ├── WiFiClientSecure │ ├── README.md │ ├── examples │ │ ├── WiFiClientInsecure │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientInsecure.ino │ │ ├── WiFiClientPSK │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientPSK.ino │ │ ├── WiFiClientSecure │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientSecure.ino │ │ ├── WiFiClientSecureEnterprise │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientSecureEnterprise.ino │ │ ├── WiFiClientSecureProtocolUpgrade │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientSecureProtocolUpgrade.ino │ │ ├── WiFiClientShowPeerCredentials │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientShowPeerCredentials.ino │ │ └── WiFiClientTrustOnFirstUse │ │ │ ├── .skip.esp32h2 │ │ │ └── WiFiClientTrustOnFirstUse.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── WiFiClientSecure.cpp │ │ ├── WiFiClientSecure.h │ │ ├── ssl_client.cpp │ │ └── ssl_client.h ├── WiFiProv │ ├── examples │ │ └── WiFiProv │ │ │ ├── .skip.esp32h2 │ │ │ ├── README.md │ │ │ └── WiFiProv.ino │ ├── library.properties │ └── src │ │ ├── WiFiProv.cpp │ │ └── WiFiProv.h ├── Wire │ ├── examples │ │ ├── WireMaster │ │ │ └── WireMaster.ino │ │ ├── WireScan │ │ │ └── WireScan.ino │ │ └── WireSlave │ │ │ ├── .skip.esp32c2 │ │ │ └── WireSlave.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Wire.cpp │ │ └── Wire.h └── wifi-halow │ ├── examples │ ├── As_VideoWebServer │ │ ├── As_VideoWebServer.ino │ │ ├── app_httpd.cpp │ │ ├── sd_read_write.cpp │ │ └── sd_read_write.h │ ├── BasicHttpsClient │ │ └── BasicHttpsClient.ino │ ├── HalowBasicHttpClient │ │ └── HalowBasicHttpClient.ino │ ├── HalowClient │ │ └── HalowClient.ino │ ├── HalowClientEvent │ │ └── HalowClientEvent.ino │ ├── HalowClientStaticIP │ │ └── HalowClientStaticIP.ino │ ├── HalowScan │ │ └── HalowScan.ino │ ├── UART_TCP_Client │ │ └── UART_TCP_Client.ino │ ├── UART_UDP_Client │ │ └── UART_UDP_Client.ino │ ├── UDP_Client_lowpower │ │ └── UDP_Client_lowpower.ino │ ├── WebUpdate │ │ └── WebUpdate.ino │ ├── halow-mqtt │ │ └── halow-mqtt.ino │ ├── halow_CameraWebServer │ │ ├── app_httpd.cpp │ │ ├── camera_index.h │ │ └── halow_CameraWebServer.ino │ └── httpUpdate │ │ └── httpUpdate.ino │ ├── library.json │ ├── library.properties │ └── src │ ├── HaLow.h │ ├── HalowClient.cpp │ ├── HalowClient.h │ ├── HalowClientSecure.cpp │ ├── HalowClientSecure.h │ ├── HalowGeneric.h │ ├── HalowHTTPClient.cpp │ ├── HalowHTTPClient.h │ ├── HalowHTTPUpdate.cpp │ ├── HalowHTTPUpdate.h │ ├── HalowSTA.cpp │ ├── HalowSTA.h │ ├── HalowScan.cpp │ ├── HalowScan.h │ ├── HalowServer.cpp │ ├── HalowServer.h │ ├── desktop.ini │ ├── esp32s3 │ ├── libheltec_halow.a │ ├── libmm6108.a │ ├── libmmipal.a │ └── libmorse.a │ ├── halow_config.h │ ├── libesp_netif.a │ ├── liblwip.a │ ├── loadconfig.h │ ├── mmhal.c │ ├── mmhal.h │ ├── mmhal_flash.h │ ├── mmhal_wlan.h │ ├── mmipal.h │ ├── mmiperf.h │ ├── mmnetif.h │ ├── mmosal.h │ ├── mmosal_shim_freertos_esp32.c │ ├── mmport.h │ ├── mmwlan.h │ ├── mmwlan_regdb.h │ ├── slip.c │ ├── slip.h │ ├── ssl_client.cpp │ ├── ssl_client.h │ └── wlan_hal.c ├── package.json ├── package └── package_esp32_index.template.json ├── platform.txt ├── programmers.txt ├── tools ├── espota.exe ├── espota.py ├── gen_crt_bundle.py ├── gen_esp32part.exe ├── gen_esp32part.py ├── gen_insights_package.exe ├── gen_insights_package.py ├── get.exe ├── get.py ├── ide-debug │ └── svd │ │ ├── esp32.svd │ │ ├── esp32c2.svd │ │ ├── esp32c3.svd │ │ ├── esp32c6.svd │ │ ├── esp32h2.svd │ │ ├── esp32s2.svd │ │ ├── esp32s3.svd │ │ └── esp8266.svd ├── partitions │ ├── app3M_fat9M_16MB.csv │ ├── app3M_fat9M_fact512k_16MB.csv │ ├── app3M_spiffs9M_fact512k_16MB.csv │ ├── bare_minimum_2MB.csv │ ├── boot_app0.bin │ ├── default.bin │ ├── default.csv │ ├── default_16MB.csv │ ├── default_8MB.csv │ ├── default_ffat.csv │ ├── default_ffat_8MB.csv │ ├── esp_sr_16.csv │ ├── ffat.csv │ ├── huge_app.csv │ ├── large_fat_32MB.csv │ ├── large_ffat_8MB.csv │ ├── large_littlefs_32MB.csv │ ├── large_spiffs_16MB.csv │ ├── large_spiffs_8MB.csv │ ├── m5stack_partitions_16MB_factory_4_apps.csv │ ├── m5stack_partitions_16MB_factory_6_apps.csv │ ├── max_app_8MB.csv │ ├── min_spiffs.csv │ ├── minimal.csv │ ├── no_ota.csv │ ├── noota_3g.csv │ ├── noota_3gffat.csv │ ├── noota_ffat.csv │ ├── rainmaker.csv │ ├── tinyuf2-partitions-16MB-noota.csv │ ├── tinyuf2-partitions-16MB.csv │ ├── tinyuf2-partitions-4MB-noota.csv │ ├── tinyuf2-partitions-4MB.csv │ ├── tinyuf2-partitions-8MB-noota.csv │ ├── tinyuf2-partitions-8MB.csv │ ├── zigbee.csv │ └── zigbee_zczr.csv └── platformio-build.py └── variants ├── HT-HC32 ├── partitions.csv └── pins_arduino.h └── HT-HC33 ├── partitions.csv └── pins_arduino.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/.gitignore -------------------------------------------------------------------------------- /InstallGuide/debian_ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/debian_ubuntu.md -------------------------------------------------------------------------------- /InstallGuide/fedora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/fedora.md -------------------------------------------------------------------------------- /InstallGuide/mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/mac.md -------------------------------------------------------------------------------- /InstallGuide/opensuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/opensuse.md -------------------------------------------------------------------------------- /InstallGuide/win-screenshots/arduino-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/win-screenshots/arduino-ide.png -------------------------------------------------------------------------------- /InstallGuide/win-screenshots/esp32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/win-screenshots/esp32-1.png -------------------------------------------------------------------------------- /InstallGuide/win-screenshots/git-pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/win-screenshots/git-pull.png -------------------------------------------------------------------------------- /InstallGuide/win-screenshots/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/win-screenshots/location.png -------------------------------------------------------------------------------- /InstallGuide/win-screenshots/win-gui-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/win-screenshots/win-gui-5.png -------------------------------------------------------------------------------- /InstallGuide/win-screenshots/win-gui-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/win-screenshots/win-gui-6.png -------------------------------------------------------------------------------- /InstallGuide/win-screenshots/win_gui_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/win-screenshots/win_gui_9.png -------------------------------------------------------------------------------- /InstallGuide/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/InstallGuide/windows.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/README.md -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/boards.txt -------------------------------------------------------------------------------- /cores/esp32/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Arduino.h -------------------------------------------------------------------------------- /cores/esp32/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Client.h -------------------------------------------------------------------------------- /cores/esp32/Esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Esp.cpp -------------------------------------------------------------------------------- /cores/esp32/Esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Esp.h -------------------------------------------------------------------------------- /cores/esp32/FirmwareMSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/FirmwareMSC.cpp -------------------------------------------------------------------------------- /cores/esp32/FirmwareMSC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/FirmwareMSC.h -------------------------------------------------------------------------------- /cores/esp32/FunctionalInterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/FunctionalInterrupt.cpp -------------------------------------------------------------------------------- /cores/esp32/FunctionalInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/FunctionalInterrupt.h -------------------------------------------------------------------------------- /cores/esp32/HEXBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/HEXBuilder.cpp -------------------------------------------------------------------------------- /cores/esp32/HEXBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/HEXBuilder.h -------------------------------------------------------------------------------- /cores/esp32/HWCDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/HWCDC.cpp -------------------------------------------------------------------------------- /cores/esp32/HWCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/HWCDC.h -------------------------------------------------------------------------------- /cores/esp32/HardwareI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/HardwareI2C.h -------------------------------------------------------------------------------- /cores/esp32/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/HardwareSerial.cpp -------------------------------------------------------------------------------- /cores/esp32/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/HardwareSerial.h -------------------------------------------------------------------------------- /cores/esp32/HashBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/HashBuilder.h -------------------------------------------------------------------------------- /cores/esp32/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/IPAddress.cpp -------------------------------------------------------------------------------- /cores/esp32/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/IPAddress.h -------------------------------------------------------------------------------- /cores/esp32/MD5Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/MD5Builder.cpp -------------------------------------------------------------------------------- /cores/esp32/MD5Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/MD5Builder.h -------------------------------------------------------------------------------- /cores/esp32/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Print.cpp -------------------------------------------------------------------------------- /cores/esp32/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Print.h -------------------------------------------------------------------------------- /cores/esp32/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Printable.h -------------------------------------------------------------------------------- /cores/esp32/SHA1Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/SHA1Builder.cpp -------------------------------------------------------------------------------- /cores/esp32/SHA1Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/SHA1Builder.h -------------------------------------------------------------------------------- /cores/esp32/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Server.h -------------------------------------------------------------------------------- /cores/esp32/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Stream.cpp -------------------------------------------------------------------------------- /cores/esp32/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Stream.h -------------------------------------------------------------------------------- /cores/esp32/StreamString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/StreamString.cpp -------------------------------------------------------------------------------- /cores/esp32/StreamString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/StreamString.h -------------------------------------------------------------------------------- /cores/esp32/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Tone.cpp -------------------------------------------------------------------------------- /cores/esp32/USB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/USB.cpp -------------------------------------------------------------------------------- /cores/esp32/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/USB.h -------------------------------------------------------------------------------- /cores/esp32/USBCDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/USBCDC.cpp -------------------------------------------------------------------------------- /cores/esp32/USBCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/USBCDC.h -------------------------------------------------------------------------------- /cores/esp32/USBMSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/USBMSC.cpp -------------------------------------------------------------------------------- /cores/esp32/USBMSC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/USBMSC.h -------------------------------------------------------------------------------- /cores/esp32/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/Udp.h -------------------------------------------------------------------------------- /cores/esp32/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/WCharacter.h -------------------------------------------------------------------------------- /cores/esp32/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/WMath.cpp -------------------------------------------------------------------------------- /cores/esp32/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/WString.cpp -------------------------------------------------------------------------------- /cores/esp32/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/WString.h -------------------------------------------------------------------------------- /cores/esp32/apps/sntp/sntp.h: -------------------------------------------------------------------------------- 1 | #include "lwip/apps/sntp.h" 2 | -------------------------------------------------------------------------------- /cores/esp32/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/base64.cpp -------------------------------------------------------------------------------- /cores/esp32/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/base64.h -------------------------------------------------------------------------------- /cores/esp32/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/binary.h -------------------------------------------------------------------------------- /cores/esp32/cbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/cbuf.cpp -------------------------------------------------------------------------------- /cores/esp32/cbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/cbuf.h -------------------------------------------------------------------------------- /cores/esp32/chip-debug-report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/chip-debug-report.cpp -------------------------------------------------------------------------------- /cores/esp32/chip-debug-report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/chip-debug-report.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-adc.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-adc.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-bt.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-bt.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-cpu.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-cpu.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-dac.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-dac.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-gpio.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-gpio.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-i2c-slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-i2c-slave.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-i2c-slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-i2c-slave.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-i2c.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-i2c.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-ledc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-ledc.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-ledc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-ledc.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-log.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-matrix.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-matrix.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-misc.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-periman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-periman.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-periman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-periman.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-psram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-psram.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-psram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-psram.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-rgb-led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-rgb-led.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-rgb-led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-rgb-led.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-rmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-rmt.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-rmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-rmt.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-sigmadelta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-sigmadelta.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-sigmadelta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-sigmadelta.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-spi.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-spi.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-time.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-timer.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-timer.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-tinyusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-tinyusb.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-tinyusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-tinyusb.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-touch.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-touch.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-uart.c -------------------------------------------------------------------------------- /cores/esp32/esp32-hal-uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal-uart.h -------------------------------------------------------------------------------- /cores/esp32/esp32-hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp32-hal.h -------------------------------------------------------------------------------- /cores/esp32/esp8266-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp8266-compat.h -------------------------------------------------------------------------------- /cores/esp32/esp_arduino_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/esp_arduino_version.h -------------------------------------------------------------------------------- /cores/esp32/extra_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/extra_attr.h -------------------------------------------------------------------------------- /cores/esp32/firmware_msc_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/firmware_msc_fat.c -------------------------------------------------------------------------------- /cores/esp32/firmware_msc_fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/firmware_msc_fat.h -------------------------------------------------------------------------------- /cores/esp32/io_pin_remap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/io_pin_remap.h -------------------------------------------------------------------------------- /cores/esp32/libb64/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/libb64/AUTHORS -------------------------------------------------------------------------------- /cores/esp32/libb64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/libb64/LICENSE -------------------------------------------------------------------------------- /cores/esp32/libb64/cdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/libb64/cdecode.c -------------------------------------------------------------------------------- /cores/esp32/libb64/cdecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/libb64/cdecode.h -------------------------------------------------------------------------------- /cores/esp32/libb64/cencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/libb64/cencode.c -------------------------------------------------------------------------------- /cores/esp32/libb64/cencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/libb64/cencode.h -------------------------------------------------------------------------------- /cores/esp32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/main.cpp -------------------------------------------------------------------------------- /cores/esp32/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/pgmspace.h -------------------------------------------------------------------------------- /cores/esp32/stdlib_noniso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/stdlib_noniso.c -------------------------------------------------------------------------------- /cores/esp32/stdlib_noniso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/stdlib_noniso.h -------------------------------------------------------------------------------- /cores/esp32/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/wiring_private.h -------------------------------------------------------------------------------- /cores/esp32/wiring_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/wiring_pulse.c -------------------------------------------------------------------------------- /cores/esp32/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/cores/esp32/wiring_shift.c -------------------------------------------------------------------------------- /libraries/ArduinoOTA/examples/BasicOTA/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ArduinoOTA/examples/BasicOTA/BasicOTA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ArduinoOTA/examples/BasicOTA/BasicOTA.ino -------------------------------------------------------------------------------- /libraries/ArduinoOTA/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ArduinoOTA/keywords.txt -------------------------------------------------------------------------------- /libraries/ArduinoOTA/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ArduinoOTA/library.properties -------------------------------------------------------------------------------- /libraries/ArduinoOTA/src/ArduinoOTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ArduinoOTA/src/ArduinoOTA.cpp -------------------------------------------------------------------------------- /libraries/ArduinoOTA/src/ArduinoOTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ArduinoOTA/src/ArduinoOTA.h -------------------------------------------------------------------------------- /libraries/AsyncUDP/examples/AsyncUDPClient/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/AsyncUDP/examples/AsyncUDPMulticastServer/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/AsyncUDP/examples/AsyncUDPServer/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/AsyncUDP/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/AsyncUDP/keywords.txt -------------------------------------------------------------------------------- /libraries/AsyncUDP/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/AsyncUDP/library.properties -------------------------------------------------------------------------------- /libraries/AsyncUDP/src/AsyncUDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/AsyncUDP/src/AsyncUDP.cpp -------------------------------------------------------------------------------- /libraries/AsyncUDP/src/AsyncUDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/AsyncUDP/src/AsyncUDP.h -------------------------------------------------------------------------------- /libraries/BLE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/LICENSE -------------------------------------------------------------------------------- /libraries/BLE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/README.md -------------------------------------------------------------------------------- /libraries/BLE/examples/BLE5_extended_scan/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/BLE5_extended_scan/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/BLE5_multi_advertising/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/BLE5_multi_advertising/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/BLE5_periodic_advertising/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/BLE5_periodic_advertising/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/BLE5_periodic_sync/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/BLE5_periodic_sync/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/Beacon_Scanner/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/Beacon_Scanner/Beacon_Scanner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/examples/Beacon_Scanner/Beacon_Scanner.md -------------------------------------------------------------------------------- /libraries/BLE/examples/Client/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/Client/Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/examples/Client/Client.ino -------------------------------------------------------------------------------- /libraries/BLE/examples/EddystoneTLM_Beacon/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/EddystoneTLM_Beacon/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/EddystoneURL_Beacon/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/EddystoneURL_Beacon/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/Notify/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/Notify/Notify.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/examples/Notify/Notify.ino -------------------------------------------------------------------------------- /libraries/BLE/examples/Scan/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/Scan/Scan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/examples/Scan/Scan.ino -------------------------------------------------------------------------------- /libraries/BLE/examples/Server/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/Server/Server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/examples/Server/Server.ino -------------------------------------------------------------------------------- /libraries/BLE/examples/Server_multiconnect/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/UART/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/UART/UART.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/examples/UART/UART.ino -------------------------------------------------------------------------------- /libraries/BLE/examples/Write/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/Write/Write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/examples/Write/Write.ino -------------------------------------------------------------------------------- /libraries/BLE/examples/iBeacon/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLE/examples/iBeacon/iBeacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/examples/iBeacon/iBeacon.ino -------------------------------------------------------------------------------- /libraries/BLE/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/library.properties -------------------------------------------------------------------------------- /libraries/BLE/src/BLE2902.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLE2902.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLE2902.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLE2902.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLE2904.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLE2904.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLE2904.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLE2904.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEAddress.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEAddress.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEAdvertisedDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEAdvertisedDevice.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEAdvertisedDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEAdvertisedDevice.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEAdvertising.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEAdvertising.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEAdvertising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEAdvertising.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEBeacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEBeacon.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEBeacon.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLECharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLECharacteristic.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLECharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLECharacteristic.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLECharacteristicMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLECharacteristicMap.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEClient.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEClient.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEDescriptor.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEDescriptor.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEDescriptorMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEDescriptorMap.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEDevice.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEDevice.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEEddystoneTLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEEddystoneTLM.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEEddystoneTLM.cppwithheadder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEEddystoneTLM.cppwithheadder -------------------------------------------------------------------------------- /libraries/BLE/src/BLEEddystoneTLM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEEddystoneTLM.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEEddystoneURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEEddystoneURL.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEEddystoneURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEEddystoneURL.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEEddystoneURL.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEEddystoneURL.h.orig -------------------------------------------------------------------------------- /libraries/BLE/src/BLEExceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEExceptions.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEExceptions.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEHIDDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEHIDDevice.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEHIDDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEHIDDevice.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLERemoteCharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLERemoteCharacteristic.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLERemoteCharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLERemoteCharacteristic.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLERemoteDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLERemoteDescriptor.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLERemoteDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLERemoteDescriptor.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLERemoteService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLERemoteService.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLERemoteService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLERemoteService.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEScan.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEScan.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLESecurity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLESecurity.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLESecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLESecurity.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEServer.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEServer.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEService.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEService.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEServiceMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEServiceMap.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEUUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEUUID.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEUUID.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEUtils.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEUtils.h -------------------------------------------------------------------------------- /libraries/BLE/src/BLEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEValue.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/BLEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/BLEValue.h -------------------------------------------------------------------------------- /libraries/BLE/src/FreeRTOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/FreeRTOS.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/GeneralUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/GeneralUtils.cpp -------------------------------------------------------------------------------- /libraries/BLE/src/GeneralUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/GeneralUtils.h -------------------------------------------------------------------------------- /libraries/BLE/src/HIDKeyboardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/HIDKeyboardTypes.h -------------------------------------------------------------------------------- /libraries/BLE/src/HIDTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/HIDTypes.h -------------------------------------------------------------------------------- /libraries/BLE/src/RTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BLE/src/RTOS.h -------------------------------------------------------------------------------- /libraries/BluetoothSerial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/README.md -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/DiscoverConnect/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/DiscoverConnect/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/DiscoverConnect/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/DiscoverConnect/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/DiscoverConnect/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/GetLocalMAC/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/GetLocalMAC/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/GetLocalMAC/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/GetLocalMAC/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/GetLocalMAC/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBTM/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBTM/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBTM/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBTM/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBTM/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_Legacy/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_Legacy/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_Legacy/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_Legacy/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_Legacy/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_SSP/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_SSP/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_SSP/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_SSP/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/SerialToSerialBT_SSP/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_classic_device_discovery/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_classic_device_discovery/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_classic_device_discovery/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_classic_device_discovery/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_classic_device_discovery/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_remove_paired_devices/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_remove_paired_devices/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_remove_paired_devices/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_remove_paired_devices/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/examples/bt_remove_paired_devices/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BluetoothSerial/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/keywords.txt -------------------------------------------------------------------------------- /libraries/BluetoothSerial/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/library.properties -------------------------------------------------------------------------------- /libraries/BluetoothSerial/src/BTAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/src/BTAddress.cpp -------------------------------------------------------------------------------- /libraries/BluetoothSerial/src/BTAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/src/BTAddress.h -------------------------------------------------------------------------------- /libraries/BluetoothSerial/src/BTAdvertisedDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/src/BTAdvertisedDevice.h -------------------------------------------------------------------------------- /libraries/BluetoothSerial/src/BTScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/src/BTScan.h -------------------------------------------------------------------------------- /libraries/BluetoothSerial/src/BTScanResultsSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/src/BTScanResultsSet.cpp -------------------------------------------------------------------------------- /libraries/BluetoothSerial/src/BluetoothSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/src/BluetoothSerial.cpp -------------------------------------------------------------------------------- /libraries/BluetoothSerial/src/BluetoothSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/BluetoothSerial/src/BluetoothSerial.h -------------------------------------------------------------------------------- /libraries/DNSServer/examples/CaptivePortal/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/DNSServer/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/DNSServer/library.properties -------------------------------------------------------------------------------- /libraries/DNSServer/src/DNSServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/DNSServer/src/DNSServer.cpp -------------------------------------------------------------------------------- /libraries/DNSServer/src/DNSServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/DNSServer/src/DNSServer.h -------------------------------------------------------------------------------- /libraries/EEPROM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/EEPROM/README.md -------------------------------------------------------------------------------- /libraries/EEPROM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/EEPROM/keywords.txt -------------------------------------------------------------------------------- /libraries/EEPROM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/EEPROM/library.properties -------------------------------------------------------------------------------- /libraries/EEPROM/src/EEPROM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/EEPROM/src/EEPROM.cpp -------------------------------------------------------------------------------- /libraries/EEPROM/src/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/EEPROM/src/EEPROM.h -------------------------------------------------------------------------------- /libraries/ESP32/examples/AnalogRead/AnalogRead.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/examples/AnalogRead/AnalogRead.ino -------------------------------------------------------------------------------- /libraries/ESP32/examples/Camera/CameraWebServer/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Camera/CameraWebServer/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Camera/CameraWebServer/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/ExternalWakeUp/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/ExternalWakeUp/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/ExternalWakeUp/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/SmoothBlink_ULP_Code/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/SmoothBlink_ULP_Code/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/SmoothBlink_ULP_Code/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/SmoothBlink_ULP_Code/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/SmoothBlink_ULP_Code/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/TimerWakeUp/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/TouchWakeUp/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/TouchWakeUp/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/DeepSleep/TouchWakeUp/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/ESPNow/ESPNow_Basic_Master/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/ESPNow/ESPNow_Basic_Slave/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/ESPNow/ESPNow_MultiSlave_Master/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/ESPNow/ESPNow_MultiSlave_Slave/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/FreeRTOS/Mutex/Mutex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/examples/FreeRTOS/Mutex/Mutex.ino -------------------------------------------------------------------------------- /libraries/ESP32/examples/FreeRTOS/Mutex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/examples/FreeRTOS/Mutex/README.md -------------------------------------------------------------------------------- /libraries/ESP32/examples/FreeRTOS/Queue/Queue.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/examples/FreeRTOS/Queue/Queue.ino -------------------------------------------------------------------------------- /libraries/ESP32/examples/FreeRTOS/Queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/examples/FreeRTOS/Queue/README.md -------------------------------------------------------------------------------- /libraries/ESP32/examples/FreeRTOS/Semaphore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/examples/FreeRTOS/Semaphore/README.md -------------------------------------------------------------------------------- /libraries/ESP32/examples/GPIO/BlinkRGB/BlinkRGB.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/examples/GPIO/BlinkRGB/BlinkRGB.ino -------------------------------------------------------------------------------- /libraries/ESP32/examples/HWSerial_Events/.skip.esp32: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/HWSerial_Events/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Time/SimpleTime/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchButton/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchButton/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchButton/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchButton/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchButton/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchButtonV2/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchButtonV2/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchButtonV2/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchButtonV2/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchInterrupt/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchInterrupt/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchInterrupt/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchRead/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchRead/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Touch/TouchRead/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Bulb/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Bulb/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Bulb/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Bulb/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Bulb/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Bulb/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Switch/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Switch/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Switch/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Switch/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Switch/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/examples/Zigbee/Zigbee_Light_Switch/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP32/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/keywords.txt -------------------------------------------------------------------------------- /libraries/ESP32/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/library.properties -------------------------------------------------------------------------------- /libraries/ESP32/src/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP32/src/dummy.h -------------------------------------------------------------------------------- /libraries/ESP_I2S/examples/ES8388_loopback/ES8388.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_I2S/examples/ES8388_loopback/ES8388.cpp -------------------------------------------------------------------------------- /libraries/ESP_I2S/examples/ES8388_loopback/ES8388.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_I2S/examples/ES8388_loopback/ES8388.h -------------------------------------------------------------------------------- /libraries/ESP_I2S/examples/Record_to_WAV/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP_I2S/examples/Record_to_WAV/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP_I2S/examples/Record_to_WAV/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP_I2S/examples/Record_to_WAV/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP_I2S/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_I2S/keywords.txt -------------------------------------------------------------------------------- /libraries/ESP_I2S/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_I2S/library.properties -------------------------------------------------------------------------------- /libraries/ESP_I2S/src/ESP_I2S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_I2S/src/ESP_I2S.cpp -------------------------------------------------------------------------------- /libraries/ESP_I2S/src/ESP_I2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_I2S/src/ESP_I2S.h -------------------------------------------------------------------------------- /libraries/ESP_I2S/src/wav_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_I2S/src/wav_header.h -------------------------------------------------------------------------------- /libraries/ESP_SR/examples/Basic/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP_SR/examples/Basic/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP_SR/examples/Basic/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP_SR/examples/Basic/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP_SR/examples/Basic/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESP_SR/examples/Basic/Basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_SR/examples/Basic/Basic.ino -------------------------------------------------------------------------------- /libraries/ESP_SR/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_SR/keywords.txt -------------------------------------------------------------------------------- /libraries/ESP_SR/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_SR/library.properties -------------------------------------------------------------------------------- /libraries/ESP_SR/src/ESP_SR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_SR/src/ESP_SR.cpp -------------------------------------------------------------------------------- /libraries/ESP_SR/src/ESP_SR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_SR/src/ESP_SR.h -------------------------------------------------------------------------------- /libraries/ESP_SR/src/esp32-hal-sr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_SR/src/esp32-hal-sr.c -------------------------------------------------------------------------------- /libraries/ESP_SR/src/esp32-hal-sr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_SR/src/esp32-hal-sr.h -------------------------------------------------------------------------------- /libraries/ESP_SR/tools/gen_sr_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESP_SR/tools/gen_sr_commands.py -------------------------------------------------------------------------------- /libraries/ESPmDNS/examples/mDNS-SD_Extended/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESPmDNS/examples/mDNS_Web_Server/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ESPmDNS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESPmDNS/keywords.txt -------------------------------------------------------------------------------- /libraries/ESPmDNS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESPmDNS/library.properties -------------------------------------------------------------------------------- /libraries/ESPmDNS/src/ESPmDNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESPmDNS/src/ESPmDNS.cpp -------------------------------------------------------------------------------- /libraries/ESPmDNS/src/ESPmDNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/ESPmDNS/src/ESPmDNS.h -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_LAN8720/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_LAN8720/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_LAN8720/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_LAN8720/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_LAN8720/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_TLK110/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_TLK110/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_TLK110/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_TLK110/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_TLK110/.skip.esp32s3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_TLK110/ETH_TLK110.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ethernet/examples/ETH_TLK110/ETH_TLK110.ino -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_W5500_Arduino_SPI/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/examples/ETH_W5500_IDF_SPI/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Ethernet/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ethernet/library.properties -------------------------------------------------------------------------------- /libraries/Ethernet/src/ETH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ethernet/src/ETH.cpp -------------------------------------------------------------------------------- /libraries/Ethernet/src/ETH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ethernet/src/ETH.h -------------------------------------------------------------------------------- /libraries/FFat/examples/FFat_Test/FFat_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FFat/examples/FFat_Test/FFat_Test.ino -------------------------------------------------------------------------------- /libraries/FFat/examples/FFat_time/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/FFat/examples/FFat_time/FFat_time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FFat/examples/FFat_time/FFat_time.ino -------------------------------------------------------------------------------- /libraries/FFat/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FFat/library.properties -------------------------------------------------------------------------------- /libraries/FFat/src/FFat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FFat/src/FFat.cpp -------------------------------------------------------------------------------- /libraries/FFat/src/FFat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FFat/src/FFat.h -------------------------------------------------------------------------------- /libraries/FS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FS/library.properties -------------------------------------------------------------------------------- /libraries/FS/src/FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FS/src/FS.cpp -------------------------------------------------------------------------------- /libraries/FS/src/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FS/src/FS.h -------------------------------------------------------------------------------- /libraries/FS/src/FSImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FS/src/FSImpl.h -------------------------------------------------------------------------------- /libraries/FS/src/vfs_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FS/src/vfs_api.cpp -------------------------------------------------------------------------------- /libraries/FS/src/vfs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/FS/src/vfs_api.h -------------------------------------------------------------------------------- /libraries/HTTPClient/examples/Authorization/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPClient/examples/BasicHttpClient/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPClient/examples/BasicHttpsClient/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPClient/examples/HTTPClientEnterprise/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPClient/examples/ReuseConnection/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPClient/examples/StreamHttpClient/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPClient/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPClient/library.properties -------------------------------------------------------------------------------- /libraries/HTTPClient/src/HTTPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPClient/src/HTTPClient.cpp -------------------------------------------------------------------------------- /libraries/HTTPClient/src/HTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPClient/src/HTTPClient.h -------------------------------------------------------------------------------- /libraries/HTTPUpdate/examples/httpUpdate/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPUpdate/examples/httpUpdateSPIFFS/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPUpdate/examples/httpUpdateSecure/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPUpdate/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPUpdate/keywords.txt -------------------------------------------------------------------------------- /libraries/HTTPUpdate/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPUpdate/library.properties -------------------------------------------------------------------------------- /libraries/HTTPUpdate/src/HTTPUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPUpdate/src/HTTPUpdate.cpp -------------------------------------------------------------------------------- /libraries/HTTPUpdate/src/HTTPUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPUpdate/src/HTTPUpdate.h -------------------------------------------------------------------------------- /libraries/HTTPUpdateServer/examples/WebUpdater/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/HTTPUpdateServer/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPUpdateServer/keywords.txt -------------------------------------------------------------------------------- /libraries/HTTPUpdateServer/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPUpdateServer/library.properties -------------------------------------------------------------------------------- /libraries/HTTPUpdateServer/src/HTTPUpdateServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/HTTPUpdateServer/src/HTTPUpdateServer.h -------------------------------------------------------------------------------- /libraries/Insights/examples/DiagnosticsSmokeTest/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Insights/examples/DiagnosticsSmokeTest/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Insights/examples/MinimalDiagnostics/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Insights/examples/MinimalDiagnostics/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Insights/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Insights/library.properties -------------------------------------------------------------------------------- /libraries/Insights/src/Insights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Insights/src/Insights.cpp -------------------------------------------------------------------------------- /libraries/Insights/src/Insights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Insights/src/Insights.h -------------------------------------------------------------------------------- /libraries/LittleFS/examples/LITTLEFS_PlatformIO/data/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /libraries/LittleFS/examples/LITTLEFS_PlatformIO/data/testfolder/test2.txt: -------------------------------------------------------------------------------- 1 | bbb -------------------------------------------------------------------------------- /libraries/LittleFS/examples/LITTLEFS_PlatformIO/include/.placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/LittleFS/examples/LITTLEFS_PlatformIO/lib/.placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/LittleFS/examples/LITTLEFS_time/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/LittleFS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/LittleFS/library.properties -------------------------------------------------------------------------------- /libraries/LittleFS/src/LittleFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/LittleFS/src/LittleFS.cpp -------------------------------------------------------------------------------- /libraries/LittleFS/src/LittleFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/LittleFS/src/LittleFS.h -------------------------------------------------------------------------------- /libraries/NetBIOS/examples/ESP_NBNST/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/NetBIOS/examples/ESP_NBNST/ESP_NBNST.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/NetBIOS/examples/ESP_NBNST/ESP_NBNST.ino -------------------------------------------------------------------------------- /libraries/NetBIOS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/NetBIOS/keywords.txt -------------------------------------------------------------------------------- /libraries/NetBIOS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/NetBIOS/library.properties -------------------------------------------------------------------------------- /libraries/NetBIOS/src/NetBIOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/NetBIOS/src/NetBIOS.cpp -------------------------------------------------------------------------------- /libraries/NetBIOS/src/NetBIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/NetBIOS/src/NetBIOS.h -------------------------------------------------------------------------------- /libraries/Preferences/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Preferences/keywords.txt -------------------------------------------------------------------------------- /libraries/Preferences/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Preferences/library.properties -------------------------------------------------------------------------------- /libraries/Preferences/src/Preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Preferences/src/Preferences.cpp -------------------------------------------------------------------------------- /libraries/Preferences/src/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Preferences/src/Preferences.h -------------------------------------------------------------------------------- /libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/README.md -------------------------------------------------------------------------------- /libraries/RainMaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/README.md -------------------------------------------------------------------------------- /libraries/RainMaker/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/examples/README.md -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerCustom/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerCustom/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerCustom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/examples/RMakerCustom/README.md -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerCustomAirCooler/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerCustomAirCooler/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerSonoffDualR3/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerSonoffDualR3/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerSwitch/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerSwitch/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/RainMaker/examples/RMakerSwitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/examples/RMakerSwitch/README.md -------------------------------------------------------------------------------- /libraries/RainMaker/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/library.properties -------------------------------------------------------------------------------- /libraries/RainMaker/src/AppInsights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/AppInsights.cpp -------------------------------------------------------------------------------- /libraries/RainMaker/src/AppInsights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/AppInsights.h -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMaker.cpp -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMaker.h -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerDevice.cpp -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerDevice.h -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerNode.cpp -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerNode.h -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerParam.cpp -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerParam.h -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerQR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerQR.cpp -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerQR.h -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerType.cpp -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerType.h -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerUtils.cpp -------------------------------------------------------------------------------- /libraries/RainMaker/src/RMakerUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/RainMaker/src/RMakerUtils.h -------------------------------------------------------------------------------- /libraries/SD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/README.md -------------------------------------------------------------------------------- /libraries/SD/examples/SD_Test/SD_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/examples/SD_Test/SD_Test.ino -------------------------------------------------------------------------------- /libraries/SD/examples/SD_time/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SD/examples/SD_time/SD_time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/examples/SD_time/SD_time.ino -------------------------------------------------------------------------------- /libraries/SD/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/library.properties -------------------------------------------------------------------------------- /libraries/SD/src/halow_SD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/src/halow_SD.cpp -------------------------------------------------------------------------------- /libraries/SD/src/halow_SD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/src/halow_SD.h -------------------------------------------------------------------------------- /libraries/SD/src/sd_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/src/sd_defines.h -------------------------------------------------------------------------------- /libraries/SD/src/sd_diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/src/sd_diskio.cpp -------------------------------------------------------------------------------- /libraries/SD/src/sd_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/src/sd_diskio.h -------------------------------------------------------------------------------- /libraries/SD/src/sd_diskio_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD/src/sd_diskio_crc.c -------------------------------------------------------------------------------- /libraries/SD_MMC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD_MMC/README.md -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_Test/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_Test/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_Test/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_Test/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_Test/SDMMC_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD_MMC/examples/SDMMC_Test/SDMMC_Test.ino -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_time/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_time/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_time/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_time/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SD_MMC/examples/SDMMC_time/SDMMC_time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD_MMC/examples/SDMMC_time/SDMMC_time.ino -------------------------------------------------------------------------------- /libraries/SD_MMC/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD_MMC/library.properties -------------------------------------------------------------------------------- /libraries/SD_MMC/src/SD_MMC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD_MMC/src/SD_MMC.cpp -------------------------------------------------------------------------------- /libraries/SD_MMC/src/SD_MMC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD_MMC/src/SD_MMC.h -------------------------------------------------------------------------------- /libraries/SD_MMC/src/sd_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SD_MMC/src/sd_defines.h -------------------------------------------------------------------------------- /libraries/SPI/examples/SPI_Multiple_Buses/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SPI/examples/SPI_Multiple_Buses/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SPI/examples/SPI_Multiple_Buses/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SPI/src/SPI.h -------------------------------------------------------------------------------- /libraries/SPIFFS/examples/SPIFFS_Test/SPIFFS_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SPIFFS/examples/SPIFFS_Test/SPIFFS_Test.ino -------------------------------------------------------------------------------- /libraries/SPIFFS/examples/SPIFFS_time/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SPIFFS/examples/SPIFFS_time/SPIFFS_time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SPIFFS/examples/SPIFFS_time/SPIFFS_time.ino -------------------------------------------------------------------------------- /libraries/SPIFFS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SPIFFS/library.properties -------------------------------------------------------------------------------- /libraries/SPIFFS/src/SPIFFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SPIFFS/src/SPIFFS.cpp -------------------------------------------------------------------------------- /libraries/SPIFFS/src/SPIFFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SPIFFS/src/SPIFFS.h -------------------------------------------------------------------------------- /libraries/SimpleBLE/examples/SimpleBleDevice/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SimpleBLE/examples/SimpleBleDevice/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SimpleBLE/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SimpleBLE/library.properties -------------------------------------------------------------------------------- /libraries/SimpleBLE/src/SimpleBLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SimpleBLE/src/SimpleBLE.cpp -------------------------------------------------------------------------------- /libraries/SimpleBLE/src/SimpleBLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/SimpleBLE/src/SimpleBLE.h -------------------------------------------------------------------------------- /libraries/TFLiteMicro/examples/hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/examples/hello_world/README.md -------------------------------------------------------------------------------- /libraries/TFLiteMicro/examples/hello_world/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/examples/hello_world/model.cpp -------------------------------------------------------------------------------- /libraries/TFLiteMicro/examples/hello_world/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/examples/hello_world/model.h -------------------------------------------------------------------------------- /libraries/TFLiteMicro/examples/micro_speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/examples/micro_speech/README.md -------------------------------------------------------------------------------- /libraries/TFLiteMicro/examples/micro_speech/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/examples/micro_speech/model.cpp -------------------------------------------------------------------------------- /libraries/TFLiteMicro/examples/micro_speech/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/examples/micro_speech/model.h -------------------------------------------------------------------------------- /libraries/TFLiteMicro/examples/micro_speech/ringbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/examples/micro_speech/ringbuf.c -------------------------------------------------------------------------------- /libraries/TFLiteMicro/examples/micro_speech/ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/examples/micro_speech/ringbuf.h -------------------------------------------------------------------------------- /libraries/TFLiteMicro/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/library.properties -------------------------------------------------------------------------------- /libraries/TFLiteMicro/src/TFLIteMicro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/src/TFLIteMicro.h -------------------------------------------------------------------------------- /libraries/TFLiteMicro/src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/TFLiteMicro/src/utility.h -------------------------------------------------------------------------------- /libraries/Ticker/examples/Blinker/Blinker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ticker/examples/Blinker/Blinker.ino -------------------------------------------------------------------------------- /libraries/Ticker/examples/TickerBasic/TickerBasic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ticker/examples/TickerBasic/TickerBasic.ino -------------------------------------------------------------------------------- /libraries/Ticker/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ticker/keywords.txt -------------------------------------------------------------------------------- /libraries/Ticker/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ticker/library.properties -------------------------------------------------------------------------------- /libraries/Ticker/src/Ticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ticker/src/Ticker.cpp -------------------------------------------------------------------------------- /libraries/Ticker/src/Ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Ticker/src/Ticker.h -------------------------------------------------------------------------------- /libraries/USB/examples/CompositeDevice/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/CompositeDevice/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/CompositeDevice/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/CompositeDevice/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/ConsumerControl/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/ConsumerControl/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/ConsumerControl/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/ConsumerControl/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/CustomHIDDevice/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/CustomHIDDevice/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/CustomHIDDevice/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/CustomHIDDevice/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/FirmwareMSC/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/FirmwareMSC/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/FirmwareMSC/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/FirmwareMSC/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/FirmwareMSC/FirmwareMSC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/examples/FirmwareMSC/FirmwareMSC.ino -------------------------------------------------------------------------------- /libraries/USB/examples/Gamepad/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Gamepad/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Gamepad/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Gamepad/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Gamepad/Gamepad.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/examples/Gamepad/Gamepad.ino -------------------------------------------------------------------------------- /libraries/USB/examples/HIDVendor/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/HIDVendor/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/HIDVendor/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/HIDVendor/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/HIDVendor/HIDVendor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/examples/HIDVendor/HIDVendor.ino -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardLogout/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardLogout/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardLogout/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardLogout/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardMessage/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardMessage/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardMessage/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardMessage/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardReprogram/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardReprogram/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardReprogram/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardReprogram/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardSerial/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardSerial/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardSerial/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Keyboard/KeyboardSerial/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/KeyboardAndMouseControl/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/KeyboardAndMouseControl/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/KeyboardAndMouseControl/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/KeyboardAndMouseControl/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiController/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiController/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiController/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiController/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiInterface/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiInterface/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiInterface/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiInterface/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiMusicBox/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiMusicBox/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiMusicBox/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/MidiMusicBox/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/ReceiveMidi/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/ReceiveMidi/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/ReceiveMidi/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/MIDI/ReceiveMidi/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Mouse/ButtonMouseControl/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Mouse/ButtonMouseControl/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Mouse/ButtonMouseControl/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/Mouse/ButtonMouseControl/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/SystemControl/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/SystemControl/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/SystemControl/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/SystemControl/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBMSC/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBMSC/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBMSC/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBMSC/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBMSC/USBMSC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/examples/USBMSC/USBMSC.ino -------------------------------------------------------------------------------- /libraries/USB/examples/USBSerial/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBSerial/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBSerial/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBSerial/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBSerial/USBSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/examples/USBSerial/USBSerial.ino -------------------------------------------------------------------------------- /libraries/USB/examples/USBVendor/.skip.esp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBVendor/.skip.esp32c3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBVendor/.skip.esp32c6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBVendor/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/USB/examples/USBVendor/USBVendor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/examples/USBVendor/USBVendor.ino -------------------------------------------------------------------------------- /libraries/USB/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/keywords.txt -------------------------------------------------------------------------------- /libraries/USB/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/library.properties -------------------------------------------------------------------------------- /libraries/USB/src/USBHID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHID.cpp -------------------------------------------------------------------------------- /libraries/USB/src/USBHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHID.h -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDConsumerControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDConsumerControl.cpp -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDConsumerControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDConsumerControl.h -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDGamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDGamepad.cpp -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDGamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDGamepad.h -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDKeyboard.cpp -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDKeyboard.h -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDMouse.cpp -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDMouse.h -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDSystemControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDSystemControl.cpp -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDSystemControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDSystemControl.h -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDVendor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDVendor.cpp -------------------------------------------------------------------------------- /libraries/USB/src/USBHIDVendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBHIDVendor.h -------------------------------------------------------------------------------- /libraries/USB/src/USBMIDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBMIDI.cpp -------------------------------------------------------------------------------- /libraries/USB/src/USBMIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBMIDI.h -------------------------------------------------------------------------------- /libraries/USB/src/USBVendor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBVendor.cpp -------------------------------------------------------------------------------- /libraries/USB/src/USBVendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/USBVendor.h -------------------------------------------------------------------------------- /libraries/USB/src/tusb_hid_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/USB/src/tusb_hid_mouse.h -------------------------------------------------------------------------------- /libraries/Update/examples/AWS_S3_OTA_Update/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Update/examples/HTTPS_OTA_Update/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Update/examples/HTTPS_OTA_Update/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Update/examples/HTTPS_OTA_Update/Readme.md -------------------------------------------------------------------------------- /libraries/Update/examples/HTTP_Client_AES_OTA_Update/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Update/examples/HTTP_Server_AES_OTA_Update/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Update/examples/OTAWebUpdater/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Update/examples/OTAWebUpdater/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Update/examples/OTAWebUpdater/html.h -------------------------------------------------------------------------------- /libraries/Update/examples/SD_Update/SD_Update.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Update/examples/SD_Update/SD_Update.ino -------------------------------------------------------------------------------- /libraries/Update/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Update/keywords.txt -------------------------------------------------------------------------------- /libraries/Update/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Update/library.properties -------------------------------------------------------------------------------- /libraries/Update/src/HttpsOTAUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Update/src/HttpsOTAUpdate.cpp -------------------------------------------------------------------------------- /libraries/Update/src/HttpsOTAUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Update/src/HttpsOTAUpdate.h -------------------------------------------------------------------------------- /libraries/Update/src/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Update/src/Update.h -------------------------------------------------------------------------------- /libraries/Update/src/Updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Update/src/Updater.cpp -------------------------------------------------------------------------------- /libraries/WebServer/examples/AdvancedWebServer/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/FSBrowser/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/FSBrowser/FSBrowser.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/FSBrowser/FSBrowser.ino -------------------------------------------------------------------------------- /libraries/WebServer/examples/FSBrowser/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/FSBrowser/data/index.htm -------------------------------------------------------------------------------- /libraries/WebServer/examples/HelloServer/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/HttpAdvancedAuth/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/HttpAuthCallback/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/HttpAuthCallbackInline/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/HttpBasicAuth/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/HttpBasicAuthSHA1/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/HttpBasicAuthSHA1orBearerToken/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/MultiHomedServers/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/PathArgServer/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/SDWebServer/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/SimpleAuthentification/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebServer/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/WebServer/README.md -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebServer/WebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/WebServer/WebServer.ino -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebServer/builtinfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/WebServer/builtinfiles.h -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebServer/data/files.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/WebServer/data/files.htm -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebServer/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/WebServer/data/index.htm -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebServer/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/WebServer/data/style.css -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebServer/secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/WebServer/secrets.h -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebUpdate/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WebServer/examples/WebUpdate/WebUpdate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/examples/WebUpdate/WebUpdate.ino -------------------------------------------------------------------------------- /libraries/WebServer/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/keywords.txt -------------------------------------------------------------------------------- /libraries/WebServer/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/library.properties -------------------------------------------------------------------------------- /libraries/WebServer/src/HTTP_Method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/HTTP_Method.h -------------------------------------------------------------------------------- /libraries/WebServer/src/Parsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/Parsing.cpp -------------------------------------------------------------------------------- /libraries/WebServer/src/Uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/Uri.h -------------------------------------------------------------------------------- /libraries/WebServer/src/WebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/WebServer.cpp -------------------------------------------------------------------------------- /libraries/WebServer/src/WebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/WebServer.h -------------------------------------------------------------------------------- /libraries/WebServer/src/detail/RequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/detail/RequestHandler.h -------------------------------------------------------------------------------- /libraries/WebServer/src/detail/RequestHandlersImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/detail/RequestHandlersImpl.h -------------------------------------------------------------------------------- /libraries/WebServer/src/detail/mimetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/detail/mimetable.cpp -------------------------------------------------------------------------------- /libraries/WebServer/src/detail/mimetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/detail/mimetable.h -------------------------------------------------------------------------------- /libraries/WebServer/src/uri/UriBraces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/uri/UriBraces.h -------------------------------------------------------------------------------- /libraries/WebServer/src/uri/UriGlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/uri/UriGlob.h -------------------------------------------------------------------------------- /libraries/WebServer/src/uri/UriRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WebServer/src/uri/UriRegex.h -------------------------------------------------------------------------------- /libraries/WiFi/examples/FTM/FTM_Initiator/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/FTM/FTM_Initiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/FTM/FTM_Initiator/README.md -------------------------------------------------------------------------------- /libraries/WiFi/examples/FTM/FTM_Responder/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/FTM/FTM_Responder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/FTM/FTM_Responder/README.md -------------------------------------------------------------------------------- /libraries/WiFi/examples/SimpleWiFiServer/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WPS/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WPS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WPS/README.md -------------------------------------------------------------------------------- /libraries/WiFi/examples/WPS/WPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WPS/WPS.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiAccessPoint/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiBlueToothSwitch/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiBlueToothSwitch/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiClient/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiClient/README.md -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiClient/WiFiClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiClient/WiFiClient.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiClientBasic/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiClientConnect/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiClientConnect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiClientConnect/README.md -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiClientEnterprise/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiClientEvents/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiClientStaticIP/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiIPv6/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiIPv6/WiFiIPv6.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiIPv6/WiFiIPv6.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiMulti/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiMulti/WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiMulti/WiFiMulti.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiMultiAdvanced/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiScan/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiScan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiScan/README.md -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiScan/WiFiScan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiScan/WiFiScan.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiScanAsync/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiScanAsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiScanAsync/README.md -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiScanDualAntenna/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiScanDualAntenna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiScanDualAntenna/README.md -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiSmartConfig/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiTelnetToSerial/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiUDPClient/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiUDPClient/udp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiUDPClient/udp_server.py -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiUDPClient/udp_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/examples/WiFiUDPClient/udp_server.rb -------------------------------------------------------------------------------- /libraries/WiFi/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/keywords.txt -------------------------------------------------------------------------------- /libraries/WiFi/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/library.properties -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFi.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFi.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiAP.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiAP.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiClient.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiClient.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiGeneric.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiGeneric.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiMulti.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiMulti.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiSTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiSTA.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiSTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiSTA.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiScan.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiScan.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiServer.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiServer.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiType.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiUdp.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFi/src/WiFiUdp.h -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiClientSecure/README.md -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/examples/WiFiClientInsecure/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/examples/WiFiClientPSK/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/examples/WiFiClientSecure/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/examples/WiFiClientSecureEnterprise/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/examples/WiFiClientSecureProtocolUpgrade/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/examples/WiFiClientShowPeerCredentials/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/examples/WiFiClientTrustOnFirstUse/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiClientSecure/keywords.txt -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiClientSecure/library.properties -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/src/WiFiClientSecure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiClientSecure/src/WiFiClientSecure.cpp -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/src/WiFiClientSecure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiClientSecure/src/WiFiClientSecure.h -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/src/ssl_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiClientSecure/src/ssl_client.cpp -------------------------------------------------------------------------------- /libraries/WiFiClientSecure/src/ssl_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiClientSecure/src/ssl_client.h -------------------------------------------------------------------------------- /libraries/WiFiProv/examples/WiFiProv/.skip.esp32h2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/WiFiProv/examples/WiFiProv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiProv/examples/WiFiProv/README.md -------------------------------------------------------------------------------- /libraries/WiFiProv/examples/WiFiProv/WiFiProv.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiProv/examples/WiFiProv/WiFiProv.ino -------------------------------------------------------------------------------- /libraries/WiFiProv/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiProv/library.properties -------------------------------------------------------------------------------- /libraries/WiFiProv/src/WiFiProv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiProv/src/WiFiProv.cpp -------------------------------------------------------------------------------- /libraries/WiFiProv/src/WiFiProv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/WiFiProv/src/WiFiProv.h -------------------------------------------------------------------------------- /libraries/Wire/examples/WireMaster/WireMaster.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Wire/examples/WireMaster/WireMaster.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/WireScan/WireScan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Wire/examples/WireScan/WireScan.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/WireSlave/.skip.esp32c2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Wire/examples/WireSlave/WireSlave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Wire/examples/WireSlave/WireSlave.ino -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Wire/src/Wire.cpp -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/Wire/src/Wire.h -------------------------------------------------------------------------------- /libraries/wifi-halow/examples/HalowScan/HalowScan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/examples/HalowScan/HalowScan.ino -------------------------------------------------------------------------------- /libraries/wifi-halow/examples/WebUpdate/WebUpdate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/examples/WebUpdate/WebUpdate.ino -------------------------------------------------------------------------------- /libraries/wifi-halow/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/library.json -------------------------------------------------------------------------------- /libraries/wifi-halow/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/library.properties -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HaLow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HaLow.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowClient.cpp -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowClient.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowClientSecure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowClientSecure.cpp -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowClientSecure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowClientSecure.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowGeneric.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowHTTPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowHTTPClient.cpp -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowHTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowHTTPClient.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowHTTPUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowHTTPUpdate.cpp -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowHTTPUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowHTTPUpdate.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowSTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowSTA.cpp -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowSTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowSTA.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowScan.cpp -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowScan.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowServer.cpp -------------------------------------------------------------------------------- /libraries/wifi-halow/src/HalowServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/HalowServer.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/desktop.ini -------------------------------------------------------------------------------- /libraries/wifi-halow/src/esp32s3/libheltec_halow.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/esp32s3/libheltec_halow.a -------------------------------------------------------------------------------- /libraries/wifi-halow/src/esp32s3/libmm6108.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/esp32s3/libmm6108.a -------------------------------------------------------------------------------- /libraries/wifi-halow/src/esp32s3/libmmipal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/esp32s3/libmmipal.a -------------------------------------------------------------------------------- /libraries/wifi-halow/src/esp32s3/libmorse.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/esp32s3/libmorse.a -------------------------------------------------------------------------------- /libraries/wifi-halow/src/halow_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/halow_config.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/libesp_netif.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/libesp_netif.a -------------------------------------------------------------------------------- /libraries/wifi-halow/src/liblwip.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/liblwip.a -------------------------------------------------------------------------------- /libraries/wifi-halow/src/loadconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/loadconfig.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmhal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmhal.c -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmhal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmhal.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmhal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmhal_flash.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmhal_wlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmhal_wlan.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmipal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmipal.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmiperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmiperf.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmnetif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmnetif.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmosal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmosal.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmosal_shim_freertos_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmosal_shim_freertos_esp32.c -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmport.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmwlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmwlan.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/mmwlan_regdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/mmwlan_regdb.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/slip.c -------------------------------------------------------------------------------- /libraries/wifi-halow/src/slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/slip.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/ssl_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/ssl_client.cpp -------------------------------------------------------------------------------- /libraries/wifi-halow/src/ssl_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/ssl_client.h -------------------------------------------------------------------------------- /libraries/wifi-halow/src/wlan_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/libraries/wifi-halow/src/wlan_hal.c -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/package.json -------------------------------------------------------------------------------- /package/package_esp32_index.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/package/package_esp32_index.template.json -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/platform.txt -------------------------------------------------------------------------------- /programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/programmers.txt -------------------------------------------------------------------------------- /tools/espota.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/espota.exe -------------------------------------------------------------------------------- /tools/espota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/espota.py -------------------------------------------------------------------------------- /tools/gen_crt_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/gen_crt_bundle.py -------------------------------------------------------------------------------- /tools/gen_esp32part.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/gen_esp32part.exe -------------------------------------------------------------------------------- /tools/gen_esp32part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/gen_esp32part.py -------------------------------------------------------------------------------- /tools/gen_insights_package.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/gen_insights_package.exe -------------------------------------------------------------------------------- /tools/gen_insights_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/gen_insights_package.py -------------------------------------------------------------------------------- /tools/get.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/get.exe -------------------------------------------------------------------------------- /tools/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/get.py -------------------------------------------------------------------------------- /tools/ide-debug/svd/esp32.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/ide-debug/svd/esp32.svd -------------------------------------------------------------------------------- /tools/ide-debug/svd/esp32c2.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/ide-debug/svd/esp32c2.svd -------------------------------------------------------------------------------- /tools/ide-debug/svd/esp32c3.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/ide-debug/svd/esp32c3.svd -------------------------------------------------------------------------------- /tools/ide-debug/svd/esp32c6.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/ide-debug/svd/esp32c6.svd -------------------------------------------------------------------------------- /tools/ide-debug/svd/esp32h2.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/ide-debug/svd/esp32h2.svd -------------------------------------------------------------------------------- /tools/ide-debug/svd/esp32s2.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/ide-debug/svd/esp32s2.svd -------------------------------------------------------------------------------- /tools/ide-debug/svd/esp32s3.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/ide-debug/svd/esp32s3.svd -------------------------------------------------------------------------------- /tools/ide-debug/svd/esp8266.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/ide-debug/svd/esp8266.svd -------------------------------------------------------------------------------- /tools/partitions/app3M_fat9M_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/app3M_fat9M_16MB.csv -------------------------------------------------------------------------------- /tools/partitions/app3M_fat9M_fact512k_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/app3M_fat9M_fact512k_16MB.csv -------------------------------------------------------------------------------- /tools/partitions/app3M_spiffs9M_fact512k_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/app3M_spiffs9M_fact512k_16MB.csv -------------------------------------------------------------------------------- /tools/partitions/bare_minimum_2MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/bare_minimum_2MB.csv -------------------------------------------------------------------------------- /tools/partitions/boot_app0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/boot_app0.bin -------------------------------------------------------------------------------- /tools/partitions/default.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/default.bin -------------------------------------------------------------------------------- /tools/partitions/default.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/default.csv -------------------------------------------------------------------------------- /tools/partitions/default_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/default_16MB.csv -------------------------------------------------------------------------------- /tools/partitions/default_8MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/default_8MB.csv -------------------------------------------------------------------------------- /tools/partitions/default_ffat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/default_ffat.csv -------------------------------------------------------------------------------- /tools/partitions/default_ffat_8MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/default_ffat_8MB.csv -------------------------------------------------------------------------------- /tools/partitions/esp_sr_16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/esp_sr_16.csv -------------------------------------------------------------------------------- /tools/partitions/ffat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/ffat.csv -------------------------------------------------------------------------------- /tools/partitions/huge_app.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/huge_app.csv -------------------------------------------------------------------------------- /tools/partitions/large_fat_32MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/large_fat_32MB.csv -------------------------------------------------------------------------------- /tools/partitions/large_ffat_8MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/large_ffat_8MB.csv -------------------------------------------------------------------------------- /tools/partitions/large_littlefs_32MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/large_littlefs_32MB.csv -------------------------------------------------------------------------------- /tools/partitions/large_spiffs_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/large_spiffs_16MB.csv -------------------------------------------------------------------------------- /tools/partitions/large_spiffs_8MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/large_spiffs_8MB.csv -------------------------------------------------------------------------------- /tools/partitions/max_app_8MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/max_app_8MB.csv -------------------------------------------------------------------------------- /tools/partitions/min_spiffs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/min_spiffs.csv -------------------------------------------------------------------------------- /tools/partitions/minimal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/minimal.csv -------------------------------------------------------------------------------- /tools/partitions/no_ota.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/no_ota.csv -------------------------------------------------------------------------------- /tools/partitions/noota_3g.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/noota_3g.csv -------------------------------------------------------------------------------- /tools/partitions/noota_3gffat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/noota_3gffat.csv -------------------------------------------------------------------------------- /tools/partitions/noota_ffat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/noota_ffat.csv -------------------------------------------------------------------------------- /tools/partitions/rainmaker.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/rainmaker.csv -------------------------------------------------------------------------------- /tools/partitions/tinyuf2-partitions-16MB-noota.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/tinyuf2-partitions-16MB-noota.csv -------------------------------------------------------------------------------- /tools/partitions/tinyuf2-partitions-16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/tinyuf2-partitions-16MB.csv -------------------------------------------------------------------------------- /tools/partitions/tinyuf2-partitions-4MB-noota.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/tinyuf2-partitions-4MB-noota.csv -------------------------------------------------------------------------------- /tools/partitions/tinyuf2-partitions-4MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/tinyuf2-partitions-4MB.csv -------------------------------------------------------------------------------- /tools/partitions/tinyuf2-partitions-8MB-noota.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/tinyuf2-partitions-8MB-noota.csv -------------------------------------------------------------------------------- /tools/partitions/tinyuf2-partitions-8MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/tinyuf2-partitions-8MB.csv -------------------------------------------------------------------------------- /tools/partitions/zigbee.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/zigbee.csv -------------------------------------------------------------------------------- /tools/partitions/zigbee_zczr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/partitions/zigbee_zczr.csv -------------------------------------------------------------------------------- /tools/platformio-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/tools/platformio-build.py -------------------------------------------------------------------------------- /variants/HT-HC32/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/variants/HT-HC32/partitions.csv -------------------------------------------------------------------------------- /variants/HT-HC32/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/variants/HT-HC32/pins_arduino.h -------------------------------------------------------------------------------- /variants/HT-HC33/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/variants/HT-HC33/partitions.csv -------------------------------------------------------------------------------- /variants/HT-HC33/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelTecAutomation/ESP_HaLow/HEAD/variants/HT-HC33/pins_arduino.h --------------------------------------------------------------------------------