(self, cmd, params={}, cb=None)
| 153 | |
| 154 | # Send a command |
| 155 | def cmd(self, cmd, params={}, cb=None): |
| 156 | self.send({"cmd": cmd, "params": params}, cb) |
| 157 | |
| 158 | # Encode to json and send message |
| 159 | def send(self, message, cb=None): |
no test coverage detected