@nanomatic/ds3231
v3.0.2
Published
RTC DS3231 implementation for the Raspberry PI 4 + temperature reading 🌡
Downloads
6
Maintainers
Readme
📝 Table of Contents
🏁 Getting Started
Installing
npm i @nanomatic/ds3231
Using
Example code below:
import { DS3231 } from '@nanomatic/ds3231'
const RTC = new DS3231;
// Writting system time to the DS3231
RTC.set(new Date());
// Reading time from the DS3231
setInterval(() => console.log(`${RTC.get().toString()} ${RTC.getTemperature()} °C`), 500);
⛏️ Built With
- @types/rpio - Type definitions for the Raspberry I/O library
- ts-node-dev - TypeScript Node Dev
- tsc-watch - The nodemon for TypeScript
- TSLint - TypeScript linter
- NodeJs - Test Environment
📦 Dependencies
- rpio - Raspberry I/O library
✍️ Authors
- @NANOmatic - Idea & Initial work
🎉 Acknowledgments
- Special thanks for Łukasz & Sebastian for working together and giving ideas 😉