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 Uno
- - Source Code created on: 2023-10-29 14:58:34
- - Source Code generated by: AlexWind
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <SoftwareSerial.h>
- #include <LiquidCrystal_I2C.h>
- #include <MicroNMEA.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Reads NMEA 8bit data from GPS module. Reads hours */
- /* minutes, seconds and Display h, m, s on 6x 7seg */
- /* LED display. When mins and secs are 00 00, contact */
- /* closure for about 1 sec. */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t contactClosure_PIN_D2 = 2;
- /***** DEFINITION OF Software Serial *****/
- const uint8_t gpsSerial_PIN_SERIAL_TX_A1 = A1;
- const uint8_t gpsSerial_PIN_SERIAL_RX_A0 = A0;
- SoftwareSerial gpsSerial(gpsSerial_PIN_SERIAL_RX_A0, gpsSerial_PIN_SERIAL_TX_A1);
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(contactClosure_PIN_D2, OUTPUT);
- gpsSerial.begin(9600);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement