An open API service indexing awesome lists of open source software.

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

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"
```