const int analogPin = A0;  // the pin that the potentiometer is attached to
const int ledCount = 10;   // the number of LEDs in the bar graph

int ledPins[] = {
  2, 3, 4, 5, 6, 7, 8, 9, 10, 11
};  // an array of pin numbers to which LEDs are attached


void setup() {
  // loop over the pin array and set them all to output:
  for (int thisLed = 0; thisLed < ledCount; thisLed++) {
    pinMode(ledPins[thisLed], OUTPUT);
  }
}

void loop() {
  // read the potentiometer:
  int sensorReading = analogRead(analogPin);
  // map the result to a range from 0 to the number of LEDs:
  int ledLevel = map(sensorReading, 0, 1023, 0, ledCount);

  // loop over the LED array:
  for (int thisLed = 0; thisLed < ledCount; thisLed++) {
    // if the array element's index is less than ledLevel,
    // turn the pin for this element on:
    if (thisLed < ledLevel) {
      digitalWrite(ledPins[thisLed], HIGH);
    }
    // turn off all pins higher than the ledLevel:
    else {
      digitalWrite(ledPins[thisLed], LOW);
    }
  }
}
void setup() {
pinMode(2,OUTPUT);
}

void loop() {
// put your main code here, to run repeatedly:
}
 void setup() {
  pinMode(2,OUTPUT); } void loop() {
  // put your main code here, to run repeatedly: } 
Сайт находится на стадии разработки, приносим свои извинения
Пока что-то может не работать, или работать криво:)))
Добро пожаловать в мастерскую инженерного творчества!
Расписание занятий
  • ПОНЕДЕЛЬНИК
    С 17:30 до 19:00
    С 15:30 до 17:00 (группа откроется с ноября)
  • СРЕДА
    С 17:30 до 19:00
    С 15:30 до 17:00 (группа откроется с ноября)
  • СУББОТА
    С 12:00 до 13:30
    С 14:00 до 15:30
    С 17:00 до 18:30 (робототехника)
Мастерская инженерного творчества "Юный техник"
+79657000499
Юрий
Московская область, городской округ Щёлково, коттеджный пос. Варежки, 29
Made on
Tilda