Загрузка...

Arduino Blinky Project -Task 3.1P - Binuth Wijesinghe (Computer Systems)

Task 3.1P
Arduino Blinky Project
Binuth Wijesinghe -5034613
--------------------------------------------------------------------------------------------------------------------
// Arduino Blinky Project
// Set the LED pin int ledPin = 13;

void setup() {
// Initialize the digital pin as an output pinMode(ledPin, OUTPUT);
}

void loop() {
// Turn the LED on digitalWrite(ledPin, HIGH); delay(1000); // Wait for 1 second

// Turn the LED off digitalWrite(ledPin, LOW); delay(1000); // Wait for 1 second
}

Видео Arduino Blinky Project -Task 3.1P - Binuth Wijesinghe (Computer Systems) канала Binuth Computer Systems
Страницу в закладки Мои закладки
Все заметки Новая заметка Страницу в заметки