mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 12:51:22 +04:00
9 lines
180 B
JavaScript
9 lines
180 B
JavaScript
|
|
let notify = require("notification");
|
||
|
|
notify.error();
|
||
|
|
delay(1000);
|
||
|
|
notify.success();
|
||
|
|
delay(1000);
|
||
|
|
for (let i = 0; i < 10; i++) {
|
||
|
|
notify.blink("red", "short");
|
||
|
|
delay(500);
|
||
|
|
}
|