Assuming I would like to have a watch face app on my Fenix 3 that shows the time as well as date. I can see three ways to accomplish that:
- Use Toybox.Time.Gregorian.info(Toybox.Time.now(), ...) for time as well as date
- Use Toybox.Time.Gregorian.info(Toybox.Time.now(), ...) only for the date and Toybox.System.getClockTime() for time
- Use Toybox.Time.Gregorian.info(Toybox.Time.today(), ...) for the date and Toybox.System.getClockTime() for time
Is there any preferred solution? Are there any differences in required resources (CPU, RAM)?