init commit

This commit is contained in:
Seth Samuel 2024-10-21 22:15:48 +13:00
commit f31c90fa1c

24
blockBreaker.ino Normal file
View file

@ -0,0 +1,24 @@
#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:
}