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: asd
- - Source Code compiled for: Arduino Mega
- - Source Code created on: 2023-10-14 15:51:40
- - Source Code generated by: AlexWind
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- // Implement system requirement 1 here
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF Hardware Serial *****/
- #define seriale Serial1 // TX_PIN: D18, RX_PIN: D19
- #define serial Serial3 // TX_PIN: D14, RX_PIN: D15
- /****** SUBSYSTEM REQUIREMENT 1 *****/
- // Implement subsystem requirement 1 here
- /****** SUBSYSTEM REQUIREMENT 2 *****/
- // Implement subsystem requirement 2 here
- void setup(void)
- {
- // put your setup code here, to run once:
- seriale.begin(19200);
- serial.begin(500000);
- /****** SUBSYSTEM REQUIREMENT 3 *****/
- // Implement subsystem requirement 3 here
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- /****** SUBSYSTEM REQUIREMENT 4 *****/
- // Implement subsystem requirement 4 here
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement