Ski dev1
Made by ziyuh
Made by ziyuh
Created: December 3rd, 2021
Exercise 1 blinking LED light
// We will be using D2 to control our LED
int ledPin = D5;
// Our button wired to D0
int buttonPin = D6;
void setup()
{
// For input, we define the
// pushbutton as an input-pullup
// this uses an internal pullup resistor
// to manage consistent reads from the device
pinMode( buttonPin , INPUT_PULLUP); // sets pin as input
// We also want to use the LED
pinMode( ledPin , OUTPUT ); // sets pin as output
}
void loop()
{
// find out if the button is pushed
// or not by reading from it.
int buttonState = digitalRead( buttonPin );
// remember that we have wired the pushbutton to
// ground and are using a pulldown resistor
// that means, when the button is pushed,
// we will get a LOW signal
// when the button is not pushed we'll get a HIGH
// let's use that to set our LED on or off
if( buttonState == LOW )
{
// turn the LED On
digitalWrite( ledPin, HIGH);
};
if( buttonState == HIGH ){
// otherwise
// turn the LED Off
digitalWrite( ledPin, LOW);
}
}
Click to Expand
// Define a pin that we'll place the pot on
int potPin = A5;
// Create a variable to hold the pot reading
int potReading = 0;
// Define a pin we'll place an LED on
int ledPin = D5;
// Create a variable to store the LED brightness.
int ledBrightness = 0;
//
void setup(){
// Set up the LED for output
pinMode(ledPin, OUTPUT);
// Create a cloud variable of type integer
// called 'light' mapped to photoCellReading
Spark.variable("pot", potReading );
}
void loop() {
// Use analogRead to read the potentiometer reading
// This gives us a value from 0 to 4095
potReading = analogRead(potPin);
// Map this value into the PWM range (0-255)
// and store as the led brightness
ledBrightness = map(potReading, 0, 4095, 0, 255);
// fade the LED to the desired brightness
analogWrite(ledPin, ledBrightness);
// wait 1/10th of a second and then loop
delay(100);
}
Click to Expand
// Define a pin that we'll place the pot on
int potPin = A5;
// Create a variable to hold the pot reading
int potReading = 0;
// Define a pin we'll place an LED on
int ledPin = D5;
// Create a variable to store the LED brightness.
int ledBrightness = 0;
//
void setup(){
// Set up the LED for output
pinMode(ledPin, OUTPUT);
// Create a cloud variable of type integer
// called 'light' mapped to photoCellReading
Spark.variable("pot", potReading );
}
void loop() {
// Use analogRead to read the potentiometer reading
// This gives us a value from 0 to 4095
potReading = analogRead(potPin);
// Map this value into the PWM range (0-255)
// and store as the led brightness
ledBrightness = map(potReading, 0, 4095, 0, 255);
// fade the LED to the desired brightness
analogWrite(ledPin, ledBrightness);
// wait 1/10th of a second and then loop
delay(100);
}
Click to Expand
I found Particle Cloud very useful and intriguing. Since you can control tangible things with digital commands.
I feel like the Ski dev has very detailed instructions which I appreciate a lot. However, sometimes I may fail to think on my own and understand every sentence which I should avoid in the future.