rename package

This commit is contained in:
2025-07-13 07:02:26 +02:00
parent 63284ab51c
commit f063aadcd8
24 changed files with 24 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
package statevariables
var Volume = func() *StateVariable {
vol := StateType_UI2.NewStateValue("Volume")
vol.SetRange(0, 100)
vol.SetStep(1)
vol.SetSendingEvents()
return vol
}()