Code:local path = 'Fordrat8\\Ocelot\\Ocelot.Module4.Bobcat-H' local device = DeviceManager:GetDeviceUsingPath (path) if device then device:Print () else print ('No Device') end local controlid = 'Humidity' local control = device:GetControl (controlid) if control then print (control:GetValue()) Voice:Speak("Living Room Humidity is"..control:GetValue().."percent") end