Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: "LED Flasher"
- - Source Code compiled for: Arduino Nano
- - Source Code created on: 2023-12-12 00:28:52
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* lampeggiare led di rosso */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t led_LEDRGB_Red_PIN_D2 = 2;
- const uint8_t led_LEDRGB_Green_PIN_D3 = 3;
- const uint8_t led_LEDRGB_Blue_PIN_D4 = 4;
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(led_LEDRGB_Red_PIN_D2, OUTPUT);
- pinMode(led_LEDRGB_Green_PIN_D3, OUTPUT);
- pinMode(led_LEDRGB_Blue_PIN_D4, OUTPUT);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Flash the red LED
- digitalWrite(led_LEDRGB_Red_PIN_D2, HIGH); // turn on red LED
- delay(500); // delay for 500 milliseconds
- digitalWrite(led_LEDRGB_Red_PIN_D2, LOW); // turn off red LED
- delay(500); // delay for 500 milliseconds
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement