Added light sensor
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-23 01:16:46 +01:00
parent 780f633c90
commit f13ee65ead
10 changed files with 193 additions and 21 deletions

View File

@@ -11,7 +11,6 @@ func (n InternalName) Room() string {
room = s[0]
}
room = strings.ReplaceAll(room, "_", " ")
room = strings.Title(room)
return room
}
@@ -22,7 +21,6 @@ func (n InternalName) Name() string {
if len(s) > 1 {
name = s[1]
}
name = strings.Title(name)
return name
}