Aucune description

yuanan ce8d59b480 update pcs.csv il y a 1 semaine
config ce8d59b480 update pcs.csv il y a 1 semaine
src 9768c27881 【功能】调整日志 il y a 1 semaine
.gitignore 6a442cecf8 【框架搭建】update il y a 2 mois
Cargo.lock ed3f5fa0d8 【功能】MQTT根据topic分配给dev il y a 3 semaines
Cargo.toml ed3f5fa0d8 【功能】MQTT根据topic分配给dev il y a 3 semaines
emu-config.yaml 04bf38f817 【功能】BMS点位封装为json并推到MQTT il y a 1 semaine
readme.md d909592fe8 【框架搭建】增加类图 il y a 2 mois

readme.md

系统类图

classDiagram
    class Service {
        +run() Result~JoinHandle~
    }
    <<interface>> Service
    class Pcs {
        +new() Pcs
        +run() Result~JoinHandle~
    }
    class Bms {
        +new() Bms
        +run() Result~JoinHandle~
    }
    Pcs ..|> Service
    Bms ..|> Service
    class Ems {
        +devices: Vec~Service~
        +start_services() Result
    }
    Ems *-- Service