arduino digitalread
digitalRead(pin number);
// can also be used to debug with
Serial.println(digialRead(pin number));
arduino digitalread
digitalRead(pin number);
// can also be used to debug with
Serial.println(digialRead(pin number));
digital led arduino
// include library
#include<FastLED.h>
//define number of LED and pin
#define NUM_LEDS 8
#define DATA_PIN 3
// create the ld object array
CRGB leds[NUM_LEDS];
// define 3 byte for the random color
byte r, g, b;
void setup() {
// init the LED object
FastLED.addLeds<NEOPIXEL, DATA_PIN>(leds, NUM_LEDS);
// set random seed
randomSeed(analogRead(0));
}
void loop() {
// loop over the NUM_LEDS
for (int cur = 0; cur < NUM_LEDS; cur++) {
// chose random value for the r/g/b
r = random(0, 255);
g = random(0, 255);
b = random(0, 255);
//set the value to the led
leds[cur] = CRGB (r, g, b);
// set the colors set into the phisical LED
FastLED.show();
// delay 50 millis
FastLED.delay(200);
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us