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-25 00:08:38
- - Source Code generated by: Francesco Alessandro
- ********* Pleasedontcode.com **********/
- /****** 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_PIN_SDA_A4 = A4;
- const uint8_t lcd_LCD1602I2C_I2C_PIN_SCL_A5 = A5;
- const uint8_t lcd_LCD1602I2C_I2C_SLAVE_ADDRESS = 39;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- MicroNMEA nmea;
- LiquidCrystal_I2C lcd(lcd_LCD1602I2C_I2C_SLAVE_ADDRESS, 20, 4); // Initialize the LiquidCrystal_I2C object
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(contactClosure_PIN_D7, OUTPUT);
- NEO_6M_GPS_module.begin(9600);
- // Initialize the LCD
- lcd.init();
- lcd.backlight();
- // Add additional setup code for System Requirement 1 here
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Add code to read hour, minutes, and seconds from GPS module using MicroNMEA library
- // Uncomment and replace the placeholders with the actual code.
- // int hours = nmea.getHours();
- // int minutes = nmea.getMinutes();
- // int seconds = nmea.getSeconds();
- // Display hours, minutes, and seconds on 6x 7seg LED display
- // Uncomment and replace the placeholders with the actual code.
- // displaySevenSegment(hours);
- // displaySevenSegment(minutes);
- // displaySevenSegment(seconds);
- // Check if minutes and seconds are 00:00, if true, activate contact closure for about 1 second
- // Uncomment and replace the placeholders with the actual code.
- // if (minutes == 0 && seconds == 0) {
- // activateContactClosure();
- // }
- delay(1000); // Delay for 1 second before the next iteration
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement