initial test version

This commit is contained in:
Stefan Allius
2024-11-24 22:26:55 +01:00
parent 3bada76516
commit 2c69044bf8

20
proxy.c4 Normal file
View File

@@ -0,0 +1,20 @@
model {
extend home.logger.proxy {
component webserver 'http server'
component inverter 'inverter'
component local 'local connection'
component remote 'remote connection'
component r-ifc 'async-ifc'
component l-ifc 'async-ifc'
component prot 'Protocol' 'SolarmanV5 or Talent'
component config 'config' 'reads the file confg.toml'
component mqtt
inverter -> local
inverter -> remote
remote -> r-ifc
remote -> prot
local -> l-ifc
local -> prot
prot -> mqtt
}
}