mirror of https://github.com/espruino/BangleApps
Merge pull request #2672 from thyttan/longpressbuzz
[Long Press, Buzz!] Add longpressbuzz app (boot code)pull/2678/head
commit
340a1f9668
|
@ -0,0 +1 @@
|
|||
0.01: New App!
|
|
@ -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).
|
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1 @@
|
|||
if (BTN.read()) Bangle.buzz(80,0.40);
|
|
@ -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"}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue