Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpmens/tempmonitor
A simple MQTT Websocket temperature monitoring page with Arduino support
https://github.com/jpmens/tempmonitor
Last synced: 9 days ago
JSON representation
A simple MQTT Websocket temperature monitoring page with Arduino support
- Host: GitHub
- URL: https://github.com/jpmens/tempmonitor
- Owner: jpmens
- License: mit
- Created: 2014-04-29T15:01:23.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-21T10:13:40.000Z (over 9 years ago)
- Last Synced: 2024-10-15T00:26:21.180Z (22 days ago)
- Language: JavaScript
- Homepage:
- Size: 473 KB
- Stars: 13
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tempmonitor
A simple web interface which subscribes to an MQTT topic branch to
display the information from a temperature sensor.The screenshot shows an example:
![screenshot](screenshot.png)
The sensor is an Arduino which publishes a `1` when it comes online to the topic:
```
clients/arduino/192.168.1.216 1
```and which otherwise publishes an integer to the
```
clients/arduino/192.168.1.216/celsius 26
```topic.
The brunt of the work (design, layout, etc.) was stolen from [mqtt-panel](https://github.com/fabaff/mqtt-panel), written by Fabian Affolter.