https://github.com/doerfli/shelly-temp
Webapplication to receive temperature and humidity readings from shelly and show on webpage
https://github.com/doerfli/shelly-temp
hacktoberfest ruby-on-rails shelly shelly-ht smarthome tailwindcss temperature-monitoring webapp
Last synced: 2 months ago
JSON representation
Webapplication to receive temperature and humidity readings from shelly and show on webpage
- Host: GitHub
- URL: https://github.com/doerfli/shelly-temp
- Owner: doerfli
- Created: 2021-06-21T19:30:15.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-01T16:59:04.000Z (3 months ago)
- Last Synced: 2025-03-14T17:33:39.790Z (3 months ago)
- Topics: hacktoberfest, ruby-on-rails, shelly, shelly-ht, smarthome, tailwindcss, temperature-monitoring, webapp
- Language: Ruby
- Homepage:
- Size: 1.21 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Shelly-temp
This is a simple ruby on rails webapplication to received URL action event from a Shelly H&T device and display the temperature on a webpage.
## Start application
Create and migrate database
```
bundle exec rake db:create
bundle exec rake db:migrate
```Run server
```
bundle exec rails start
```## Configuration
Point your shelly to `http://:/measurements/new`
**Important** Shelly does not support https targets!!!
Once at least one event was sent, open a webbrowser to `http://:/displays/`
## Test request
```
curl "http://localhost:3000/measurements/new?id=device01&temp=21.23&hum=58.34"
```