Files
Flipper-ARF/documentation/js/js_notification.md
Andrea Santaniello d6c2757f21 First push, clean slate
2026-03-08 18:48:37 +01:00

567 B

Notification module

let notify = require("notification");

Methods

success()

"Success" flipper notification message.

Example

notify.success();

error()

"Error" flipper notification message.

Example

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