sample_python_can.py 168 B

123456
  1. import can
  2. msg = can.Message(arbitration_id=0xc0ffee,
  3. data=[0, 25, 0, 1, 3, 1, 4, 1],
  4. is_extended_id=True)
  5. assert(msg is not None)