BARRAUX Arthur
2 years ago
2 changed files with 0 additions and 29 deletions
@ -1 +0,0 @@ |
|||||
test.php |
|
@ -1,28 +0,0 @@ |
|||||
# pour installer la librairie MCP9808 : |
|
||||
# cd ~ |
|
||||
# git clone https://github.com/adafruit/Adafruit_Python_MCP9808.git |
|
||||
# Attention à la version de python par défaut ( python --version) |
|
||||
# Si ce n'est pas la bonne : |
|
||||
# sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.7 1 |
|
||||
# cd Adafruit_Python_MCP9808 |
|
||||
# sudo python setup.py install |
|
||||
|
|
||||
|
|
||||
import RPi.GPIO as GP |
|
||||
import time |
|
||||
import Adafruit_MCP9808.MCP9808 as mcp |
|
||||
import threading |
|
||||
|
|
||||
# initialisation du raspberry |
|
||||
capteurTemp = mcp.MCP9808() |
|
||||
|
|
||||
# Test capteur de température |
|
||||
print("appuyer sur BP1 pour lancer le test capteur de température") |
|
||||
|
|
||||
capteurTemp.begin() |
|
||||
for i in range(5): |
|
||||
temperature = capteurTemp.readTempC() |
|
||||
print("Température = ",temperature, " °C") |
|
||||
time.sleep(0.5) |
|
||||
|
|
||||
|
|
Loading…
Reference in new issue