Files
pmomusic/upnp/statevariable/statevariable_Volume.go

14 lines
189 B
Go
Raw Normal View History

2025-07-13 06:59:56 +02:00
package stateVariables
var Volume = func() *StateVariable {
vol := StateType_UI2.NewStateValue("Volume")
vol.SetRange(0, 100)
vol.SetStep(1)
vol.SetSendingEvents()
return vol
}()