Add Jarvis monitoring

This commit is contained in:
lxsang
2020-08-16 02:17:59 +02:00
parent 0841cbce77
commit c5b9064764
17 changed files with 35328 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# JarvisControl
This is an example project, generated by AntOS Development Kit
## Howto
Use the CodePad command palette to access to the SDK functionalities:
1. Create new project
2. Init the project from the current folder located in side bar
3. Build and run the project
4. Release the project in zip package
## Set up build target
Open the `project.json` file from the current project tree and add/remove
build target entries. Save the file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,15 @@
{
"pkgname": "JarvisControl",
"app":"JarvisControl",
"name":"JarvisControl",
"description":"JarvisControl",
"info":{
"author": "",
"email": ""
},
"version":"0.0.1-a",
"category":"Other",
"iconclass":"fa fa-android",
"mimes":["none"],
"locale": {}
}

View File

@ -0,0 +1,22 @@
<afx-app-window apptitle="Jarvis monitoring" width="600" height="400" data-id="JarvisControl">
<afx-vbox >
<afx-hbox>
<afx-vbox>
<afx-label data-id="bat-text" data-height="22" text="__(Battery Usage:)"></afx-label>
<div data-id="battery-area" class="epoch category10"></div>
<afx-label data-id="temp-text" data-height="22" text="__(CPU temperature:)"></afx-label>
<div data-id="temp-area" class="epoch category10" ></div>
</afx-vbox>
<afx-vbox data-width="160">
<afx-label data-id="mem-text" data-height="22" text="__(Memory:)"></afx-label>
<div data-height="90" data-id="mem-area" class="epoch gauge-tiny"></div>
<afx-label data-id="disk-text" data-height="22" text="__(Disk:)"></afx-label>
<div data-height="90" data-id="disk-area" class="epoch gauge-tiny" ></div>
<afx-label data-id="cpu-text" data-height="22" text="__(CPU:)"></afx-label>
<div data-height="90" data-id="cpu-area" class="epoch gauge-tiny" ></div>
<div></div>
</afx-vbox>
</afx-hbox>
</afx-vbox>
</afx-app-window>

Binary file not shown.