mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-22 22:40:14 +00: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);
|
|
} |