This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Post Raspberry Pi CPU Temperature to http://novum.io | |
| getCPUtemperature() from http://www.raspberrypi.org/phpBB3/viewtopic.php?f=32&t=22180 | |
| @author: novum.io | |
| ''' | |
| import os | |
| import httplib | |
| import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Post temperature data to novum.io on a Raspberry Pi using the DS18B20 1-wire temperature sensor | |
| See http://help.novum.io/index.php/posting-temperature-data-with-the-ds18b20/ for more information | |
| @author: novum.io | |
| ''' | |
| import os | |
| import glob | |
| import time | |
| import httplib | |
| import urllib |