GetMinCurrent returns the min loadpoint current
()
| 712 | |
| 713 | // GetMinCurrent returns the min loadpoint current |
| 714 | func (lp *Loadpoint) GetMinCurrent() float64 { |
| 715 | lp.RLock() |
| 716 | defer lp.RUnlock() |
| 717 | return lp.getMinCurrent() |
| 718 | } |
| 719 | |
| 720 | // getMinCurrent returns the max loadpoint current |
| 721 | func (lp *Loadpoint) getMinCurrent() float64 { |
no test coverage detected