Search found 36 matches

by polygontwist
Tue Jul 29, 2014 8:48 pm
Forum: MicroPython pyboard
Topic: Wifi module
Replies: 12
Views: 17522

Re: Wifi module

thanks,
:D
by polygontwist
Tue Jul 29, 2014 4:29 pm
Forum: MicroPython pyboard
Topic: Wifi module
Replies: 12
Views: 17522

Re: Wifi module

dankeschön,
can you upload the binary for uploading to the board?
by polygontwist
Sat Jul 19, 2014 1:04 pm
Forum: Hardware Projects
Topic: NanoSeeker (underwater robot)
Replies: 9
Views: 11938

Re: NanoSeeker (underwater robot)

nice projects.
by polygontwist
Mon Jul 07, 2014 5:02 pm
Forum: Hardware Projects
Topic: TinderBot
Replies: 3
Views: 5617

Re: TinderBot

cool :lol:
by polygontwist
Sat Jul 05, 2014 10:02 pm
Forum: General Discussion and Questions
Topic: AMP Skin?
Replies: 3
Views: 4357

Re: AMP Skin?

show https://www.youtube.com/watch?v=LziQvMV1te4 but the volume() is not implemented? ... code from Video: #make noise dac=pyb.DAC(1) dac.noise(40000) volume(255) #NameError: name 'volume' is not defined dac.triangle(40000000) I can hear faint sounds. #make record dac=pyb.DAC(1) buf=bytearray(20000)...
by polygontwist
Sat Jul 05, 2014 7:17 pm
Forum: MicroPython pyboard
Topic: Flashing PyBoard
Replies: 8
Views: 14111

Re: Flashing PyBoard

Hello, i have upgrade the firmware to "pybv10-2014-07-05-v1.1.1-130-g4e0eeeb", with win7. it works. ... The application should automatically detect your pyboard and show "STM Device in DFU Mode". In the "Upgrade or Verify Action" section of the application click on "Choose…" and select the .dfu file...
by polygontwist
Fri Jul 04, 2014 6:15 pm
Forum: Hardware Projects
Topic: LCD skin Graphic-Demo
Replies: 4
Views: 11231

Re: LCD skin Graphic-Demo

thank you, its works better!
by polygontwist
Thu Jul 03, 2014 9:08 pm
Forum: Hardware Projects
Topic: LCD skin Graphic-Demo
Replies: 4
Views: 11231

lcd_gfx library

the gfx-graphics functions as a library: drawLine drawTrie drawFillTrie drawRect drawFillRect drawCircle drawfillCircle file "lcd_gfx.py": #adaptiert von Adafruit_GFX.cpp #for LCD and touch-sensor skin def drawLine(x0,y0,x1,y1,thelcd,fill): steep= abs(y1 - y0) > abs(x1 - x0); if steep: x0, y0 = y0, ...
by polygontwist
Sun Jun 29, 2014 10:35 pm
Forum: Hardware Projects
Topic: LCD skin Graphic-Demo
Replies: 4
Views: 11231

LCD skin Graphic-Demo

Hello, i have adapted the code from "Adafruit-GFX-Library-master" for graphic lcd. origin: https://github.com/adafruit/Adafruit-GFX-Library lcd = pyb.LCD('X') #128*32 lcd.light(1) def drawFillRect(x,y,w,h,thelcd,fill): xa=x xe=x+w ya=y ye=y+h if xa>xe: t=xa xa=xe xe=t if ya>ye: t=ya ya=ye ye=t for y...
by polygontwist
Sun Jun 29, 2014 10:22 pm
Forum: Development of MicroPython
Topic: STRING works not with LCD
Replies: 3
Views: 4484

Re: STRING works not with LCD

pfalcon wrote: As for starting message of this thread, I'm not sure I understand it. For example, what is "STRING" (capitalized)? There's no such type/function/method in Python (and if it existed, it would name a constant).
STRING is Text, the capitalized has no meaning.

Code: Select all

s="string text"