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:03:43
- - Source Code generated by: AlexWind
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Subsystem Requirement 1.1: Initialize Serial Communication */
- /* Subsystem Requirement 1.2: Set baud rate for Serial Communication */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void setup(void)
- {
- // Subsystem Requirement 1.1: Initialize Serial Communication
- Serial.begin(19200);
- Serial1.begin(500000); // Set baud rate for Serial Communication on Serial1 port
- // put your setup code here, to run once:
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement