-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
also added some types
- Loading branch information
Showing
104 changed files
with
281 additions
and
69 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,3 +1,4 @@ | ||
<!-- Dimension(256,256) --> | ||
|
||
# Moving Map | ||
|
||
|
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,3 +1,4 @@ | ||
<!-- Dimension(256,256) --> | ||
|
||
# Cairo Gauge Arc Annotated | ||
|
||
|
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,3 +1,4 @@ | ||
<!-- Dimension(256,256) --> | ||
|
||
# Cairo Gauge Donut | ||
|
||
|
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,3 +1,4 @@ | ||
<!-- Dimension(256,256) --> | ||
|
||
# Cairo Gauge Marker | ||
|
||
|
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,3 +1,4 @@ | ||
<!-- Dimension(256,256) --> | ||
|
||
# Cairo Gauge Round Annotated | ||
|
||
|
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,3 +1,4 @@ | ||
<!-- Dimension(256,256) --> | ||
|
||
# Journey Map | ||
|
||
|
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,3 +1,4 @@ | ||
<!-- Dimension(384,384) --> | ||
|
||
# Moving Journey Map | ||
|
||
|
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 @@ | ||
|
||
<!-- Dimension(500,150) --> | ||
# Bar | ||
|
||
Draws a very simple horizontal bar with current metric value | ||
|
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,3 +1,4 @@ | ||
<!-- Dimension(256,128) --> | ||
|
||
# Chart | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
|
||
# Motor Speed Indicator | ||
|
||
The Motor Speed Indicator component draws a circular speed indicator | ||
|
||
|
||
{{ <component type="msi" end="100" /> }} | ||
|
||
|
||
|
||
# Sections | ||
|
||
The following sections can be set | ||
|
||
| Attribute | Description | | ||
|-----------|--------------------| | ||
| green | Green Section Max | | ||
| yellow | Yellow Section Max | | ||
| end | End of Dial | | ||
|
||
|
||
{{ <component type="msi" green="30" yellow="60" end="100" /> }} | ||
|
||
|
||
# Metrics & Conversions | ||
|
||
The MSI defaults to speed in knots, but like a text metric, can access any available information, and convert it to | ||
other units | ||
|
||
{{ <component type="msi" units="mph" end="100" /> }} | ||
|
||
{{ <component type="msi" metric="alt" units="feet" /> }} | ||
|
||
# Size | ||
|
||
The component can be sized - sizes that are too small or big might not render quite right | ||
|
||
{{ <component type="msi" size="128" /> }} | ||
|
||
# Rotation | ||
|
||
Can rotate the entire gauge clockwise using `rotate` | ||
|
||
{{ <component type="msi" rotate="45" /> }} | ||
{{ <component type="msi" rotate="90" /> }} | ||
{{ <component type="msi" rotate="180" /> }} | ||
|
||
|
||
# Needle or no needle | ||
|
||
The MSI component has a needle-less form which has a different style | ||
|
||
{{ <component type="msi" needle="no" rotate="45" /> }} | ||
|
||
# Variant | ||
|
||
The MSI component has a variant "msi2", which doesn't have a needle, it has the same other attributes | ||
`green`, `yellow`, `end` | ||
|
||
{{ <component type="msi2" /> }} | ||
|
||
|
||
|
||
# Font | ||
|
||
The text font can be changed in size | ||
|
||
{{ <component type="msi" textsize="24" /> }} | ||
|
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,3 +1,4 @@ | ||
<!-- Dimension(256,256) --> | ||
|
||
# Translate | ||
|
||
|
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,3 +1,4 @@ | ||
<!-- Dimension(256,256) --> | ||
|
||
# Frame | ||
|
||
|
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Auto Generated File DO NOT EDIT | ||
--> | ||
<!-- Dimension(256,256) --> | ||
|
||
# Moving Map | ||
|
||
|
Binary file modified
BIN
+147 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+104 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+85 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+141 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+137 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+142 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+107 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+194 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-15.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+24 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+108 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-18.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+115 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+197 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+135 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+116 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-21.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+124 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-22.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+92 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+148 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+94 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+104 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+20 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+116 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+109 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-arc-annotated/06-cairo-gauge-arc-annotated-9.png
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Auto Generated File DO NOT EDIT | ||
--> | ||
<!-- Dimension(256,256) --> | ||
|
||
# Cairo Gauge Arc Annotated | ||
|
||
|
Binary file modified
BIN
+147 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+147 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+71 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+147 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-11.png
Oops, something went wrong.
Binary file modified
BIN
+110 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-12.png
Oops, something went wrong.
Binary file modified
BIN
+133 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-13.png
Oops, something went wrong.
Binary file modified
BIN
+156 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-14.png
Oops, something went wrong.
Binary file modified
BIN
+149 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-15.png
Oops, something went wrong.
Binary file modified
BIN
+139 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-16.png
Oops, something went wrong.
Binary file modified
BIN
+140 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-19.png
Oops, something went wrong.
Binary file modified
BIN
+199 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-2.png
Oops, something went wrong.
Binary file modified
BIN
+157 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-20.png
Oops, something went wrong.
Binary file modified
BIN
+142 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-21.png
Oops, something went wrong.
Binary file modified
BIN
+146 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-22.png
Oops, something went wrong.
Binary file modified
BIN
+142 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-3.png
Oops, something went wrong.
Binary file modified
BIN
+153 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-4.png
Oops, something went wrong.
Binary file modified
BIN
+198 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-5.png
Oops, something went wrong.
Binary file modified
BIN
+169 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-6.png
Oops, something went wrong.
Binary file modified
BIN
-44 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-7.png
Oops, something went wrong.
Binary file modified
BIN
+35 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-8.png
Oops, something went wrong.
Binary file modified
BIN
+157 Bytes
(100%)
docs/xml/examples/06-cairo-gauge-donut/06-cairo-gauge-donut-9.png
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Auto Generated File DO NOT EDIT | ||
--> | ||
<!-- Dimension(256,256) --> | ||
|
||
# Cairo Gauge Donut | ||
|
||
|
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Auto Generated File DO NOT EDIT | ||
--> | ||
<!-- Dimension(256,256) --> | ||
|
||
# Cairo Gauge Marker | ||
|
||
|
Binary file modified
BIN
+130 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-0.png
Oops, something went wrong.
Binary file modified
BIN
+130 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-1.png
Oops, something went wrong.
Binary file modified
BIN
+130 Bytes
(100%)
...l/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-10.png
Oops, something went wrong.
Binary file modified
BIN
+131 Bytes
(100%)
...l/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-11.png
Oops, something went wrong.
Binary file modified
BIN
+125 Bytes
(100%)
...l/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-12.png
Oops, something went wrong.
Binary file modified
BIN
+130 Bytes
(100%)
...l/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-15.png
Oops, something went wrong.
Binary file modified
BIN
+140 Bytes
(100%)
...l/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-16.png
Oops, something went wrong.
Binary file modified
BIN
+130 Bytes
(100%)
...l/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-17.png
Oops, something went wrong.
Binary file modified
BIN
+119 Bytes
(100%)
...l/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-18.png
Oops, something went wrong.
Binary file modified
BIN
+151 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-2.png
Oops, something went wrong.
Binary file modified
BIN
+127 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-3.png
Oops, something went wrong.
Binary file modified
BIN
+180 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-4.png
Oops, something went wrong.
Binary file modified
BIN
+57 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-5.png
Oops, something went wrong.
Binary file modified
BIN
+99 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-6.png
Oops, something went wrong.
Binary file modified
BIN
+113 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-7.png
Oops, something went wrong.
Binary file modified
BIN
+132 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-8.png
Oops, something went wrong.
Binary file modified
BIN
+127 Bytes
(100%)
...ml/examples/06-cairo-gauge-round-annotated/06-cairo-gauge-round-annotated-9.png
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Auto Generated File DO NOT EDIT | ||
--> | ||
<!-- Dimension(256,256) --> | ||
|
||
# Cairo Gauge Round Annotated | ||
|
||
|
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Auto Generated File DO NOT EDIT | ||
--> | ||
<!-- Dimension(256,256) --> | ||
|
||
# Journey Map | ||
|
||
|
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Auto Generated File DO NOT EDIT | ||
--> | ||
<!-- Dimension(384,384) --> | ||
|
||
# Moving Journey Map | ||
|
||
|
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
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Auto Generated File DO NOT EDIT | ||
--> | ||
<!-- Dimension(256,128) --> | ||
|
||
# Chart | ||
|
||
|
Binary file added
BIN
+2.53 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-0.png
Oops, something went wrong.
Binary file added
BIN
+2.52 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-1.png
Oops, something went wrong.
Binary file added
BIN
+3.92 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-10.png
Oops, something went wrong.
Binary file added
BIN
+2.53 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-2.png
Oops, something went wrong.
Binary file added
BIN
+3.31 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-3.png
Oops, something went wrong.
Binary file added
BIN
+4.49 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-4.png
Oops, something went wrong.
Binary file added
BIN
+2.61 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-5.png
Oops, something went wrong.
Binary file added
BIN
+3.26 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-6.png
Oops, something went wrong.
Binary file added
BIN
+3.08 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-7.png
Oops, something went wrong.
Binary file added
BIN
+2.08 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-8.png
Oops, something went wrong.
Binary file added
BIN
+3.39 KB
docs/xml/examples/07-motor-speed-indicator/07-motor-speed-indicator-9.png
Oops, something went wrong.
Oops, something went wrong.