-
-
Save domadev812/37ca780b45632bb7e4f1a6ec54890394 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| eon.chart({ | |
| channel: 'humeon', | |
| generate: { | |
| bindto: '#chart', | |
| data: { | |
| type: 'gauge', | |
| }, | |
| gauge: { | |
| min: 0, | |
| max: 100 | |
| }, | |
| color: { | |
| pattern: ['#FF0000', '#F6C600', '#60B044'], | |
| threshold: { | |
| values: [30, 60, 90] | |
| } | |
| } | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import time | |
| import sys | |
| from pubnub.pnconfiguration import PNConfiguration | |
| from pubnub.pubnub import PubNub | |
| import Adafruit_DHT as dht | |
| pnconfig = PNConfiguration() | |
| pnconfig.subscribe_key = 'demo' | |
| pnconfig.publish_key = 'demo' | |
| pubnub = PubNub(pnconfig) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| eon.chart({ | |
| history: true, | |
| channel: 'tempeon', | |
| flow: true, | |
| generate: { | |
| bindto: '#chart', | |
| data: { | |
| x: 'x', | |
| labels: false | |
| }, | |
| axis : { | |
| x : { | |
| type : 'timeseries', | |
| tick: { | |
| format: '%H:%M:%S' | |
| } | |
| } | |
| } | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def callback(message): | |
| print(message) | |
| while True: | |
| h,t = dht.read_retry(dht.DHT22, 4) | |
| pubnub.publish().channel('tempeon').message({ | |
| 'columns': [ | |
| ['x', time.time()], | |
| ['temperature_celcius', t] | |
| ] | |
| }).async(publish_callback) | |
| pubnub.publish().channel('humeon').message({ | |
| 'columns': [ | |
| ['humidity', h] | |
| ] | |
| }).async(publish_callback) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment