Skip to content

githubDante/go-solarman-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Proxy for SolarmanV5 data-loggers in TCP-Client mode


  • Multi logger, multi client

    • one logger can communicate with multiple clients, no client connections limit (limit is 5 when the logger is in TCP-Server mode)
    • all clients communicate with the respective datalogger (serial number based)
  • Packets routing based on serial number

  • Single point of communication with all data-loggers - one ip, one port (8899)

  • Only V5 encoded packets are processed

  • Recommended client pysolarmanV5


Usage
  • Proxy start
    go-solarmanV5-proxy <address> <port for data-logger connections>
    e.g.
    go-solarmanV5-proxy 192.168.1.3 12345
    • -debug flag can be used to see what's going on under the hood 😎
    • -silent flag will make the proxy completely silent
    • all messages are logged to stdout for now
  • Data logger configuration (config_hide.html) image

All clients then can be connected to port 8899 of the proxy server


Build

make 
  • The binary will be placed in the build dir

Install

go install github.com/githubDante/go-solarman-proxy@latest
  • for ready to use binaries see Releases