This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Project link: https://www.bhoite.com/sculptures/surya-280/ | |
// | |
#include <TinyBME280.h> | |
//#include <TinyWireM.h> | |
//#include <USI_TWI_Master.h> | |
#include <avr/sleep.h> //Needed for sleep_mode | |
#include <avr/wdt.h> //Needed to enable/disable watch dog timer | |
//Following is the header file for the LCD module bought on ebay | |
//Seller link https://www.ebay.com/itm/284843842249 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <RTClib.h> | |
#include <Adafruit_DotStar.h> | |
#include <MAX7313.h> | |
#include "Wire.h" | |
#if defined(ARDUINO_ARCH_SAMD) | |
// for Zero, output on USB Serial console, remove line below if using programming port to program the Zero! | |
#define Serial Serial | |
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This #include statement was automatically added by the Particle IDE. | |
#include "Adafruit_CCS811.h" | |
// This #include statement was automatically added by the Particle IDE. | |
#include <Adafruit_SSD1306_RK.h> | |
// #include <SPI.h> | |
// #include <Wire.h> | |
#include <Adafruit_GFX.h> | |
//SYSTEM_MODE(MANUAL); |
OlderNewer