forked from kevinmcaleer/PicoCat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmachine.py
47 lines (32 loc) · 793 Bytes
/
machine.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# machine stubb
class Pin():
OUT = 1
def __init__(self, value, pin_type):
print ('created Pin', value, pin_type)
def on(self):
print("pin on")
def off(self):
print("pin off")
class PWM():
pfreq = 50
pduty = 77
def __init__(self, value):
print('created PWM with value ', value)
def freq(self, value):
print('frequency')
self.pfreq = value
return value
def duty(self, value):
print('duty')
self.pduty = value
return value
class ADC():
# fake ADC to Digital convertor
pin = 0
def __init__(self, pin):
self.pin = pin
def read(self):
return 1024
class I2C():
def __init__(id=None, sda=None, scl=None):
pass