Skip to content

Commit

Permalink
add vspec for tires
Browse files Browse the repository at this point in the history
Signed-off-by: Douglas Schilling Landgraf <[email protected]>
  • Loading branch information
dougsland committed Sep 25, 2024
1 parent a74a929 commit 4b0bdcc
Show file tree
Hide file tree
Showing 2 changed files with 131 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Goodyear Eagle F1 Tire VSS (Vehicle Signal Specification)
vspec:
name: Goodyear_Eagle_F1
type: branch
description: Signals related to Goodyear Eagle F1 tires

children:
pressure:
type: sensor
datatype: float
unit: "kPa"
description: "Tire pressure for Goodyear Eagle F1"
min: 0
max: 400
accuracy: "±5kPa"
vendor_specific:
vendor: "Goodyear"
model: "Eagle F1"
sensor_type: "PressureSensor"

temperature:
type: sensor
datatype: float
unit: "Celsius"
description: "Tire temperature for Goodyear Eagle F1"
min: -40
max: 120
accuracy: "±2°C"
vendor_specific:
vendor: "Goodyear"
model: "Eagle F1"
sensor_type: "TemperatureSensor"

tread_depth:
type: sensor
datatype: float
unit: "mm"
description: "Tread depth for Goodyear Eagle F1"
min: 0
max: 10
accuracy: "±0.1mm"
vendor_specific:
vendor: "Goodyear"
model: "Eagle F1"
sensor_type: "DepthSensor"

wear_indicator:
type: sensor
datatype: boolean
description: "Tire wear indicator for Goodyear Eagle F1"
vendor_specific:
vendor: "Goodyear"
model: "Eagle F1"
sensor_type: "WearIndicator"
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
vspec:
name: Michelin_Pilot_Sport_4
type: branch
description: Signals related to Michelin Pilot Sport 4 tires

children:
pressure:
type: sensor
datatype: float
unit: "kPa"
description: "Tire pressure for Michelin Pilot Sport 4"
min: 0
max: 400
accuracy: "±5kPa"
vendor_specific:
vendor: "Michelin"
model: "Pilot Sport 4"
sensor_type: "PressureSensor"

temperature:
type: sensor
datatype: float
unit: "Celsius"
description: "Tire temperature for Michelin Pilot Sport 4"
min: -40
max: 120
accuracy: "±2°C"
vendor_specific:
vendor: "Michelin"
model: "Pilot Sport 4"
sensor_type: "TemperatureSensor"

tread_depth:
type: sensor
datatype: float
unit: "mm"
description: "Tread depth for Michelin Pilot Sport 4"
min: 0
max: 10
accuracy: "±0.1mm"
vendor_specific:
vendor: "Michelin"
model: "Pilot Sport 4"
sensor_type: "DepthSensor"

wear_indicator:
type: sensor
datatype: boolean
description: "Tire wear indicator for Michelin Pilot Sport 4"
vendor_specific:
vendor: "Michelin"
model: "Pilot Sport 4"
sensor_type: "WearIndicator"

0 comments on commit 4b0bdcc

Please sign in to comment.