- www.exploreembedded.com
This file contains hidden or 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
/* | |
* For detailed tutorial on building the project visit: | |
* https://exploreembedded.com/wiki/Building_a_Frivolous_Internet_Connected_Display_with_ESP32 | |
* Install the libraries listed in the tutorial before compiling the code. | |
* Reference links: | |
https://exploreembedded.com/wiki/Secure_IOT_with_AWS_and_Hornbill_ESP32 |
This file contains hidden or 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 <SPI.h> | |
#include <SD.h> | |
#include <SparkFunDS1307RTC.h> | |
#include <Wire.h> | |
#include "max6675.h" | |
int ktcSO = 8; | |
int ktcCS = 9; | |
int ktcCLK = 10; | |
const int chipSelect = 4; |