~aleteoryx/muditaos

ref: 0e8b4c848e3f87f3bbb1f64ef7460cf56017b87f muditaos/module-services/service-evtmgr/doc/charger_temperature_algorithm.puml -rw-r--r-- 586 bytes
0e8b4c84 — Lefucjusz [BH-2108] Fix misaligned charging symbol 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@startuml
skinparam BackgroundColor F0F0F0
(*) --> [initialization] "measurement" as meas
"teperature range\n violation interrupt" -> meas
If "Detected range" then
    ---> [T<=0 Cdeg] "charger off" as coff
    --> "set interrupt\nbounds with hysteresis" as sh
    else
    --> [T>45 Cdeg] coff
    else    
    ---> [T = 1~15 Cdeg] "Charging: \nCC 300mA\nCV 4.35V"
    -> "charger On" as con
    else    
    ---> [T = 15~35 Cdeg] "Charging: \nCC 1600mA\nCV 4.35V"
    --> con
    else    
    ---> [T = 35~45 Cdeg] "Charging: \nCC 1600mA\nCV 4.1V"
    -> con
Endif
con -> sh
@enduml