Search found 5 matches

by rogierlodewijks
Wed Nov 21, 2018 10:23 am
Forum: ESP32 boards
Topic: High level GUI lib/framework
Replies: 32
Views: 37605

Re: High level GUI lib/framework

@mattyt I would be interested in your library (on top of Loboris's), as it looks like the kind of UI I would be making (3-button type). I've already started building some basic menu widgets and a progress bar but this is all still quite experimental and built on top of Loboris' display module. When ...
by rogierlodewijks
Wed Nov 21, 2018 8:50 am
Forum: ESP32 boards
Topic: High level GUI lib/framework
Replies: 32
Views: 37605

Re: High level GUI lib/framework

Thanks for the replies! Bit off topic but, I have to say it: one of the reasons for coming to uP is the vibrant community with some very nice and active people. It always thrills me seeing open source working in the wild! Anyways, thanks for the handles regarding the UI.. now I have even more option...
by rogierlodewijks
Sun Nov 18, 2018 8:46 pm
Forum: ESP32 boards
Topic: High level GUI lib/framework
Replies: 32
Views: 37605

High level GUI lib/framework

Hi fellow MicroPythonians, I'm in the process of planning/building an app for a device that boasts a GUI (320x240 TFT) and has mostly button-driven inputs. It uses Micropython for its main application logic. I really like the full-featuredness of uP and especially the availability of the async funct...
by rogierlodewijks
Thu Apr 05, 2018 11:25 am
Forum: ESP32 boards
Topic: Is there anyone mount Sdcard successfully on ESP32 ??
Replies: 14
Views: 21620

Re: Is there anyone mount Sdcard successfully on ESP32 ??

Don't know if this helps, but this code works for me, using the loboris uPy fork and using a FAT32 formatted SD card! [code] import uos uos.sdconfig(uos.SDMODE_SPI, clk=14, mosi=15, miso=2, cs=13) uos.mountsd(True) uos.listdir() [/code] The pinning is for one of my ESP32 board (a TTGO with the 18650...
by rogierlodewijks
Sat Jul 15, 2017 7:20 pm
Forum: ESP32 boards
Topic: esp32 build error
Replies: 4
Views: 4542

Re: esp32 build error

Can confirm. Just downloaded latest micropython-esp32 and idf, same issue.

Solution (or hack maybe):
I added `#define CONFIG_IPC_TASK_STACK_SIZE 1024` manually to `sdkconfig.h` in the esp32 dir. Then it woudl compile correctly!