Microbit/neopixel.py

changeset 0
b3daa2ebea2f
child 11
c8198736bff3
equal deleted inserted replaced
-1:000000000000 0:b3daa2ebea2f
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module containing stubs for API generation of the 'neopixel' module.
8 """
9
10 class NeoPixel():
11 def __init__(self, pin, n):
12 pass
13
14 def clear(self):
15 pass
16
17 def show(self):
18 pass

eric ide

mercurial