Search found 43 matches

by oserror
Tue Feb 12, 2019 4:42 pm
Forum: ESP32 boards
Topic: Issues blinking ESP32 onboard LED
Replies: 7
Views: 25804

Re: Issues blinking ESP32 onboard LED

Okay, the last post is still being approved. I managed to get the LED to work by setting this in sdkconfig.h: #define CONFIG_CONSOLE_UART_CUSTOM 17 #define CONFIG_CONSOLE_UART_CUSTOM_NUM_0 16 #define CONFIG_CONSOLE_UART_TX_GPIO 17 #define CONFIG_CONSOLE_UART_RX_GPIO 16 I then had to hook up with a U...
by oserror
Tue Feb 12, 2019 3:31 pm
Forum: ESP32 boards
Topic: Issues blinking ESP32 onboard LED
Replies: 7
Views: 25804

Re: Issues blinking ESP32 onboard LED

I've been trying to change the REPL ports but so far no luck. I saw this issue on GitHub: https://github.com/micropython/micropython-esp32/issues/158 It seems relevant. I tried these settings in sdkconfig.h #define CONFIG_CONSOLE_UART_CUSTOM 2 #define CONFIG_CONSOLE_UART_CUSTOM_NUM 0 #define CONFIG_...
by oserror
Tue Feb 12, 2019 12:36 am
Forum: ESP32 boards
Topic: Issues blinking ESP32 onboard LED
Replies: 7
Views: 25804

Issues blinking ESP32 onboard LED

The below is with MicroPython 1.10 stable. This locks up my ESP32 from AZDelivery (found on USA Amazon.com) >>> from machine import Pin >>> led = Pin(1, Pin.OUT, 1) as well as this: >>> from machine import Pin >>> led = Pin(1, Pin.OUT) In both cases, the LED lights solid blue and stays lit, but the ...