https://github.com/gbraad/pxt-rtc-ds3231
Real-time clock extension for the Micro:bit; DS3231
https://github.com/gbraad/pxt-rtc-ds3231
Last synced: 9 months ago
JSON representation
Real-time clock extension for the Micro:bit; DS3231
- Host: GitHub
- URL: https://github.com/gbraad/pxt-rtc-ds3231
- Owner: gbraad
- Created: 2020-03-16T16:38:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-18T01:56:23.000Z (about 6 years ago)
- Last Synced: 2025-09-04T04:44:03.074Z (10 months ago)
- Language: TypeScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-microbit - DS3231 - RTC (Real Time Clock) MakeCode extension for the micro:bit. (🗿 JavaScript and MakeCode / 🗿 MakeCode Extensions)
README
pxt-rtc-ds3231
==============
Real-time clock extension for the Micro:bit
Example
-------
```
rtc.setTime("18:30:00")
```
```
basic.forever(function () {
basic.showString(rtc.getTimeString())
})
```