Thanks
Yes, I want to be able to build a firmware file with MicroPython & LGVL.
How do you cross compile for the ESP32? How do you then make the firmware image?
Thanks
Yes, I want to be able to build a firmware file with MicroPython & LGVL.
How do you cross compile for the ESP32? How do you then make the firmware image?
Where would I find the details needed to build an image to run on the Core2?
Thanks
Thanks. Any kind of sound would be great.
My machine module doesn't have the I2S used in this example.
/Chris
I'm developing on the Core2 with Micropython LVGL.
Is there someway to use the 3 capacitive buttons?
This code was very helpful. Thanks!
I tried adding temperature as well:
tmp = i2c.readfrom_mem(MPU6886_ADDRESS, MPU6886_TEMP_OUT_H, 2)
temp = (tmp[0]<<8|tmp[1])
temp = (float(temp) / 326.8) + 25.0;
I'm getting temps of 40.5C (105F). Am I doing something wrong or is this temperature the CPU temp?
Thanks,
/Chris
Sorry for the newbe questions. You've been a big help.
When you say you load files to ram from the boot.py file, how do you access that ram from the main.py file?
I really appreciate the response, but I'm running with an image that just has lvgl and micropython and not the M5 classes.
Looking for how to play a sound with the standard esp32 hardware support on the device.
/Chris
I'm using the LVGL with MicroPython for a project and I'd like to be able to make a click noice when the user interacts with the application's buttons.
Is there any easy way to do that?