Açıklama Yok

mikasa e50af8ce60 【工具】判断连续子序列 1 ay önce
config 9db5dc17bf 【功能】csv格式转化为指令,英博PCS协议 1 ay önce
src e50af8ce60 【工具】判断连续子序列 1 ay önce
.gitignore 6a442cecf8 【框架搭建】update 2 ay önce
Cargo.lock 49f8aa1dbe update 1 ay önce
Cargo.toml 79c48e2c17 update 1 ay önce
emu-config.yaml 33eb07a602 【框架】引入MQTT 1 ay önce
readme.md d909592fe8 【框架搭建】增加类图 2 ay önce

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