-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First released version
- Loading branch information
Showing
13 changed files
with
367 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
{ | ||
"appKeys": {}, | ||
"appKeys": { | ||
"KEY_ALARM": 2, | ||
"KEY_MEDICATIONS": 100, | ||
"KEY_MODE": 1, | ||
"KEY_SORT": 3 | ||
}, | ||
"capabilities": [ | ||
"" | ||
"configurable" | ||
], | ||
"companyName": "[email protected]", | ||
"longName": "Medication Timer", | ||
"projectType": "native", | ||
"resources": { | ||
"media": [ | ||
{ | ||
"file": "images/menu_icon.png", | ||
"menuIcon": true, | ||
"name": "IMAGE_MENU_ICON", | ||
"type": "png" | ||
}, | ||
{ | ||
"file": "images/icons.png", | ||
"name": "IMAGE_ICON_MATRIX", | ||
|
@@ -16,7 +27,7 @@ | |
] | ||
}, | ||
"sdkVersion": "2", | ||
"shortName": "Medication Timer", | ||
"shortName": "Meds Timer", | ||
"uuid": "95d07e1a-2451-4ffa-aa44-836e523a7648", | ||
"versionCode": 1, | ||
"versionLabel": "1.0", | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#pragma once | ||
|
||
void job_adjust_show(uint8_t job_index); | ||
void job_adjust_show(void); | ||
void job_adjust_hide(void); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#pragma once | ||
|
||
extern uint8_t job_index; | ||
|
||
void job_menu_show(uint8_t index); | ||
void job_menu_hide(void); | ||
void job_menu_update(void); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.