refactoring

This commit is contained in:
2025-07-13 06:59:56 +02:00
parent a9f66c9f70
commit 63284ab51c
25 changed files with 158 additions and 105 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
}()