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: "Arduino Rainbow"
- - Source Code compiled for: Arduino Pro Mini 3.3V
- - Source Code created on: 2023-12-17 19:46:45
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* rainbow color running led */
- /****** 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 my_LEDRGB_Red_PIN_D2 = 2;
- const uint8_t my_LEDRGB_Green_PIN_D3 = 3;
- const uint8_t my_LEDRGB_Blue_PIN_D4 = 4;
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(my_LEDRGB_Red_PIN_D2, OUTPUT);
- pinMode(my_LEDRGB_Green_PIN_D3, OUTPUT);
- pinMode(my_LEDRGB_Blue_PIN_D4, OUTPUT);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Rainbow color running LED
- for (int i = 0; i < 255; i++) {
- analogWrite(my_LEDRGB_Red_PIN_D2, i);
- analogWrite(my_LEDRGB_Green_PIN_D3, 255 - i);
- analogWrite(my_LEDRGB_Blue_PIN_D4, 255 - i);
- delay(10);
- }
- for (int i = 0; i < 255; i++) {
- analogWrite(my_LEDRGB_Red_PIN_D2, 255 - i);
- analogWrite(my_LEDRGB_Green_PIN_D3, i);
- analogWrite(my_LEDRGB_Blue_PIN_D4, 255 - i);
- delay(10);
- }
- for (int i = 0; i < 255; i++) {
- analogWrite(my_LEDRGB_Red_PIN_D2, 255 - i);
- analogWrite(my_LEDRGB_Green_PIN_D3, 255 - i);
- analogWrite(my_LEDRGB_Blue_PIN_D4, i);
- delay(10);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement