func Wait() error { res := int(C.ws2811_wait(&C.ledstring)) if res == 0 { return nil } else { return errors.New(fmt.Sprintf("Error ws2811.wait.%d", res)) } }
func Wait() int { res := int(C.ws2811_wait(&C.ledstring)) return res }