Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdamcd/tempbase
WiFi temperature sensor with Arduino MKR1000
https://github.com/jdamcd/tempbase
arduino
Last synced: 3 months ago
JSON representation
WiFi temperature sensor with Arduino MKR1000
- Host: GitHub
- URL: https://github.com/jdamcd/tempbase
- Owner: jdamcd
- Created: 2016-08-28T21:51:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-10T18:41:46.000Z (over 8 years ago)
- Last Synced: 2024-07-31T18:18:20.662Z (6 months ago)
- Topics: arduino
- Language: Arduino
- Homepage:
- Size: 1.95 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### WiFi temperature sensor
Logs timestamped temperature readings to a Firebase database at a set interval.
#### Hardware
* Arduino MKR1000
* DHT11 temperature & humidity sensor#### Parameters
`SSID` & `PASSWORD` are the WiFi credentials. `INTERVAL` is the measurement frquency (default is 20 mins).
##### Firebase
* `HOST` e.g. `yourapp.firebaseio.com`
* `SECRET` is the database secret for auth (Project settings > Database)
* `PATH` e.g. `/home/bedroom.json`#### Payload
```
{
"timestamp":1472420271,
"temperature":30,
"humidity":45
}
```