Search found 847 matches

by OutoftheBOTS_
Sat Jan 22, 2022 11:20 pm
Forum: ESP32 boards
Topic: Webrepl
Replies: 11
Views: 13654

Re: Webrepl

OK I got a little further and downloaded the "webrepl.html" from the github and opened it with me web browser then put "ws://192.168.0.146:8266" in the address and hit connect. This is the output from the USB repl WebREPL connection from: ('192.168.0.80', 57581) dupterm: EOF received, deactivating t...
by OutoftheBOTS_
Sat Jan 22, 2022 11:03 pm
Forum: ESP32 boards
Topic: Webrepl
Replies: 11
Views: 13654

Webrepl

I don't seem to be able to get Webrepl to load in my browser. Here's the code in my Boot.py import network import time wlan = network.WLAN(network.STA_IF) # create station interface wlan.active(True) # activate the interface print("trying to connect to WiFi") if not wlan.isconnected(): wlan.connect(...
by OutoftheBOTS_
Thu Nov 25, 2021 11:23 pm
Forum: ESP32 boards
Topic: Choosing ESP32 variant
Replies: 7
Views: 5850

Re: Choosing ESP32 variant

Thanks for both the suggestions.
by OutoftheBOTS_
Thu Nov 25, 2021 11:17 pm
Forum: ESP32 boards
Topic: mu editor
Replies: 7
Views: 3557

Re: mu editor

After trying Thorny editor it seems to be much more functional with the ESP32 Wroom module where it is quite easy to save code to the board as well as run it live and also use repl.

On the rare occasions we have to drop files that are not python scripts I suppose we will just use ampy.
by OutoftheBOTS_
Tue Nov 23, 2021 3:28 am
Forum: ESP32 boards
Topic: Choosing ESP32 variant
Replies: 7
Views: 5850

Choosing ESP32 variant

I am teaching kids tech (mainly robotics and programming). I want to develop a micropython course for high school kids. I would like to use a ESP32 board as they tend to be very cheap and this allows me to give away the board at the end of the course for the kids to take home and continue to play wi...
by OutoftheBOTS_
Tue Nov 23, 2021 3:16 am
Forum: ESP32 boards
Topic: mu editor
Replies: 7
Views: 3557

Re: mu editor

ESP32s (before the S2, anyway) can't do virtual drives. I'd recommend Thonny, as it understands more types of devices than mu I assume that is because before the S2 ESP32 didn't have native USB. I think to have virtual drive will be much better for kids to use as having to use tools like ampy or rs...
by OutoftheBOTS_
Tue Nov 23, 2021 1:02 am
Forum: ESP32 boards
Topic: mu editor
Replies: 7
Views: 3557

mu editor

I am currently delivering tech education courses in a number or settings like schools, universities and council tech hubs. The courses are mainly robotics and programming and mainly for children between age 10 and 18 depending upon the course. I want to do some micro-python stuff for high school kid...
by OutoftheBOTS_
Thu Aug 26, 2021 8:58 pm
Forum: General Discussion and Questions
Topic: Ardunio now getting in to Micropython
Replies: 0
Views: 1412

Ardunio now getting in to Micropython

It seems that Ardunio is responding to the ground it was loosing to Micopython and has deiced if you can't beat them then join them, https://www.hackster.io/news/arduino-openmv-bring-official-micropython-support-to-the-nano-33-ble-sense-and-rp2040-connect-7110e1072106?fbclid=IwAR291_7QH2EZ7ajOF7kDh2...
by OutoftheBOTS_
Fri Mar 26, 2021 8:21 am
Forum: MicroPython pyboard
Topic: Battery and servo and USB
Replies: 5
Views: 4137

Re: Battery and servo and USB

Perfect. Thanks for your advice :)
by OutoftheBOTS_
Fri Mar 26, 2021 7:46 am
Forum: MicroPython pyboard
Topic: Servo won't take negitive angles
Replies: 5
Views: 4673

Re: Servo won't take negitive angles

With current firmware: >>> from pyb import Servo >>> s = Servo(1) >>> s.angle(80) >>> s.angle() 79 >>> s.angle(-80) >>> s.angle() -79 >>> s.pulse_width() 640 >>> s.angle(0) >>> s.pulse_width() 1500 >>> s.angle(90) >>> s.pulse_width() 2420 >>> Why can you not update firmware? It is usually easily do...