-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.py
52 lines (35 loc) · 1.07 KB
/
logger.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import Adafruit_BMP.BMP085 as BMP085
import time
sensor = BMP085.BMP085(mode=BMP085.BMP085_ULTRAHIGHRES)
# read pressure and convert from pa to hpa
#p = sensor.read_pressure()
#p = p / 100.00
#read temperature
#t = sensor.read_temperature()
# we can also build lists, first start with an empty one
elements_p = []
# then use the range function to do 0 to 5 counts
for i in range(0, 60):
p = sensor.read_pressure()
p = p / 100.00
print "Adding %s to the list." % p
# append is a function that lists understand
# time.sleep(1)
# print p
elements_p.append(p)
elements_t = []
# then use the range function to do 0 to 5 counts
for i in range(0, 60):
t = sensor.read_temperature()
print "Adding %s to the list." % t
# append is a function that lists understand
# time.sleep(1)
# print p
elements_t.append(t)
# now we can print them out too
#for i in elements:
# print "Element was: %d" % i
print sum(elements_p) / float(len(elements_p))
print sum(elements_t) / float(len(elements_t))