├── .gitattributes ├── BMP-LCD.zip ├── ESP+kit+Specification.pdf ├── ESP32-DrawLogo └── ESP32-DrawLogo.ino ├── ESP32-DrawLogo2 └── ESP32-DrawLogo2.ino ├── ESP32-examples-Inet-heltec.zip ├── ESP32-examples-Inet-heltec ├── Kconfig ├── Makefile.projbuild ├── README.md ├── appveyor.yml ├── boards.txt ├── component.mk ├── cores │ └── esp32 │ │ ├── Arduino.h │ │ ├── Client.h │ │ ├── Esp.cpp │ │ ├── Esp.h │ │ ├── HardwareSerial.cpp │ │ ├── HardwareSerial.h │ │ ├── IPAddress.cpp │ │ ├── IPAddress.h │ │ ├── IPv6Address.cpp │ │ ├── IPv6Address.h │ │ ├── MD5Builder.cpp │ │ ├── MD5Builder.h │ │ ├── Print.cpp │ │ ├── Print.h │ │ ├── Printable.h │ │ ├── Server.h │ │ ├── Stream.cpp │ │ ├── Stream.h │ │ ├── StreamString.cpp │ │ ├── StreamString.h │ │ ├── Udp.h │ │ ├── WCharacter.h │ │ ├── WMath.cpp │ │ ├── WString.cpp │ │ ├── WString.h │ │ ├── base64.cpp │ │ ├── base64.h │ │ ├── binary.h │ │ ├── cbuf.cpp │ │ ├── cbuf.h │ │ ├── esp32-hal-adc.c │ │ ├── esp32-hal-adc.h │ │ ├── esp32-hal-dac.c │ │ ├── esp32-hal-dac.h │ │ ├── esp32-hal-gpio.c │ │ ├── esp32-hal-gpio.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-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-touch.c │ │ ├── esp32-hal-touch.h │ │ ├── esp32-hal-uart.c │ │ ├── esp32-hal-uart.h │ │ ├── esp32-hal.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 ├── doc │ ├── arduino-ide.png │ ├── esp32_pinmap.png │ ├── win-gui-1.png │ ├── win-gui-2.png │ ├── win-gui-3.png │ ├── win-gui-4.png │ ├── win-gui-5.png │ ├── win-gui-update-1.png │ ├── win-gui-update-2.png │ └── windows.md ├── libraries │ ├── ESP32 │ │ ├── examples │ │ │ ├── AnalogOut │ │ │ │ ├── LEDCSoftwareFade │ │ │ │ │ └── LEDCSoftwareFade.ino │ │ │ │ └── SigmaDelta │ │ │ │ │ └── SigmaDelta.ino │ │ │ ├── Timer │ │ │ │ └── RepeatTimer │ │ │ │ │ └── RepeatTimer.ino │ │ │ └── Touch │ │ │ │ ├── TouchInterrupt │ │ │ │ └── TouchInterrupt.ino │ │ │ │ └── TouchRead │ │ │ │ └── TouchRead.ino │ │ ├── library.properties │ │ └── src │ │ │ └── dummy.h │ ├── LoRa │ │ ├── .travis.yml │ │ ├── API.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ │ ├── LoRaReceiver │ │ │ │ └── LoRaReceiver.ino │ │ │ ├── LoRaReceiverCallback │ │ │ │ └── LoRaReceiverCallback.ino │ │ │ └── LoRaSender │ │ │ │ └── LoRaSender.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── LoRa.cpp │ │ │ └── LoRa.h │ ├── OLED │ │ ├── .travis.yml │ │ ├── OLEDDisplay.cpp │ │ ├── OLEDDisplay.h │ │ ├── OLEDDisplayFonts.h │ │ ├── OLEDDisplayUi.cpp │ │ ├── OLEDDisplayUi.h │ │ ├── README.md │ │ ├── SSD1306.h │ │ ├── SSD1306Brzo.h │ │ ├── SSD1306Spi.h │ │ ├── SSD1306Wire.h │ │ ├── UPGRADE-3.0.md │ │ ├── examples │ │ │ ├── SSD1306DrawingDemo │ │ │ │ └── SSD1306DrawingDemo.ino │ │ │ ├── SSD1306SimpleDemo │ │ │ │ ├── SSD1306SimpleDemo.ino │ │ │ │ └── images.h │ │ │ └── SSD1306UiDemo │ │ │ │ ├── SSD1306UiDemo.ino │ │ │ │ └── images.h │ │ ├── library.json │ │ ├── library.properties │ │ └── license │ ├── Preferences │ │ ├── examples │ │ │ └── StartCounter │ │ │ │ └── StartCounter.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── Preferences.cpp │ │ │ └── Preferences.h │ ├── SPI │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── SPI.cpp │ │ │ └── SPI.h │ ├── WiFi │ │ ├── examples │ │ │ ├── SimpleWiFiServer │ │ │ │ └── SimpleWiFiServer.ino │ │ │ ├── WiFiClient │ │ │ │ └── WiFiClient.ino │ │ │ ├── WiFiClientBasic │ │ │ │ └── WiFiClientBasic.ino │ │ │ ├── WiFiClientEvents │ │ │ │ └── WiFiClientEvents.ino │ │ │ ├── WiFiIPv6 │ │ │ │ └── WiFiIPv6.ino │ │ │ ├── WiFiMulti │ │ │ │ └── WiFiMulti.ino │ │ │ ├── WiFiScan │ │ │ │ ├── WiFiScan.ino │ │ │ │ └── images.h │ │ │ ├── WiFiSmartConfig │ │ │ │ └── WiFiSmartConfig.ino │ │ │ └── WiFiUDPClient │ │ │ │ ├── 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 │ │ ├── examples │ │ │ └── WiFiClientSecure │ │ │ │ └── WiFiClientSecure.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── WiFiClientSecure.cpp │ │ │ ├── WiFiClientSecure.h │ │ │ ├── ssl_client.cpp │ │ │ └── ssl_client.h │ └── Wire │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ ├── Wire.cpp │ │ └── Wire.h ├── package.json ├── package │ └── package_esp32_index.template.json ├── platform.txt ├── programmers.txt └── variants │ ├── WIFI_Kit_32 │ └── pins_arduino.h │ └── WIFI_LoRa_32 │ └── pins_arduino.h ├── Heltec_WIFI-LoRa-32_DiagramPinout.jpg ├── IMG_20170827_145742.jpg ├── README.md ├── esp32-ble-test └── esp32-ble-test.ino ├── esp32_datasheet_en.pdf ├── esp32_pcap_serial-edited └── esp32_pcap_serial-edited.ino ├── hackaday.png └── house.bmp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/.gitattributes -------------------------------------------------------------------------------- /BMP-LCD.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/BMP-LCD.zip -------------------------------------------------------------------------------- /ESP+kit+Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP+kit+Specification.pdf -------------------------------------------------------------------------------- /ESP32-DrawLogo/ESP32-DrawLogo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-DrawLogo/ESP32-DrawLogo.ino -------------------------------------------------------------------------------- /ESP32-DrawLogo2/ESP32-DrawLogo2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-DrawLogo2/ESP32-DrawLogo2.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec.zip -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/Kconfig -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/Makefile.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/Makefile.projbuild -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/README.md -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/appveyor.yml -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/boards.txt -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/component.mk -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Arduino.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Client.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Esp.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Esp.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/HardwareSerial.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/HardwareSerial.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/IPAddress.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/IPAddress.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/IPv6Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/IPv6Address.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/IPv6Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/IPv6Address.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/MD5Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/MD5Builder.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/MD5Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/MD5Builder.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Print.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Print.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Printable.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Server.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Stream.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Stream.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/StreamString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/StreamString.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/StreamString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/StreamString.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/Udp.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/WCharacter.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/WMath.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/WString.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/WString.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/base64.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/base64.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/binary.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/cbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/cbuf.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/cbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/cbuf.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-adc.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-adc.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-dac.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-dac.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-gpio.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-gpio.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-i2c.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-i2c.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-ledc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-ledc.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-ledc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-ledc.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-log.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-matrix.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-matrix.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-misc.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-sigmadelta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-sigmadelta.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-sigmadelta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-sigmadelta.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-spi.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-spi.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-time.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-timer.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-timer.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-touch.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-touch.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-uart.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal-uart.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/esp32-hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/esp32-hal.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/libb64/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/libb64/AUTHORS -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/libb64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/libb64/LICENSE -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/libb64/cdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/libb64/cdecode.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/libb64/cdecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/libb64/cdecode.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/libb64/cencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/libb64/cencode.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/libb64/cencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/libb64/cencode.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/main.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/pgmspace.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/stdlib_noniso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/stdlib_noniso.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/stdlib_noniso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/stdlib_noniso.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/wiring_private.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/wiring_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/wiring_pulse.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/cores/esp32/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/cores/esp32/wiring_shift.c -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/arduino-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/arduino-ide.png -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/esp32_pinmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/esp32_pinmap.png -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/win-gui-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/win-gui-1.png -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/win-gui-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/win-gui-2.png -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/win-gui-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/win-gui-3.png -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/win-gui-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/win-gui-4.png -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/win-gui-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/win-gui-5.png -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/win-gui-update-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/win-gui-update-1.png -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/win-gui-update-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/win-gui-update-2.png -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/doc/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/doc/windows.md -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/ESP32/examples/AnalogOut/LEDCSoftwareFade/LEDCSoftwareFade.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/ESP32/examples/AnalogOut/LEDCSoftwareFade/LEDCSoftwareFade.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/ESP32/examples/AnalogOut/SigmaDelta/SigmaDelta.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/ESP32/examples/AnalogOut/SigmaDelta/SigmaDelta.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/ESP32/examples/Timer/RepeatTimer/RepeatTimer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/ESP32/examples/Timer/RepeatTimer/RepeatTimer.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/ESP32/examples/Touch/TouchInterrupt/TouchInterrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/ESP32/examples/Touch/TouchInterrupt/TouchInterrupt.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/ESP32/examples/Touch/TouchRead/TouchRead.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/ESP32/examples/Touch/TouchRead/TouchRead.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/ESP32/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/ESP32/library.properties -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/ESP32/src/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/ESP32/src/dummy.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/.travis.yml -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/API.md -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/LICENSE -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/README.md -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/examples/LoRaReceiver/LoRaReceiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/examples/LoRaReceiver/LoRaReceiver.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/examples/LoRaReceiverCallback/LoRaReceiverCallback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/examples/LoRaReceiverCallback/LoRaReceiverCallback.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/examples/LoRaSender/LoRaSender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/examples/LoRaSender/LoRaSender.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/keywords.txt -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/library.properties -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/src/LoRa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/src/LoRa.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/LoRa/src/LoRa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/LoRa/src/LoRa.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/.travis.yml -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplay.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplay.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplayFonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplayFonts.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplayUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplayUi.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplayUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/OLEDDisplayUi.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/README.md -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/SSD1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/SSD1306.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/SSD1306Brzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/SSD1306Brzo.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/SSD1306Spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/SSD1306Spi.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/SSD1306Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/SSD1306Wire.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/UPGRADE-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/UPGRADE-3.0.md -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306DrawingDemo/SSD1306DrawingDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306DrawingDemo/SSD1306DrawingDemo.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306SimpleDemo/SSD1306SimpleDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306SimpleDemo/SSD1306SimpleDemo.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306SimpleDemo/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306SimpleDemo/images.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306UiDemo/SSD1306UiDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306UiDemo/SSD1306UiDemo.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306UiDemo/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/examples/SSD1306UiDemo/images.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/library.json -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/library.properties -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/OLED/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/OLED/license -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/Preferences/examples/StartCounter/StartCounter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/Preferences/examples/StartCounter/StartCounter.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/Preferences/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/Preferences/keywords.txt -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/Preferences/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/Preferences/library.properties -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/Preferences/src/Preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/Preferences/src/Preferences.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/Preferences/src/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/Preferences/src/Preferences.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/SPI/library.properties -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/SPI/src/SPI.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/SimpleWiFiServer/SimpleWiFiServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/SimpleWiFiServer/SimpleWiFiServer.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiClient/WiFiClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiClient/WiFiClient.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiClientBasic/WiFiClientBasic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiClientBasic/WiFiClientBasic.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiClientEvents/WiFiClientEvents.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiClientEvents/WiFiClientEvents.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiIPv6/WiFiIPv6.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiIPv6/WiFiIPv6.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiMulti/WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiMulti/WiFiMulti.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiScan/WiFiScan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiScan/WiFiScan.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiScan/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiScan/images.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiSmartConfig/WiFiSmartConfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiSmartConfig/WiFiSmartConfig.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiUDPClient/WiFiUDPClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiUDPClient/WiFiUDPClient.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiUDPClient/udp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiUDPClient/udp_server.py -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiUDPClient/udp_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/examples/WiFiUDPClient/udp_server.rb -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/keywords.txt -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/library.properties -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFi.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFi.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiAP.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiAP.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiClient.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiClient.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiGeneric.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiGeneric.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiMulti.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiMulti.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiSTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiSTA.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiSTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiSTA.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiScan.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiScan.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiServer.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiServer.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiType.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiUdp.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFi/src/WiFiUdp.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/examples/WiFiClientSecure/WiFiClientSecure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/examples/WiFiClientSecure/WiFiClientSecure.ino -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/keywords.txt -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/library.properties -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/src/WiFiClientSecure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/src/WiFiClientSecure.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/src/WiFiClientSecure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/src/WiFiClientSecure.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/src/ssl_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/src/ssl_client.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/src/ssl_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/WiFiClientSecure/src/ssl_client.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/Wire/library.properties -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/Wire/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/Wire/src/Wire.cpp -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/libraries/Wire/src/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/libraries/Wire/src/Wire.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/package.json -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/package/package_esp32_index.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/package/package_esp32_index.template.json -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/platform.txt -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/programmers.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/variants/WIFI_Kit_32/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/variants/WIFI_Kit_32/pins_arduino.h -------------------------------------------------------------------------------- /ESP32-examples-Inet-heltec/variants/WIFI_LoRa_32/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/ESP32-examples-Inet-heltec/variants/WIFI_LoRa_32/pins_arduino.h -------------------------------------------------------------------------------- /Heltec_WIFI-LoRa-32_DiagramPinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/Heltec_WIFI-LoRa-32_DiagramPinout.jpg -------------------------------------------------------------------------------- /IMG_20170827_145742.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/IMG_20170827_145742.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/README.md -------------------------------------------------------------------------------- /esp32-ble-test/esp32-ble-test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/esp32-ble-test/esp32-ble-test.ino -------------------------------------------------------------------------------- /esp32_datasheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/esp32_datasheet_en.pdf -------------------------------------------------------------------------------- /esp32_pcap_serial-edited/esp32_pcap_serial-edited.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/esp32_pcap_serial-edited/esp32_pcap_serial-edited.ino -------------------------------------------------------------------------------- /hackaday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/hackaday.png -------------------------------------------------------------------------------- /house.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darthm0e/esp32-101/HEAD/house.bmp --------------------------------------------------------------------------------