Watchface: DigitStorm

Please post any problems and suggestions here.


Sorry that my English is ... google translate. :-)
  • DoumDoum_:
    I changed the priority for icons, I will now show DND first and then Sleep if it is turned on.
  • But it doesn't work on FR235.
  • Former Member
    Former Member over 7 years ago
    A couple of suggestions:

    1 - Can you add an option to disable the lower left notifications icon? So many watch faces let you customise everything EXCEPT the notifications, which is really annoying (for me). I get so many emails and updates throughout the day that the icon is pointless as it always shows 20+ notifications. I'd much rather not see it, or use that space for something else?

    2 - an option to have different colour hour and minute text, rather than all the same colour?

    Other than the above, everything is great!
  • Hello Gurjon
    Thank you for your efforts to find solutions to satisfy everyone.

    Since the last update I have:
    When I get into the auto sleep mode I have the little bell with the bar.
    If I disable the sleep mode manually I have a small moon.
    So to have a full sleep mode I must have the little bell with the bar.
    You just have to get used to this new way of working, but it's still a patch.

    I do not know the source code of Garmin but since a major change for the sleep mode
    to satisfy another person there are other impacts on your work.

    Before he had a general command for sleep mode:

    If SLEEP.MODE = True then
    ICON.SLEEP.VISIBLE = True
    else
    ICON.SLEEP.VISIBLE = False
    end if

    Since an update to fix another problem the command only sees the automatic standby mode:

    If SLEEP.HOUR = True then
    ICON.SLEEP.VISIBLE = True
    else
    ICON.SLEEP.VISIBLE = False
    end if

    To fix the problem he should have something like this:

    If SLEEP.HOUR = True and SLEEP.TOGLE.SWITCH = True then
    ICON.SLEEP.VISIBLE = True
    else
    ICON.SLEEP.VISIBLE = False
    end if

    It should be noted that I only suggest a logical solution to the problem.
    Thank you for your patience and good luck!
  • DoumDoum: Which watch do you have? On my FR235 I don't have any symbols for sleep/DND.
  • Carmen_F: Garmin Forerunner 935
    I guess it's like anything ... more than you pay more for a product more than it works well ...
  • Chris_Moody:
    I'll think about it, how I can help you.
  • DoumDoum_:
    I think that today it works well.
    If a sleep then shows a sleep icon, if a dnd shows a dnd icon.
    If the sleep and the dnd show the dnd icon, because it's more important, if you forget to turn off the dnd then after sleep the sounds will not be either.
  • Carmen_F:
    Sorry, but here I can not help ...
  • gurjon -
    The 23x/630 are CIQ 1.x devices, and doNotDisturb isn't available until the watch has CIQ 2.1.0 or greater, so the icon won't appear on them, and isSleepMode would always be false on the 23x/630

    This is a case where using the configured sleep time in UserProfile would help.