micro:bit super battery board V2

Questions and discussion about running MicroPython on a micro:bit board.
Target audience: MicroPython users with a micro:bit.
Post Reply
shaoziyang
Posts: 363
Joined: Sun Apr 17, 2016 1:55 pm

micro:bit super battery board V2

Post by shaoziyang » Wed Jan 31, 2018 9:23 am

micro:bit super battery board V2 has been release, it will turn micro:bit to
  • watch
  • passometer
  • badge
  • Bluetooth controller
  • Event reminding device
Compare with V1, micro:bit super battery board V2 has added microphone, vibration, neopixel and wristband, it can bring more fun to children

1.jpg
1.jpg (87.61 KiB) Viewed 2521 times
2.jpg
2.jpg (78.33 KiB) Viewed 2521 times

Acoustic control lamp example

Code: Select all

from microbit import *

n=0
while 1:
    if pin1.read_analog()>550:
        n=10
    if n>0:
        n=n-1
        a=str(n)
        s=(a*5+':')*5
        display.show(Image(s))
    sleep(100)

https://item.taobao.com/item.htm?id=563326517492

shaoziyang
Posts: 363
Joined: Sun Apr 17, 2016 1:55 pm

Re: micro:bit super battery board V2

Post by shaoziyang » Wed Jan 31, 2018 9:34 am

libatV2.jpg
libatV2.jpg (111.5 KiB) Viewed 2519 times

User avatar
mcauser
Posts: 507
Joined: Mon Jun 15, 2015 8:03 am

Re: micro:bit super battery board V2

Post by mcauser » Thu Feb 01, 2018 1:37 am

That's awesome!

Post Reply