Search found 25 matches

by mbirth
Sun Nov 02, 2014 12:52 am
Forum: General Discussion and Questions
Topic: Tapatalk support on the Forum
Replies: 5
Views: 4715

Re: Tapatalk support on the Forum

As a matter of fact I already asked @Damien and he just installed Tapatalk a few minutes ago. Try it. :)
by mbirth
Fri Oct 24, 2014 10:55 am
Forum: General Discussion and Questions
Topic: Extending built-in LCD class problem: Can't specify X/Y pos.
Replies: 1
Views: 2982

Extending built-in LCD class problem: Can't specify X/Y pos.

I've written a new class to load a font file and use fonts on the official MicroPython display. This class extends the built-in LCD class and overwrites a few methods. The __init__ looks like this: from pyb import LCD class FontLCD(LCD): def __init__(self, skin_position): super().__init__(skin_posit...
by mbirth
Mon Oct 20, 2014 6:34 pm
Forum: MicroPython pyboard
Topic: Adding a BOOT0 switch
Replies: 4
Views: 6543

Re: Adding a BOOT0 switch

Awesome! Thank you!
by mbirth
Mon Oct 20, 2014 1:55 pm
Forum: MicroPython pyboard
Topic: Adding a BOOT0 switch
Replies: 4
Views: 6543

Re: Adding a BOOT0 switch

Do you only have to short BOOT0 and 3V3 during reset, or does it have to be permanently shorted during the whole flashing process?
by mbirth
Mon Oct 20, 2014 1:26 pm
Forum: General Discussion and Questions
Topic: LCD Skin
Replies: 2
Views: 3740

Re: LCD Skin

On page 7 of the LCD specs (or page 50 of the controller specs ) you will find e.g. this line: (9) Display normal/reverse | 0 1 0 | 1 0 1 0 0 1 1 0/1 | Sets the LCD display normal/reverse, 0: normal, 1: reverse So to set it to reverse, convert 10100111 to hex (A7) and then use: lcd.command(0, 0xa7) ...