Skip to content

Commit 9e4773d

Browse files
committed
Merge branch 'master' of github.com:Win10-User-123/EspruinoApps into Win10-User-123-master
2 parents 4a12022 + e348914 commit 9e4773d

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

apps.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,20 @@
230230
{"name":".bootcde","url":"app.js"}
231231
]
232232
}
233+
234+
235+
{ "id": "espAndLCDtest",
236+
"name": "Espruino and LCD tester",
237+
"icon": "icon.png",
238+
"version":"0.05",
239+
"description": "An app that shows text on the LCD and tests your espruinos functions.",
240+
"tags": "",
241+
"readme": "README.md",
242+
"needsFeatures":["GRAPHICS"],
243+
"storage": [
244+
{"name":".bootcde","url":"app.js"}
245+
]
246+
}
233247

234248

235249
]

apps/_example_app/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# App Name
1+
# Test app
22

3-
Describe the app...
3+
Use this to test your Espruino and its display.
44

55
## Usage
66

7-
Describe how to use it
7+
Upload this and a ***"Your Espruino is working fine."*** text will apper on your Espruino LCD.

apps/_example_app/app.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
// Your JS application in here
2+
g.clear();
3+
g.drawString("Your Espruino is working fine.", 0, 0, true);
4+
g.flip();

0 commit comments

Comments
 (0)