-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathversion_1.py
255 lines (211 loc) · 6.71 KB
/
version_1.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#
# dht11.py - a microbit implementation of dht11
# author - Phil Hall, copyright (c) November 2018
#
# this began life as raspberry pi code initial author
# https://github.com/szazo
#
# License - MIT
import microbit as uBit
DEGREES = u'\xb0'
class DataError(Exception):
pass
class DHT11:
def __init__(self, pin):
self._pin = pin
def read(self):
# creating these locals speeds things up len() is very slow
pin = self._pin
pin2bit = self._pin2bit()
buffer_ = bytearray(320)
length = (len(buffer_) // 4) * 4
for i in range(length, len(buffer_)):
buffer_[i] = 1
pin.write_digital(1)
uBit.sleep(50)
self._block_irq()
pin.write_digital(0)
uBit.sleep(20)
pin.set_pull(pin.PULL_UP)
if self._grab_bits(pin2bit, buffer_, length) != length:
self._unblock_irq()
raise Exception("Grab bits failed.")
else:
self._unblock_irq()
#for b in buffer_:
# print(b, end = "")
#print('')
data = self._parse_data(buffer_)
del buffer_
if data is None or len(data) != 40:
if data is None:
bits = 0
else:
bits = len(data)
raise DataError("Too many or too few bits " + str(bits))
data = self._calc_bytes(data)
checksum = self._calc_checksum(data)
if data[4] != checksum:
raise DataError("Checksum invalid.")
temp=data[2] + (data[3] / 10)
humid=data[0] + (data[1] / 10)
return (temp, humid)
def _pin2bit(self):
# this is a dictionary, microbit.pinX can't be a __hash__
pin = self._pin
if pin == uBit.pin0:
shift = 3
elif pin == uBit.pin1:
shift = 2
elif pin == uBit.pin2:
shift = 1
elif pin == uBit.pin3:
shift = 4
elif pin == uBit.pin4:
shift = 5
elif pin == uBit.pin6:
shift = 12
elif pin == uBit.pin7:
shift = 11
elif pin == uBit.pin8:
shift = 18
elif pin == uBit.pin9:
shift = 10
elif pin == uBit.pin10:
shift = 6
elif pin == uBit.pin12:
shift = 20
elif pin == uBit.pin13:
shift = 23
elif pin == uBit.pin14:
shift = 22
elif pin == uBit.pin15:
shift = 21
elif pin == uBit.pin16:
shift = 16
else:
raise ValueError('function not suitable for this pin')
return shift
@staticmethod
@micropython.asm_thumb
def _block_irq():
cpsid('i') # disable interrupts to go really fast
@staticmethod
@micropython.asm_thumb
def _unblock_irq():
cpsie('i') # enable interupts nolonger time critical
# r0 - pin bit id
# r1 - byte array
# r2 - len byte array, must be a multiple of 4
@staticmethod
@micropython.asm_thumb
def _grab_bits(r0, r1, r2):
b(START)
# DELAY routine
label(DELAY)
mov(r7, 0x2d)
label(delay_loop)
sub(r7, 1)
bne(delay_loop)
bx(lr)
label(READ_PIN)
mov(r3, 0x50) # r3=0x50
lsl(r3, r3, 16) # r3=0x500000
add(r3, 0x05) # r3=0x500005
lsl(r3, r3, 8) # r3=0x50000500 -- this points to GPIO registers
add(r3, 0x10) # r3=0x50000510 -- points to read_digital bits
ldr(r4, [r3, 0]) # move memory@r3 to r2
mov(r3, 0x01) # create bit mask in r3
lsl(r3, r0) # select bit from r0
and_(r4, r3)
lsr(r4, r0)
bx(lr)
label(START)
mov(r5, 0x00) # r5 - byte array index
label(again)
mov(r6, 0x00) # r6 - current word
bl(READ_PIN)
orr(r6, r4) # bitwise or the pin into current word
bl(DELAY)
bl(READ_PIN)
lsl(r4, r4, 8) # move it left 1 byte
orr(r6, r4) # bitwise or the pin into current word
bl(DELAY)
bl(READ_PIN)
lsl(r4, r4, 16) # move it left 2 bytes
orr(r6, r4) # bitwise or the pin into current word
bl(DELAY)
bl(READ_PIN)
lsl(r4, r4, 24) # move it left 3 bytes
orr(r6, r4) # bitwise or the pin into current word
bl(DELAY)
add(r1, r1, r5) # add the index to the bytearra addres
str(r6, [r1, 0]) # now 4 have been read store it
sub(r1, r1, r5) # reset the address
add(r5, r5, 4) # increase array index
sub(r4, r2, r5) # r4 - is now beig used to count bytes written
bne(again)
label(RETURN)
mov(r0, r5) # return number of bytes written
@staticmethod
def _parse_data(buffer_):
max_bits = 50
bits = bytearray(max_bits)
length = 0
bit_ = 0
init = True
for current in buffer_:
if current == 1:
length += 1
elif bit_ == 0 and length == 0:
pass
elif init:
length = 0
init = False
elif bit_ >= max_bits:
pass
elif length > 0:
bits[bit_] = length
length = 0
bit_ += 1
if bit_ == 0:
return None
results = bytearray(bit_)
for i in range(bit_):
results[i] = bits[i]
return results
@staticmethod
def _calc_bytes(pull_up_lengths):
shortest = 1000
longest = 0
for i in range(0, len(pull_up_lengths)):
length = pull_up_lengths[i]
if length < shortest:
shortest = length
if length > longest:
longest = length
halfway = shortest + (longest - shortest) / 2
data = bytearray(5)
did = 0
byte = 0
for i in range(len(pull_up_lengths)):
byte = byte << 1
if pull_up_lengths[i] > halfway:
byte = byte | 1
if ((i + 1) % 8 == 0):
data[did] = byte
did += 1
byte = 0
return data
@staticmethod
def _calc_checksum(data):
return data[0] + data[1] + data[2] + data[3] & 0xff
if __name__ == '__main__':
sensor = DHT11(uBit.pin0)
while True:
try:
t , h = sensor.read()
print("%2.1f%sC %2.1f%% " % (t, DEGREES, h))
except DataError as e:
print("Error : " + str(e))
uBit.sleep(2000)