Remove delay from CAN transmit routine

This commit is contained in:
Jasper Blanckenburg 2023-04-01 21:07:09 +02:00
parent 72b3a0e14c
commit 4f601c8b44
1 changed files with 0 additions and 1 deletions

View File

@ -14,7 +14,6 @@ def sendMessageOnCan(message, bustype="socketcan", channel="can0"):
msg = can.Message(arbitration_id=0x002, data=message, is_extended_id=False)
bus.send(msg)
time.sleep(1)
def recive(bustype="socketcan", channel="can0"):