We will use the Particle tutorial for the IoT kit linked below to guide us, but the videos will deviate a bit to demonstrate things using the web programming environment. Ultimately we want to get familiar with the hardware, inputs, sensors, and programming. ★ Post questions and successes in our Slack channel as you move along.
Understanding LED Status Signals
Reading Temperature and Humidity
1. Create a new program in Particle build.
2. Connect the temperature and humidity sensor to D2, and have your Argon device connected.
3. Include the "GROVE_TEMPERATURE_AND_HUMIDITY_SENSOR" library in your program.
4. Copy and paste the code below (except of the #include part) into your program.
5. Save, Verify, and Flash the code to the Argon board.
6. Open the Console from particle build, select "my devices", and select your Argon.
7. Get the temp and humidity variables to check if all is working.
That's it for this step 🎉. If you are having any problems, no worry, post in our slack channel. Please share your code when it makes sense or create videos.
Controlling an LED
Instructions coming soon...
1. Create a new program in Particle build.
2. Connect the Grove Chainable LED to A4, and have your Argon device connected.
3. Include the "Grove_ChainableLED" library in your program.
4. Copy and paste the code below (except of the #include part) into your program.
5. Save, Verify, and Flash the code to the Argon board.
6. Open the Console from particle build, select "my devices", and select your Argon.
7. Call the toggleLed function to pulse the LED one time.
That's it for this step 🎉. If you are having any problems, no worry, post in our slack channel. Please share your code when it makes sense or create videos.
Reference Material for the IoT Kit Hardware
This video steps you through claiming a particle device and setting up WIFI. You will want your mobile phone to complete this with the Particle App installed.
Apple:
Android:
This link comes in very handy for interpreting the different status LED signals you may get from time to time.
We are covering concepts from the Particle Variables: measure temperature & humidity section of the tutorial.
We are covering concepts from the Particle Functions: controlling a Chainable LED section of the tutorial.