Difference between revisions of "VehicleState"
Jump to navigation
Jump to search
(6 intermediate revisions by the same user not shown) | |||
Line 23: | Line 23: | ||
label="Incar Computer" | label="Incar Computer" | ||
InCarOff -> InCarOn -> InCarSoftwareStarted [dir="both"] | InCarOff -> InCarOn -> InCarSoftwareStarted [dir="both"] | ||
+ | } | ||
+ | subgraph cluster_OBD { | ||
+ | label="OBD" | ||
+ | OBDOff -> OBDOn [dir="both"] | ||
+ | OBDOn -> OBDSleep [dir="both"] | ||
+ | OBDSleep -> OBDOff | ||
+ | } | ||
+ | subgraph cluster_Bluetooth { | ||
+ | label="Bluetooth" | ||
+ | BLDisconnected -> BLPaired -> BLConnected [dir="both"] | ||
+ | } | ||
+ | subgraph cluster_Wifi { | ||
+ | label="Wifi" | ||
+ | WifiOutOfRange -> WifiInRange -> WifiConnected [dir="both"] | ||
+ | } | ||
+ | subgraph cluster_USB { | ||
+ | label="USB" | ||
+ | UBSConnected -> USBDisconnected [dir="both"] | ||
+ | } | ||
+ | subgraph cluster_CAN { | ||
+ | label="CAN" | ||
+ | NoData -> Data -> Monitoring [dir="both"] | ||
+ | } | ||
+ | subgraph cluster_car { | ||
+ | parking -> charging [dir="both"] | ||
+ | parking -> moving [dir="both"] | ||
+ | charging -> full | ||
+ | full -> parking [ label="immediate" ] | ||
} | } | ||
} | } | ||
</graphviz> | </graphviz> |