forked from eclipse-ibeji/ibeji
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added seat massage demo (eclipse-ibeji#35)
* Added seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Render PlantUML files * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Add seat massage demo * Render PlantUML files * Add seat massage demo * Add seat massage demo --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
125b6d5
commit c3b6374
Showing
46 changed files
with
1,336 additions
and
456 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
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 was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
digital-twin-model/dtdl/v3/content/sdv/airbag_seat_massager.json
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,20 @@ | ||
[ | ||
{ | ||
"@context": ["dtmi:dtdl:context;3"], | ||
"@type": "Interface", | ||
"@id": "dtmi:sdv:AirbagSeatMassager;1", | ||
"description": "Airbag Seat Massager", | ||
"contents": [ | ||
{ | ||
"@type": "Property", | ||
"@id": "dtmi:sdv:AirbagSeatMassager:MassageAirbags;1", | ||
"name": "MassageAirbags", | ||
"description": "The inflation level (0..100) for each massage airbag.", | ||
"schema": { | ||
"@type": "Array", | ||
"elementSchema": "integer" | ||
} | ||
} | ||
] | ||
} | ||
] |
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,23 @@ | ||
[ | ||
{ | ||
"@context": ["dtmi:dtdl:context;3"], | ||
"@type": "Interface", | ||
"@id": "dtmi:sdv:HMI;1", | ||
"description": "The Human Machine Interface.", | ||
"contents": [ | ||
{ | ||
"@type": "Command", | ||
"@id": "dtmi:sdv:HMI:ShowNotification;1", | ||
"name": "ShowNotification", | ||
"description": "Show a notification on the HMI.", | ||
"request": { | ||
"@id": "dtmi:sdv:HMI:ShowNotification:request;1", | ||
"name": "Notification", | ||
"displayName": "Notification", | ||
"description": "The notification to show on the HMI.", | ||
"schema": "string" | ||
} | ||
} | ||
] | ||
} | ||
] |
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,24 @@ | ||
[ | ||
{ | ||
"@context": ["dtmi:dtdl:context;3"], | ||
"@type": "Interface", | ||
"@id": "dtmi:sdv:HVAC;1", | ||
"description": "Heat, Ventilation and Air Conditioning", | ||
"contents": [ | ||
{ | ||
"@type": "Property", | ||
"@id": "dtmi:sdv:HVAC:AmbientAirTemperature;1", | ||
"name": "AmbientAirTemperature", | ||
"description": "The immediate surroundings air temperature (in Fahrenheit).", | ||
"schema": "integer" | ||
}, | ||
{ | ||
"@type": "Property", | ||
"@id": "dtmi:sdv:HVAC:IsAirConditioningActive;1", | ||
"name": "IsAirConditioningActive", | ||
"description": "Is air conditioning active?", | ||
"schema": "boolean" | ||
} | ||
] | ||
} | ||
] |
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,17 @@ | ||
[ | ||
{ | ||
"@context": ["dtmi:dtdl:context;3"], | ||
"@type": "Interface", | ||
"@id": "dtmi:sdv:OBD;1", | ||
"description": "On-board Diagnostics Interface", | ||
"contents": [ | ||
{ | ||
"@type": "Property", | ||
"@id": "dtmi:sdv:OBD:HybridBatteryRemaining;1", | ||
"name": "HybridBatteryRemaining", | ||
"description": "The remaining hybrid battery life.", | ||
"schema": "integer" | ||
} | ||
] | ||
} | ||
] |
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 |
---|---|---|
@@ -1,26 +1,27 @@ | ||
AmbientAirTemperature | ||
api | ||
com | ||
degreeFahrenheit | ||
dt | ||
dtdl | ||
DTDL | ||
dtmi | ||
github | ||
https | ||
ibeji | ||
Ibeji | ||
IsAirConditioningActive | ||
findbyid | ||
FindById | ||
gRPC | ||
http | ||
HVAC | ||
json | ||
metadata | ||
opendigitaltwins | ||
org | ||
RemotelyAccessible | ||
sdv | ||
svg | ||
uml | ||
uri | ||
api | ||
com | ||
github | ||
https | ||
opendigitaltwins | ||
|
Oops, something went wrong.