mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-19 14:15:02 -04:00
Images generated using PlantUML had transparent backgrounds which made their text difficult to read on GitHub when using "Dark Mode". Forcing a background color of #F0F0F0 ensures they are all readable.
16 lines
303 B
Plaintext
16 lines
303 B
Plaintext
@startuml
|
|
skinparam BackgroundColor F0F0F0
|
|
(*) -> [initialization] "Limit 500mA"
|
|
|
|
"USB plugged" -> "USB type recognition"
|
|
If "Detected USB type" then
|
|
---> [SDP] "Limit 500mA"
|
|
else
|
|
-> [CDP] "Limit 1000mA"
|
|
else
|
|
--> [DCP] "Limit 1000mA"
|
|
Endif
|
|
|
|
"USB unplugged" --> "Limit 500mA"
|
|
@enduml
|