micropython-esp32
micropython-esp32 copied to clipboard
Old port of MicroPython to the ESP32 -- new port is at https://github.com/micropython/micropython
HI, Is it possible to setup external crystal to use with RTC to have a good time, because I don't see option ? Sincerely Eric
I'm going to begin [development](https://github.com/MrSurly/micropython-esp32/tree/dev-mcpwm) on a thin wrapper around [MCPWM](http://esp-idf.readthedocs.io/en/latest/api-reference/peripherals/mcpwm.html), starting with implementation of capture.
Hello, I have MicroPython v1.9.1-219-g3580284e installed at my ESP32 NodeMCU development board, but unfortunately I can't find APA102 library included altought it should be in ESP8266 1.9.1 microPython. ``` from...
I've read the closed issue https://github.com/micropython/micropython-esp32/issues/172 where smeedy got the ethernet working in a ESP32-GATEWAY board from same vendor. The PHY and GPIOs used are the same in both boards...
##### End Goal Using DTLS for LoRa data. Why? Because I'm using the RFM95 (sx1276) module that doesn't appear to have encryption, and the RFM69 (sx1231)modules (that do have encryption)...
Looks like adding CA cert chain validation is pretty trivial in mbedtls -- any reason it wasn't included? Referring to `extmod/modussl_mbedtls.c`
This adds WPS support. In Python WPS can be used like this: ```python from network import WLAN,STA_IF from network import STA_WPS_PROBING, STA_WPS_SUCCESS, STA_WPS_FAILED, STA_WPS_TIMEOUT from time import sleep wlan =...
I have a simple Wifi AP mode setup page, which is served roughly like so: ``` import network import socket ap = network.WLAN(network.AP_IF) sta_if = network.WLAN(network.STA_IF) ap.active(True) sta_if.active(True) ap.config(essid="test") ap.ifconfig(('1.1.1.1',...
Hi When I'm trying to connect to AP that is currently out-of-range ESP starts to spin trying to connect (with error: No AP found). Only way to stop it is...
Issuing sleep_ms(t) can cause ticks to be missed. The number of ms lost is min(10, t). The following script demonstrates this with timer callbacks apparently occurring early. Note that they...