24 lines
900 B
C++
24 lines
900 B
C++
#include <Arduino.h>
|
|
#include <SPI.h> //for screen
|
|
#include <U8g2lib.h> //for screen
|
|
#include <stdlib.h>
|
|
#include <Wire.h> //for RTC
|
|
#include <DS3231.h> //for RTC
|
|
#include "SparkFun_Ublox_Arduino_Library_Series_6_7.h" //for gps
|
|
#include <TimeLib.h> //https://github.com/PaulStoffregen/Time
|
|
//#include <Chronos.h> //for easy date calc https://inductive-kickback.com/projects/chronos/
|
|
#include <SolarCalculator.h> //https://github.com/jpb10/SolarCalculator
|
|
//#include "I2C_eeprom.h" //for EEPROM https://github.com/RobTillaart/I2C_EEPROM
|
|
#include "helperFunctions.h"
|
|
//#include "images.h"
|
|
#include "pico/stdlib.h"
|
|
|
|
void setup() {
|
|
// put your setup code here, to run once:
|
|
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
|
|
}
|