wolbodge/devices/test.go
2025-03-22 15:42:01 +01:00

35 lines
470 B
Go

package devices
import "sync"
func NewTest(status bool) Device {
device := &test{
lock: sync.Mutex{},
status: status,
}
return device
}
type test struct {
lock sync.Mutex
status bool
}
func (d *test) Status() (bool, error) {
d.lock.Lock()
defer d.lock.Unlock()
return d.status, nil
}
func (d *test) ToggleStatus() error {
d.lock.Lock()
defer d.lock.Unlock()
d.status = !d.status
return nil
}
func (d *test) String() string {
return "test"
}