Skip to content

Commit

Permalink
changes based on review
Browse files Browse the repository at this point in the history
  • Loading branch information
bboehmke committed Jun 25, 2021
1 parent 074d97e commit af7684b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ EVCC is an extensible EV Charge Controller with PV integration implemented in [G
- [MQTT (read/write)](#mqtt-readwrite)
- [HTTP (read/write)](#http-readwrite)
- [Websocket (read only)](#websocket-read-only)
- [SMA/Speedwire (read only)](#smaspeedwire-read-only)
- [Javascript (read/write)](#javascript-readwrite)
- [Shell Script (read/write)](#shell-script-readwrite)
- [Calc (read only)](#calc-read-only)
Expand Down Expand Up @@ -460,7 +461,7 @@ uri: 192.168.4.51 # alternative to serial
serial: 123456 # alternative to uri
value: ActivePowerPlus # ID of value to read
password: "0000" # optional (default: 0000)
interface: "eth0" # optional
interface: eth0 # optional
scale: 1 # optional scale factor for value
```
Expand Down
2 changes: 0 additions & 2 deletions provider/sma.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ func NewSMAFromConfig(other map[string]interface{}) (IntProvider, error) {
return provider, err
}

var _ FloatProvider = (*Mqtt)(nil)

// FloatGetter creates handler for float64
func (p *SMA) FloatGetter() func() (float64, error) {
return func() (float64, error) {
Expand Down

0 comments on commit af7684b

Please sign in to comment.