ptal78

Results 19 comments of ptal78

Thanks. I'll try this, but the file is a .mk not a .cmake Do I possibly have the wrong files? Phil On Fri, Apr 16, 2021, 08:01 Colin Alston ***@***.***>...

It's making more progress, but now I get the following error. Building C object esp-idf/main/CMakeFiles/__idf_main.dir/__/__/frozen_content.c.obj FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/__/__/frozen_content.c.obj

Champion. That has worked a treat!

So it builds with the following and works great now thanks so much. To sumerize I did the following: make clean make USER_C_MODULES=~/st7789_mpy/st7789/micropython.cmake all I have flashed the ESP32 using...

``` # Formats 1st 1/2 of RTC list into Week_Day, Day, Month, Year (Australian Format) def Date_Format(x): # x=list with 8 integers as used in RTC months = 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Nov,Dec'.split(',') week_day...

And just considering, to give some more help, would you like me to do some offline coding and testing? I'd be interested in generating the blocks and testing them out...

I've written a small library called tank that works on the ssd1309 to draw lines with move and turn commands. Can you possibly create the small single-line code blocks ASAP...

Can you also do a Show OLED block for the OLED would be helpful: oled.show()

Tank Library Code ``` # Code Purpose: Tank Drawing (Driving practice) # Author: Philip Tallents from www.picokit.com # License: MIT License (https://opensource.org/licenses/MIT) from machine import Pin from machine import I2C...

gfx library ``` # Port of Adafruit GFX Arduino library to MicroPython. # Based on: https://github.com/adafruit/Adafruit-GFX-Library # Author: Tony DiCola (original GFX author Phil Burgess) # License: MIT License (https://opensource.org/licenses/MIT)...