notification-messages.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #pragma once
  2. #include "notification.h"
  3. #include "notification-messages-notes.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /*********************************** Messages **********************************/
  8. // Display
  9. extern const NotificationMessage message_display_on;
  10. extern const NotificationMessage message_display_off;
  11. // Led ON
  12. extern const NotificationMessage message_red_255;
  13. extern const NotificationMessage message_green_255;
  14. extern const NotificationMessage message_blue_255;
  15. // Led OFF
  16. extern const NotificationMessage message_red_0;
  17. extern const NotificationMessage message_green_0;
  18. extern const NotificationMessage message_blue_0;
  19. // Delay
  20. extern const NotificationMessage message_delay_10;
  21. extern const NotificationMessage message_delay_25;
  22. extern const NotificationMessage message_delay_50;
  23. extern const NotificationMessage message_delay_100;
  24. extern const NotificationMessage message_delay_250;
  25. extern const NotificationMessage message_delay_500;
  26. extern const NotificationMessage message_delay_1000;
  27. // Sound
  28. extern const NotificationMessage message_sound_off;
  29. // Vibro
  30. extern const NotificationMessage message_vibro_on;
  31. extern const NotificationMessage message_vibro_off;
  32. // Reset
  33. extern const NotificationMessage message_do_not_reset;
  34. /****************************** Message sequences ******************************/
  35. // Reset
  36. extern const NotificationSequence sequence_reset_red;
  37. extern const NotificationSequence sequence_reset_green;
  38. extern const NotificationSequence sequence_reset_blue;
  39. extern const NotificationSequence sequence_reset_rgb;
  40. extern const NotificationSequence sequence_reset_display;
  41. extern const NotificationSequence sequence_reset_sound;
  42. extern const NotificationSequence sequence_reset_vibro;
  43. // Vibro
  44. extern const NotificationSequence sequence_set_vibro_on;
  45. // Display
  46. extern const NotificationSequence sequence_display_on;
  47. extern const NotificationSequence sequence_display_off;
  48. // Charging
  49. extern const NotificationSequence sequence_charging;
  50. extern const NotificationSequence sequence_charged;
  51. extern const NotificationSequence sequence_not_charging;
  52. // Light up
  53. extern const NotificationSequence sequence_set_only_red_255;
  54. extern const NotificationSequence sequence_set_only_green_255;
  55. extern const NotificationSequence sequence_set_only_blue_255;
  56. extern const NotificationSequence sequence_set_red_255;
  57. extern const NotificationSequence sequence_set_green_255;
  58. extern const NotificationSequence sequence_set_blue_255;
  59. // Blink
  60. extern const NotificationSequence sequence_blink_red_10;
  61. extern const NotificationSequence sequence_blink_green_10;
  62. extern const NotificationSequence sequence_blink_yellow_10;
  63. extern const NotificationSequence sequence_blink_red_100;
  64. extern const NotificationSequence sequence_blink_green_100;
  65. extern const NotificationSequence sequence_blink_blue_100;
  66. extern const NotificationSequence sequence_blink_yellow_100;
  67. extern const NotificationSequence sequence_blink_cyan_100;
  68. extern const NotificationSequence sequence_blink_magenta_100;
  69. extern const NotificationSequence sequence_blink_white_100;
  70. // General
  71. extern const NotificationSequence sequence_success;
  72. extern const NotificationSequence sequence_error;
  73. #ifdef __cplusplus
  74. }
  75. #endif