needs to be true else won't work

This commit is contained in:
William Clark 2022-11-12 17:13:03 +00:00
parent 95664cbebf
commit 507ba451a2

View File

@ -28,8 +28,8 @@ func NewLEDController() *LEDController {
// turn both off
func (c *LEDController) Off() {
c.led1 = false
c.led2 = false
c.led1 = true
c.led2 = true
c.Disable1()
c.Disable2()