Skip to content

Real-time clock extension for the Micro:bit; DS3231

Notifications You must be signed in to change notification settings

gbraad/pxt-rtc-ds3231

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pxt-rtc-ds3231

Real-time clock extension for the Micro:bit

Example

rtc.setTime("18:30:00")
basic.forever(function () {
    basic.showString(rtc.getTimeString())
})