Set command with Float value parameter.
(self, strcommand, value)
| 181 | return result.value |
| 182 | |
| 183 | def setfloat(self, strcommand, value): |
| 184 | """Set command with Float value parameter. |
| 185 | """ |
| 186 | command = ct.c_wchar_p(strcommand) |
| 187 | value = ct.c_double(value) |
| 188 | self.lib.AT_SetFloat(self.AT_H, command, value) |
| 189 | |
| 190 | def getbool(self, strcommand): |
| 191 | """Run command and get Bool return value. |