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:24:04
- - Source Code generated by: AlexWind
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Add a comment describing the system requirement */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF Hardware Serial *****/
- // Comment out the HardwareSerial definition for now
- // HardwareSerial seriale(&UBRR1H, &UBRR1L, &UCSR1A, &UCSR1B, &UCSR1C, &UDR1); // Define Hardware Serial object
- /***** DEFINITION OF Software Serial *****/
- // Add your software serial definition here if needed
- void setup(void)
- {
- // put your setup code here, to run once:
- // seriale.begin(19200); // Initialize Hardware Serial with baud rate 19200
- Serial.begin(500000); // Initialize Serial with baud rate 500000
- // Add your setup code for other subsystems here
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Add your code for subsystem requirements here
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement