Is the msg supposed to be handled by GoPiGo3? Return: Boolean True if valid for GoPiGo3 False otherwise
(msg)
| 383 | |
| 384 | |
| 385 | def is_GoPiGo3_msg(msg): |
| 386 | ''' |
| 387 | Is the msg supposed to be handled by GoPiGo3? |
| 388 | Return: Boolean |
| 389 | True if valid for GoPiGo3 |
| 390 | False otherwise |
| 391 | ''' |
| 392 | return is_msg(compiled_regexGPG3,msg) |
| 393 | |
| 394 | |
| 395 | def is_GoPiGo3_Sensor_msg(msg): |
no test coverage detected