Search found 5 matches

by volkerjaenisch
Sun Sep 26, 2021 10:50 pm
Forum: Development of MicroPython
Topic: FrameBuffer.get_rect_raw(x,y,w,h) for mono displays alpha test
Replies: 0
Views: 5429

FrameBuffer.get_rect_raw(x,y,w,h) for mono displays alpha test

Dear MP Developers! Here https://github.com/Inqbus/micropython/tree/get_rect_raw you will find a new function for MP FrameBuffer: get_rect_raw(x, y, w, h) The function get_rect_raw will return all bytes striven by the given rectangle in the byte order/orientation of the framebuffer. The aim of get_r...
by volkerjaenisch
Wed Sep 22, 2021 9:08 pm
Forum: Development of MicroPython
Topic: How to add a debug print
Replies: 1
Views: 2318

How to add a debug print

Dear Micropython Developers! ATM I use the following code to write debug output to the console: STATIC mp_obj_t mono_horiz_get_rect(const mp_obj_framebuf_t *fb, unsigned int x, unsigned int y, unsigned int w, unsigned int h) { /* Return the raw bytes of a rectangle given by its x ,y ,w ,h definition...
by volkerjaenisch
Wed Sep 08, 2021 11:11 pm
Forum: Development of MicroPython
Topic: Debuging the micropython core
Replies: 7
Views: 6243

Debuging the micropython core

Dear MicroPython People! I am currently preparing a MicroPython Core enhancement to framebuf https://github.com/micropython/micropython/issues/7750 . But I am new to the micropython core and may be have missed some briefings :-). I have a complete esp32 cross-compile platform running for my controll...
by volkerjaenisch
Sun Aug 22, 2021 9:34 pm
Forum: Hardware Projects
Topic: Larger fonts on SSD1306 OLED displays
Replies: 23
Views: 163577

Re: Larger fonts on SSD1306 OLED displays

Really cool software!
by volkerjaenisch
Thu Jun 10, 2021 11:32 pm
Forum: General Discussion and Questions
Topic: Pin.irq: Handlers for each Trigger
Replies: 3
Views: 1929

Pin.irq: Handlers for each Trigger

Hi Micropython People! I am the maintainer of pigpio_encoder a library to access easily a rotary encoder on the RaspberryPi. Currently I am porting the code to support micropython. A first working example is here for testing: https://github.com/vash3d/pigpio_encoder/blob/deploy/src/pigpio_encoder/ro...