Upgraded firmware for Simone Giertz's Every Day Calendar that links an ATProto-powered ESP32, for sync with goals.garden 🌱
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

vscode setup

+26 -2
+2
.gitignore
··· 1 + out 2 + .vscode/c_cpp_properties.json
+9
.vscode/arduino.json
··· 1 + { 2 + "output": "out", 3 + "configuration": "cpu=8MHzatmega328", 4 + "board": "arduino:avr:pro", 5 + "programmer": "arduino:avrispmkii", 6 + "port": "COM3", 7 + "sketch": "firmware\\sketches\\EverydayCalendar\\EverydayCalendar.ino", 8 + "prebuild": "xcopy .\\firmware\\libraries %USERPROFILE%\\Documents\\Arduino\\libraries /E /Y" 9 + }
+10
EverydayCalendar.code-workspace
··· 1 + { 2 + "folders": [ 3 + { 4 + "path": "." 5 + } 6 + ], 7 + "settings": { 8 + "files.trimTrailingWhitespace": false 9 + } 10 + }
+5 -2
README.md
··· 1 + # foolmoron's Fork 2 + - Playing around with an animation on touch 3 + 1 4 # The Every Day Calendar 2 5 3 6 ![edc](/images/edc.gif) ··· 34 37 ### Installing Arduino Libraries 35 38 36 39 1. Copy the contents of this repository's *firmware > libraries* directory into your computer's Arduino libraries folder. 37 - 40 + 38 41 - Typically that's located in **Documents/Arduino/libraries** 39 - 42 + 40 43 **Note:** If more instruction is needed, follow Arduino's guide: https://www.arduino.cc/en/guide/libraries 41 44 42 45 To test and see if the custom libraries are working, you can run our sample code provided in the *firmware > sketches* directory of this Github repository. Simply upload one of the sample code files onto the calendar using the Arduino IDE, open the **Serial Monitor** and set the baud rate to **9600**.