Merge pull request #2672 from thyttan/longpressbuzz

[Long Press, Buzz!] Add longpressbuzz app (boot code)
pull/2678/head
Gordon Williams 2023-04-05 08:42:24 +01:00 committed by GitHub
commit 340a1f9668
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1 @@
0.01: New App!

View File

@ -0,0 +1,17 @@
# Long Press, Buzz!
Buzz at boot after a long press to indicate the watch was reinitiated at your command.
To infinity and beyond, space ranger!
## Usage
Just install and it will run as boot code.
## Requests
Mention @[thyttan](https://github.com/thyttan) in an issue to the official [BangleApps repository](https://github.com/espruino/BangleApps/issues) for feature requests and bug reports.
## Creators
[thyttan](https://github.com/thyttan) and [Gordon Williams](https://github.com/gfwilliams).

BIN
apps/longpressbuzz/app.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
if (BTN.read()) Bangle.buzz(80,0.40);

View File

@ -0,0 +1,14 @@
{ "id": "longpressbuzz",
"name": "Long Press, Buzz!",
"shortName":"LPB",
"version":"0.01",
"description": "Buzz at boot after a long press to indicate the watch was reinitiated at your command.",
"icon": "app.png",
"type": "bootloader",
"tags": "system",
"supports" : ["BANGLEJS2"],
"readme": "README.md",
"storage": [
{"name":"longpressbuzz.0.boot.js","url":"boot.js"}
]
}