Micropython: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
mNo edit summary
Brian Wilson (talk | contribs)
 
(4 intermediate revisions by the same user not shown)
Line 17: Line 17:
Since there is no operating system running, there is no filesystem per se, just internal and sd card. We don't have an SD card for the ESP32.
Since there is no operating system running, there is no filesystem per se, just internal and sd card. We don't have an SD card for the ESP32.


==SenseCap D1 Indicator==
==SenseCap Indicator==
===ESP32-S3 ===
Described in detail on the [[SenseCAP Indicator]] page


See the [[Seeed Studio]] page for installation of the binary. Or use Mu, it's built in.
==ESP32-S3==
==== Initial tests ====
There are no LEDs to blink here. I should be able to mess around with WiFI and BT since they are built in to the ESP.
 
The button is on GPIO38. I was able to write "esp_button_test.py".  
 
Running Mu, I am already using the UART so I know it works. I could also test comms with the RP2040 but I think that goes in a future section.


There are no LEDs to blink here. I should be able to mess around with WiFI and BT since they are built in to the ESP.
I guess I will try the wireless interfaces. Okay, I can connect WiFi and get an IP address using "esp_wifi_test.py".  


The button is on GPIO38.
I think I will skip BT for now, and press on with using the LCD. To do that, I will need to know a lot more.


LVGL - has to be imported, so I need a code file for it.
==== Graphics ====
[[LVGL]] - has to be imported, so I need a code file for it.


===RP2040===
===RP2040===
[[Category: IoT]]
[[Category: IoT]]
[[Category: Electronics]]
[[Category: Electronics]]

Latest revision as of 00:55, 30 October 2024

Using VSCODE

NOT YET!

I'm looking for the right Micropython extension for VSCODE now. I tried many. For now I am using Mu. Maybe Seeed ArduPy works? Nope, there is no ArduPy compatible UF2 at this time.

Maybe Bao Phan's Micropython IDE will work? It was built for MacOS and does not run currently on Windows.

What about MicroPico from paulober? I know it's written for the Pico so I will try it first with the RP2040. Bah, can't find its serial ports and settings file is weird.

Micropython-REPLink by SWC-Fablab?? Also requires a REPL shell, suggests MPFshell.

Imports

I think you have to copy the code file onto the board somehow before you can reference it with "import". It has to be on sys.path.

Since there is no operating system running, there is no filesystem per se, just internal and sd card. We don't have an SD card for the ESP32.

SenseCap Indicator

Described in detail on the SenseCAP Indicator page

ESP32-S3

Initial tests

There are no LEDs to blink here. I should be able to mess around with WiFI and BT since they are built in to the ESP.

The button is on GPIO38. I was able to write "esp_button_test.py".

Running Mu, I am already using the UART so I know it works. I could also test comms with the RP2040 but I think that goes in a future section.

I guess I will try the wireless interfaces. Okay, I can connect WiFi and get an IP address using "esp_wifi_test.py".

I think I will skip BT for now, and press on with using the LCD. To do that, I will need to know a lot more.

Graphics

LVGL - has to be imported, so I need a code file for it.

RP2040