Shivani Kannan - A Simple Internet Appliance

Made by Shivani Kannan ·

Getting oriented with the Particle platform, building my first circuit, and coding my first project. The circuit gets an LED to blink in intervals.

Created: November 6th, 2024

0

Intention

Getting oriented with the Particle platform, building my first circuit, and coding my first project.

The circuit gets an LED to blink in intervals.

0

Process

Circuit Components: Photon 2, breadboard, jumper wires, LED, and resistors


1. Registering Photon device to account

2. Connecting components

3. Writing code

4. Testing & Troubleshooting

0
int led1 = D2; 


void setup() {

  pinMode(led1, OUTPUT);


}


void loop() {

  digitalWrite(led1, HIGH);



  delay(1000);


  digitalWrite(led1, LOW);


 
  delay(1000);


}
Click to Expand
0

Outcome

Led blinking in a delay of 1 second.

0
IoT - Simple Internet Appliance
Shivani Kannan - https://youtu.be/hdkb3GTVMQM
0

Reflection

I enjoyed the process of making and the success when it worked. Unlike some of the other coding languages, I realized that this was case-sensitive and had to debug accordingly.

x
Share this Project

This project is only accessible by signed in users. Be considerate and think twice before sharing.



About

Getting oriented with the Particle platform, building my first circuit, and coding my first project.
The circuit gets an LED to blink in intervals.