---+ Real Time Clock Epoch is 1.1.1970 (Unix time stamp). But valid dates are from 1.1.2000 to 31.12.2099 because of the !STM32 RTC peripheral. <pre> time@ ( -- u ) Returns the unix time stamp. time! ( u -- ) Sets the real time clock. .time ( -- ) Prints the current date and time (YYYY-MM-DDTHH:MM:SS ISO 8601). date Prints date unix style <em>Mon Jan 1 01:57:52 2000</em> wait-alarm ( -- ) Wait for an alarm alarm! (h m s -- ) Sets the alarm, invalid parameters e.g. -1 mask the parameter </pre> ---++ How to set the current date and time? Copy the current time stamp from a Unix machine (GNU/Linux box) or from https://www.unixtimestamp.com/: <pre> $ <b>date +%s</b> 1602430522 </pre> Paste the time stamp in the Mecrisp-Cube console: <pre> ok. <b>1602430522 time![RET]</b> ok. <b>.time[RET]</b> 2020-10-11T15:35:27 ok. <b>date[RET]</b> Sun Oct 11 15:36:02 2020 </pre> ---++ Set Alarms Wake me at 06:00 <pre> <b>6 0 0 alarm! wait-alarm .( Get Up!)[RET]</b> Get Up! ok. </pre> If you want an alarm every second: <pre> <b>-1 -1 -1 alarm![RET]</b> ok. </pre> for every minute: <pre> <b>-1 -1 0 alarm![RET]</b> ok. </pre> Stop the alarms: <pre> <b>0 0 0 alarm![RET]</b> ok. </pre> <pre> : count-down ( -- ) -1 -1 -1 alarm! \ an alarm every second 10 0 do cr 10 i - . wait-alarm loop cr ." 0 Launch!" ; </pre> <pre> <b>count-down[RET]</b> 10 9 8 7 6 5 4 3 2 1 0 Launch! ok. </pre> -- %USERSIG{PeterSchmid - 2020-10-11}% <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work by <a xmlns:cc="http://creativecommons.org/ns#" href="http://spyr.ch" property="cc:attributionName" rel="cc:attributionURL">Peter Schmid</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
This topic: MecrispCube
>
WebHome
>
RealTimeClock
Topic revision: r4 - 2022-06-18 - PeterSchmid
Copyright © 2008-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback