Giter Club home page Giter Club logo

django-iot's Introduction

Django for IoT

This is the demo to accompany my talk on Django for IoT at DjangoCon Europe 2016. It controls an LIFX light bulb based on Twitter voting.

You can fork this to play around with your own projects, or get started fresh with https://github.com/aschn/cookiecutter-django-iot

Get started

LIFX setup

LIFX_TOKEN: get from https://cloud.lifx.com/

Twitter setup

Sign into https://apps.twitter.com/ with your twitter account, and click "create new app"

Run locally

export DATABASE_URL=postgres://localhost/mydbname
export SECRET_KEY=[your value]
export LIFX_TOKEN=[your value]
export TWITTER_CONSUMER_KEY=[your value]
export TWITTER_CONSUMER_SECRET=[your value]
export TWITTER_ACCESS_TOKEN=[your value]
export TWITTER_ACCESS_SECRET=[your value]
export VOTE_HASHTAG=[your hashtag]
createdb mydbname
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver

log into localhost:8000/admin

click on Device and add a device

or in a python terminal:

from django_iot.apps.lifx import client
client.configure_devices()

Deployment to Heroku

$ git init
$ git add -A
$ git commit -m "Initial commit"

$ heroku create
$ git push heroku master

$ heroku run python manage.py migrate

to use management commands:

heroku addons:create scheduler:standard

celery resources:

django-iot's People

Contributors

aschn avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.