unleashed-firmware/documentation/js/js_notification.md
Nikolay Minaylov 58da27fa91
JS Documentation (#3535)
* Initial JS documentation
* Spelling fix

Co-authored-by: あく <alleteam@gmail.com>
2024-04-09 18:06:37 +09:00

565 B

js_notification

Notification module

let notify = require("notification");

Methods

success

"Success" flipper notification message

Examples:

notify.success();

error

"Error" flipper notification message

Examples:

notify.error();

Blink notification LED

Parameters

  • Blink color (blue/red/green/yellow/cyan/magenta)
  • Blink type (short/long)

Examples:

notify.blink("red", "short"); // Short blink of red LED
notify.blink("green", "short"); // Long blink of green LED