Created
July 30, 2016 04:21
-
-
Save gcrev93/a86e486e8c283aeab003da436a7dd811 to your computer and use it in GitHub Desktop.
Using Photon Weather Shield locally with Node.
This file contains 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
// Copyright (c) Microsoft. All rights reserved. | |
// Licensed under the MIT license. | |
//Be sure to flash the photon with voodoospark | |
'use strict'; | |
// Define the objects you will be working with | |
var five = require ("johnny-five"); | |
var Shield = require("j5-sparkfun-weather-shield")(five); | |
// Add the following definition for the Particle plugin for Johnny-Five | |
var Particle = require("particle-io"); | |
var board = new five.Board({ | |
io: new Particle({ | |
token: '<insert token>', | |
deviceId: '<insert deviceID>' | |
}) | |
}); | |
// The board.on() executes the anonymous function when the | |
// board reports back that it is initialized and ready. | |
board.on("ready", function() { | |
console.log("Board connected..."); | |
var weather = new Shield({ | |
variant: "PHOTON", | |
freq: 1000, // Set the callback frequency to 1-second | |
elevation: 500 // Go to http://www.WhatIsMyElevation.com to get your current elevation | |
}); | |
// The weather.on("data", callback) function invokes the anonymous callback function | |
// whenever the data from the sensor changes (no faster than every 25ms). The anonymous | |
// function is scoped to the object (e.g. this == the instance of Weather class object). | |
weather.on("data", function () { | |
console.log("weather data event fired..."); | |
var wetdata = { | |
deviceId: board.io.deviceId, | |
location: 'Gabby Room', | |
// celsius & fahrenheit are averages taken from both sensors on the shield | |
celsius: this.celsius, | |
fahrenheit: this.fahrenheit, | |
relativeHumidity: this.relativeHumidity, | |
pressure: this.pressure, | |
feet: this.feet, | |
meters: this.meters | |
}; | |
console.log(wetdata); | |
}); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment