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: "Blink Matrix"
- - Source Code compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-04-03 04:51:52
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Generate a code which will blink 1 led in 3×3 led */
- /* matrix */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Generate a code which will blink 1 led in 3x3 led */
- /* matrix */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void updateOutputs();
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t Matrix_LED_PIN_D4 = 4;
- /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
- /***** used to store raw data *****/
- bool Matrix_LED_PIN_D4_rawData = 0;
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(Matrix_LED_PIN_D4, OUTPUT);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- updateOutputs(); // Refresh output data
- delay(1000); // Delay for 1 second
- }
- void updateOutputs()
- {
- static bool state = false;
- digitalWrite(Matrix_LED_PIN_D4, state);
- state = !state;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement