Search found 6 matches

by uncoded0123
Fri Feb 03, 2023 4:39 am
Forum: ESP32 boards
Topic: ESP32 using a Camera and saving to an SD
Replies: 3
Views: 20995

Re: ESP32 using a Camera and saving to an SD

I don't know if this will help, it helped me with something similar. Have you tried try / except clause, with machine.reset() in except (while making sure to put sleep before it resets so it doesn't get stuck in auto infinite loop)?
by uncoded0123
Sat Feb 26, 2022 9:19 am
Forum: ESP32 boards
Topic: connection issue, WEP vs WPA, wifi networks interferences
Replies: 11
Views: 18374

Re: connection issue, WEP vs WPA, wifi networks interferences

'''Is there any way I can make them reboot without having to switch them off and on again?
'''

Code: Select all

import time
from machine import reset

try:
    #stuff
except:
    time.sleep(0.5)
    reset()
by uncoded0123
Sat Feb 26, 2022 9:16 am
Forum: ESP32 boards
Topic: connection issue, WEP vs WPA, wifi networks interferences
Replies: 11
Views: 18374

Re: connection issue, WEP vs WPA, wifi networks interferences

'''Is there any way I can make them reboot without having to switch them off and on again?
'''
import time
from machine import reset

try:
#stuff
except:
time.sleep(0.5)
reset()
by uncoded0123
Thu Jun 03, 2021 6:07 am
Forum: ESP32 boards
Topic: ESP32-CAM-MB + Development Board CH340G
Replies: 28
Views: 46148

Re: ESP32-CAM-MB + Development Board CH340G

Hi, Has anyone resolved the issue of ESP32-CAM-MB not working with MicroPython? It works with Arduino, but not with MicroPython. I've used Thonny to upload MicroPython firmware. It says success. But it won't go to REPL mode, and says this: "Device is busy or does not respond. Your options: - wait un...
by uncoded0123
Fri Mar 26, 2021 2:16 am
Forum: Drivers for External Components
Topic: Receive and transmit IR remote codes
Replies: 32
Views: 34333

Re: Receive and transmit IR remote codes

Thanks Peter, for this and all the other contributions you have done for programmers.
by uncoded0123
Mon Mar 15, 2021 6:19 pm
Forum: ESP32 boards
Topic: Anyone recommending a good IDE?
Replies: 20
Views: 25978

Re: Anyone recommending a good IDE?

Thonny is the best IDE I've found for MicroPython ESP-32 and ESP-8266, you can also flash using Thonny.

Late reply, but it may help others too.