Search found 847 matches

by OutoftheBOTS_
Mon Jul 18, 2022 8:12 am
Forum: ESP32 boards
Topic: WiFi station mode password
Replies: 5
Views: 3952

Re: WiFi station mode password

ap.config(essid="ESP32", password="OOTB", security=network.AUTH_WPA2_PSK) That threw an error Traceback (most recent call last): File "boot.py", line 4, in <module> ValueError: unknown config param MicroPython v1.19.1 on 2022-06-18; ESP32 module with ESP32 Type "help()" for more information. but th...
by OutoftheBOTS_
Fri Jul 15, 2022 8:22 am
Forum: ESP32 boards
Topic: WiFi station mode password
Replies: 5
Views: 3952

Re: WiFi station mode password

thanks
by OutoftheBOTS_
Thu Jul 14, 2022 12:13 am
Forum: ESP32 boards
Topic: WiFi station mode password
Replies: 5
Views: 3952

WiFi station mode password

I have added this line in my Wifi setup
ap.config(essid="ESP32", password="OOTB")
It sets the essid fine but doesn't require a password to connect.

Is there a way to password protect the ESP32 in station mode so that only people with the password can connect to the ESP32
by OutoftheBOTS_
Sat Jun 11, 2022 7:43 am
Forum: ESP32 boards
Topic: Stream ESP32 cam via web sockets
Replies: 3
Views: 4088

Re: Stream ESP32 cam via web sockets

Thanks for your response.

I think it is definitely possible but I will have to spend a little time to work out how to hack it.

I am not wanting to stream it by hosting a webpage but rather just send it to python on my PC via websocket.
by OutoftheBOTS_
Wed Jun 08, 2022 10:33 pm
Forum: ESP32 boards
Topic: Stream ESP32 cam via web sockets
Replies: 3
Views: 4088

Stream ESP32 cam via web sockets

I know people have made custom firmwares for ESP32 cam. I have seen on the net people streaming ESP32 cam using Ardunio and I have seen people sending a single frame with micropython. Has anyone manged to stream a lower res video stream from ESP32 cam at a reasonable frame rate?? My use case is: I r...
by OutoftheBOTS_
Thu May 05, 2022 10:40 am
Forum: ESP32 boards
Topic: reload python script
Replies: 3
Views: 3084

Re: reload python script

Thank you. I feel a little silly not noticing that myself :(
by OutoftheBOTS_
Thu May 05, 2022 4:34 am
Forum: ESP32 boards
Topic: reload python script
Replies: 3
Views: 3084

reload python script

I am currently using micropython running on an ESP32 for teaching high school kids robotics. Once their robot becomes mobile we need to use webREPL to program the robot. We can upload the script with webREPL then type import script_name and it will run their script. Once the script is run then we ne...
by OutoftheBOTS_
Tue Mar 29, 2022 8:32 pm
Forum: Drivers for External Components
Topic: 8-bit parallel TFT driver for micropython ?
Replies: 21
Views: 95563

Re: 8-bit parallel TFT driver for micropython ?

I have played with 16bit, 8bit and SPI on all these little TFT screens and this is what I have found. First Lobo did write a very fast SPI TFT screen driver fro ESP32 see a video of it here running in Micropython https://www.youtube.com/watch?v=pnJ1V8hjWoE Most of my playing with 16 bit and 8 bit wa...
by OutoftheBOTS_
Wed Mar 09, 2022 9:14 am
Forum: General Discussion and Questions
Topic: How do upload code to the board with Thonny
Replies: 6
Views: 4469

Re: How do upload code to the board with Thonny

So ardunio has a eprom library that allows you to store data to the flash of the MCU. With micropython the remaining flash left after the firmware is uploaded is formatted to a fat32 or spiffs format for storage of your python scripts or any other data you want to write to the flash
by OutoftheBOTS_
Tue Mar 08, 2022 8:49 pm
Forum: General Discussion and Questions
Topic: How do upload code to the board with Thonny
Replies: 6
Views: 4469

Re: How do upload code to the board with Thonny

If the board is plugged in when thornny starts up then it usually detects the board and will switch to using the python interrupter on the board. If it doesn't detect then go to tools>Options>interrupter and select the board your using.