GetMaxCurrent returns the max loadpoint current
()
| 748 | |
| 749 | // GetMaxCurrent returns the max loadpoint current |
| 750 | func (lp *Loadpoint) GetMaxCurrent() float64 { |
| 751 | lp.RLock() |
| 752 | defer lp.RUnlock() |
| 753 | return lp.getMaxCurrent() |
| 754 | } |
| 755 | |
| 756 | // getMaxCurrent returns the max loadpoint current |
| 757 | func (lp *Loadpoint) getMaxCurrent() float64 { |
no test coverage detected