Run command.
(self, strcommand)
| 152 | self.lib.AT_WaitBuffer(self.AT_H, ct.byref(ptr), ct.byref(bufsize), timeout) |
| 153 | |
| 154 | def command(self, strcommand): |
| 155 | """Run command. |
| 156 | """ |
| 157 | command = ct.c_wchar_p(strcommand) |
| 158 | self.lib.AT_Command(self.AT_H, command) |
| 159 | |
| 160 | def getint(self, strcommand): |
| 161 | """Run command and get Int return value. |