#108 Temperature Brick
Overview
温度を計測するBrickです。
アナログ値(0〜1023)を取得でき、変換することで−30度から100度までの温度を計測することができます。
接続
アナログコネクタ(A0〜A7)のいずれかに接続します。
Arduino
Raspberr Pi
LM61CIZ Datasheet
回路図
Sample Code
A0コネクタに接続したTemperature Brickにより温度を計測します。
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 | # coding: utf-8
import spidev
import time
import sys
# A0コネクタにTemperatureを接続
TEMPPIN = 0
def readadc(channel):
adc = spi.xfer2([1,(8+channel)<<4,0])
data = ((adc[1]&3) << 8) + adc[2]
return data
def arduino_map(x, in_min, in_max, out_min, out_max):
return (x - in_min) * (out_max - out_min) // (in_max - in_min) + out_min
# 初期化
spi = spidev.SpiDev()
spi.open(0,0)
spi.max_speed_hz = 5000
try:
while True:
data = readadc(TEMPPIN)
volt = arduino_map(data, 0, 1023, 0, 5000)
temp = arduino_map(volt, 300, 1600, -30, 100)
sys.stdout.write("\rtemp = %f" % (temp))
sys.stdout.flush()
time.sleep( 0.5 )
except KeyboardInterrupt:
spi.close()
sys.exit(0)
|
構成Parts
GitHub
- https://github.com/FaBoPlatform/FaBo/tree/master/108_temperature