Skip to content

Instantly share code, notes, and snippets.

View deveth0's full-sized avatar
💭

Alex Muthmann deveth0

💭
View GitHub Profile
git clone git://github.com/sivel/speedtest-cli.git speedtest-cli
@deveth0
deveth0 / Alarm_Demo.ino
Last active June 19, 2024 23:12
Arduino Demonstration of an alarm triggered by a DS3231 RTC
/**
* Sets an alarm using a DS3231 device, goes to sleep and wakes up again
* @author: dev-eth0
* @url: https://www.dev-eth0.de/
*/
#include <DS3231.h> // https://github.com/NorthernWidget/DS3231
#include <Wire.h>
#include <LowPower.h> // https://github.com/rocketscream/Low-Power