Advertisement
alexarcan

Lab7 MS

Apr 5th, 2016
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.46 KB | None | 0 0
  1. import RPi.GPIO as GPIO
  2. import random
  3. import temperature #temperature stub
  4. import plotly.plotly as plot #plotly API
  5. import json #extract credentials
  6. import time #delay
  7. import datetime #temp-time chart association
  8.  
  9. with open('./credentials.json') as credentials_file:
  10.         plotly_user_config = json.load(credentials_file)
  11.  
  12. plot.sign_in(plotly_user_config["plotly_username"],
  13.         plotly_user_config["plotly_api_key"])
  14.  
  15. START   = -5;
  16. STOP    = 30;
  17.  
  18. GPIO.setmode(GPIO.BOARD)
  19. GPIO.setup(18, GPIO.IN, pull_up_down=GPIO.PUD_UP)
  20.  
  21. # stub for temperature sensor
  22. def read_temp():
  23.     temp = random.randrange(START, STOP)
  24.     return temp
  25.  
  26. url = plot.plot([
  27.         {
  28.                 'x': [],
  29.                 'y': [],
  30.                 'type': 'scatter',
  31.                 'mode':'lines+markers',
  32.                 'stream': {
  33.                 'token': plotly_user_config['plotly_streaming_tokens'][0],
  34.                 'maxpoints': 200
  35.                 }
  36.         }], filename='MS-IOT 2016')
  37.  
  38. print "View your streaming graph here: ", url
  39.  
  40. stream = plot.Stream(plotly_user_config['plotly_streaming_tokens'][0])
  41. stream.open()
  42.  
  43. while True:
  44.         state = GPIO.input(18)
  45.         print(state)
  46.         # read temperature from our stub module
  47.         temp = temperature.read_temp()
  48.         if state == False:
  49.                 # post data to plotly
  50.                 stream.write({'x': datetime.datetime.now(), 'y': temp})
  51.         time.sleep(2)
  52.  
  53. GPIO.cleanup()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement