Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding really long press for each button #457

Open
wants to merge 46 commits into
base: main
Choose a base branch
from

Commits on Aug 31, 2024

  1. Configuration menu
    Copy the full SHA
    b8e1a0a View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. Configuration menu
    Copy the full SHA
    3ea8700 View commit details
    Browse the repository at this point in the history
  2. Update TOTP Face Documentation

    The TOTP face header file documentation contained outdated instructions
    for configuring the complication with TOTP credentials. This PR updates
    the documentation to match what is expected in `totp_face.c`.
    nlordell authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    56362d5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8443504 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5fbe314 View commit details
    Browse the repository at this point in the history
  5. Added debouncing

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    5d6163b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ea7de4f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    77c0b3d View commit details
    Browse the repository at this point in the history
  8. Removed some dead code

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    e2c3ce9 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b229f68 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f1dda58 View commit details
    Browse the repository at this point in the history
  11. using cb_fast_tick again

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    e6defaa View commit details
    Browse the repository at this point in the history
  12. Cleaned up code

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    4f5c28b View commit details
    Browse the repository at this point in the history
  13. Fixed stuck fast_tick

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    6a9c8bb View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    f03d177 View commit details
    Browse the repository at this point in the history
  15. A little bit of clean-up

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    1686c58 View commit details
    Browse the repository at this point in the history
  16. Using debounce that triggers when there's no change for Xms rather th…

    …an just ignoring new presses after Xms
    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    a2343c3 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    e36543f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    f8a13d8 View commit details
    Browse the repository at this point in the history
  19. Changed debounce to ignore button presses after a press down or up ra…

    …the rthan dact after a set amount of time due to an issue of delay_ms allowing a shoft-bricking
    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    c3b0bc9 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    606da3d View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    49702a2 View commit details
    Browse the repository at this point in the history
  22. Code review edits

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    3fb795b View commit details
    Browse the repository at this point in the history
  23. Additional code review change

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    b9ac649 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    2af59b2 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    d394795 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    6ca759a View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    b0c2652 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    71e2f23 View commit details
    Browse the repository at this point in the history
  29. fix: july has 31 days

    xtruan authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    a32fb3e View commit details
    Browse the repository at this point in the history
  30. Fix all days in a month

    Kistelini authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    10afd41 View commit details
    Browse the repository at this point in the history
  31. Leap Years Now Handled Dynamically

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    5c72105 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    38fe949 View commit details
    Browse the repository at this point in the history
  33. Fix to remove compiler complaint

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    90102f6 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    0348d17 View commit details
    Browse the repository at this point in the history
  35. add temp input to simulator

    FreeMasen authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    0fa45e1 View commit details
    Browse the repository at this point in the history
  36. CLOCK_FACE_24H_ONLY hides the preference to change the setting and de…

    …faults the mode to 24Hr mode
    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    ba505c4 View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    7400897 View commit details
    Browse the repository at this point in the history
  38. isolating this bit of complexity in movement function; Add ifdefs in …

    …clock faces for DCE
    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    7acc937 View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    b10fa82 View commit details
    Browse the repository at this point in the history
  40. Comment change

    voloved authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    8a12a9d View commit details
    Browse the repository at this point in the history
  41. add power rangers tune

    metehan-arslan authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    9876778 View commit details
    Browse the repository at this point in the history
  42. add layla tune

    metehan-arslan authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    b344b19 View commit details
    Browse the repository at this point in the history
  43. update layla tune

    metehan-arslan authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    fe4a6a3 View commit details
    Browse the repository at this point in the history
  44. bump to the newer upload-artifact github action

    Alex Maestas authored and mcguirepr89 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    d818a2e View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    9c60842 View commit details
    Browse the repository at this point in the history