https://github.com/jbips/huddy
HUD application for Raspberry Pi
https://github.com/jbips/huddy
Last synced: about 2 months ago
JSON representation
HUD application for Raspberry Pi
- Host: GitHub
- URL: https://github.com/jbips/huddy
- Owner: JbIPS
- License: mit
- Created: 2015-06-28T21:10:53.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-01T18:01:40.000Z (almost 11 years ago)
- Last Synced: 2025-03-12T02:13:32.517Z (over 1 year ago)
- Language: JavaScript
- Size: 406 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Huddy
## Project Presentation
This project aims to give you all the informations you'll need for you day in a glimpse: weather forecast, today events or traffic status.
## How to run it
First, you'll need to configure it with a `config.json` file at the root of the project.
This file will look like
```js
{
"forecast": {
"apiKey": "15ea3...", // Your Forecast.io API Key
"longitude": 2.29500,
"latitude": 48.85795,
"options": {
// Any options you want to pass to your query
}
},
"twitter": { // Your Twitter app credentials
"consumerKey": "D58Eff...",
"consumerSecret": "cvga2...",
"accessToken": "25689...",
"accessTokenSecret": "Iru874...",
"screenName": "JbIPS"
}
}
```
For more documentation on the Forecast API, see the [Dark Sky Forecast API](https://developer.forecast.io/docs/v2).
Then you can just run
```
node index.js
```
## License
This software is distributed with a MIT license. Feel free to share & modify it! PR are welcomed.