Particle’s documentation can be found at: https://docs.particle.io/reference/javascript/
My updated files are at: https://github.com/arathorn593/IDeATePhysCompProject03-Cardboard
npm install particle-api-js
script.js
file, you must add this line to your index.html file: <script type="text/javascript" src="//cdn.jsdelivr.net/particle-api-js/5/particle.min.js"></script>
. This line needs to go before you import the script.js
file, so you should have your new line followed by the existing line that includes the script:/* this is the added line */ <script type="text/javascript" src="//cdn.jsdelivr.net/particle-api-js/5/particle.min.js"></script> /* this is the existing line */ <script src="js/script.js"></script>
var Particle = require('particle-api-js');
line that the particle documentation says to include. Thus, the top of your init file should look something like:var particle; var token; function init() { particle = new Particle(); particle.login({username: user, password: pass}).then( function(data){ console.log('API call completed on promise resolve: ', data.body.access_token); token = data.body.access_token; }, function(err) { console.log('API call completed on promise fail: ', err); } ); //.... }
bool state = false; void setup() { pinMode(D7, OUTPUT); //register the function with the cloud Particle.function("light", light); } void loop() { //don't need to do anything here } //this function is called from the script.js file when //the stool is selected int light (String str) { //toggle the state of the light state = !state; //write to the light if (state) { digitalWrite(D7, HIGH); } else { digitalWrite(D7, LOW); } return 3; //return any number }
var fnPr = particle.callFunction({ deviceId: deviceID, name: 'light', argument: 'hi', auth: token }); fnPr.then( function(data) { console.log('Function called succesfully:', data); }, function(err) { console.log('An error occurred:', err); });
Let me know if I need to add anything to this post.
]]>