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: GPSTime
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-11-20 15:22:57
- - Source Code generated by: Francesco Alessandro
- ********* Pleasedontcode.com **********/
- /********* User code review feedback **********
- #### Feedback 1 ####
- - complete the code
- ********* User code review feedback **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <SoftwareSerial.h>
- #include <Wire.h>
- #include <MicroNMEA.h>
- #include <LiquidCrystal_I2C.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Reads hour, minutes and seconds from GPS */
- /* module using MicroNMEA library. Display hours, */
- /* minutes and seconds 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_D7 = 7;
- /***** DEFINITION OF Software Serial *****/
- const uint8_t NEO_6M_GPS_module_PIN_SERIAL_TX_A0 = A0;
- const uint8_t NEO_6M_GPS_module_PIN_SERIAL_RX_A1 = A1;
- SoftwareSerial NEO_6M_GPS_module(NEO_6M_GPS_module_PIN_SERIAL_RX_A1, NEO_6M_GPS_module_PIN_SERIAL_TX_A0);
- /***** DEFINITION OF I2C PINS *****/
- const uint8_t lcd_LCD1602I2C_I2C_SLAVE_ADDRESS = 0x27;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- LiquidCrystal_I2C lcd(lcd_LCD1602I2C_I2C_SLAVE_ADDRESS, 16, 2);
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(contactClosure_PIN_D7, OUTPUT);
- NEO_6M_GPS_module.begin(9600);
- lcd.begin(16, 2);
- lcd.setCursor(0, 0);
- lcd.print("GPS Time:");
- lcd.setCursor(0, 1);
- lcd.print("00:00:00");
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- if (NEO_6M_GPS_module.available())
- {
- char c = NEO_6M_GPS_module.read();
- // Process the received character from GPS module here
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement