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: Scanner
- - Source Code compiled for: Arduino Mega
- - Source Code created on: 2023-11-02 19:34:48
- - Source Code generated by: AlexWind
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <SoftwareSerial.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Use seril and dsfgds to pass TX and RX data */
- /* between them. */
- /****** SYSTEM REQUIREMENT 2 *****/
- /* Seril TX data is passed to RX dsfgds. dsfgds TX */
- /* data is passed to RX Seril. */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF Software Serial *****/
- const uint8_t seril_PIN_SERIAL_TX_A0 = A0;
- const uint8_t seril_PIN_SERIAL_RX_D6 = 6;
- const uint8_t dsfgds_PIN_SERIAL_TX_A1 = A1;
- const uint8_t dsfgds_PIN_SERIAL_RX_A3 = A3;
- SoftwareSerial seril(seril_PIN_SERIAL_RX_D6, seril_PIN_SERIAL_TX_A0);
- SoftwareSerial dsfgds(dsfgds_PIN_SERIAL_RX_A3, dsfgds_PIN_SERIAL_TX_A1);
- void setup(void)
- {
- // put your setup code here, to run once:
- seril.begin(300);
- dsfgds.begin(300);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- if (seril.available())
- {
- char data = seril.read();
- dsfgds.write(data);
- }
- if (dsfgds.available())
- {
- char data = dsfgds.read();
- seril.write(data);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement