Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drkpxl/homegraph
https://github.com/drkpxl/homegraph
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/drkpxl/homegraph
- Owner: drkpxl
- Created: 2019-10-02T15:04:51.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-02T15:58:59.000Z (about 5 years ago)
- Last Synced: 2024-11-29T22:12:31.554Z (27 days ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
In your Raspberry Pi sheell, execute the following command in your terminal to install rmate
```$ sudo wget -O /usr/local/bin/rmate https://raw.github.com/aurora/rmate/master/rmate$ sudo chmod a+x /usr/local/bin/rmate```
Once installed, open up a new terminal and connect to your raspberry pi using the following command:
```ssh -R 52698:localhost:52698 pi@IPADDRESS```
Edit in VS code
```rmate README.md```
### Initial SQL Setup
```sqlite3 sensorsData.db```
```sqlite> BEGIN;```
```sqlite> CREATE TABLE DHT_data (timestamp DATETIME, temp NUMERIC, hum NUMERIC);```
```sqlite> COMMIT;```