gs_usb
Python Windows/Linux/Mac CAN driver based on usbfs or WinUSB WCID for Geschwister Schneider USB/CAN devices, candleLight USB CAN interfaces, CAN Debugger devices and other interfaces utilising the gs_usb driver.
Getting Started
Install by pip install gs_usb
Below is a basic demo for CAN message sending and receiving.
import time
from gs_usb.gs_usb import GsUsb
from gs_usb.gs_usb_frame import GsUsbFrame
from gs_usb.constants import (
CAN_EFF_FLAG,
CAN_ERR_FLAG,
CAN_RTR_FLAG,
)
def main():
# Find our device
devs = GsUsb.scan()
if len(devs) == 0:
print("Can not find gs_usb device")
return
dev = devs[0]
# Configuration
if not dev.set_bitrate(250000):
print("Can not set bitrate for gs_usb")
return
# Start device
dev.start()
# Prepare frames
data = b"\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
sff_frame = GsUsbFrame(can_id=0x7FF, data=data)
sff_none_data_frame = GsUsbFrame(can_id=0x7FF)
err_frame = GsUsbFrame(can_id=0x7FF | CAN_ERR_FLAG, data=data)
eff_frame = GsUsbFrame(can_id=0x12345678 | CAN_EFF_FLAG, data=data)
eff_none_data_frame = GsUsbFrame(can_id=0x12345678 | CAN_EFF_FLAG)
rtr_frame = GsUsbFrame(can_id=0x7FF | CAN_RTR_FLAG)
rtr_with_eid_frame = GsUsbFrame(can_id=0x12345678 | CAN_RTR_FLAG | CAN_EFF_FLAG)
rtr_with_data_frame = GsUsbFrame(can_id=0x7FF | CAN_RTR_FLAG, data=data)
frames = [
sff_frame,
sff_none_data_frame,
err_frame,
eff_frame,
eff_none_data_frame,
rtr_frame,
rtr_with_eid_frame,
rtr_with_data_frame,
]
# Read all the time and send message in each second
end_time, n = time.time() + 1, -1
while True:
iframe = GsUsbFrame()
if dev.read(iframe, 1):
print("RX {}".format(iframe))
if time.time() - end_time >= 0:
end_time = time.time() + 1
n += 1
n %= len(frames)
if dev.send(frames[n]):
print("TX {}".format(frames[n]))
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
pass
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gs_usb-0.3.1.tar.gz
(6.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gs_usb-0.3.1.tar.gz.
File metadata
- Download URL: gs_usb-0.3.1.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8a76285fda29b45a5a633cfe232a08058f642441b3d030877dc28ef6e0b7807
|
|
| MD5 |
511a494233a9b37b219b40be0b462e1a
|
|
| BLAKE2b-256 |
37d8bb03645332d0de656b913cf4ac151aabc5c2c6e3c0c1fa30814fd4c45126
|
File details
Details for the file gs_usb-0.3.1-py2.py3-none-any.whl.
File metadata
- Download URL: gs_usb-0.3.1-py2.py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c35d4404427db3f7955a687a1235b5829f94c61ece56eb0cf3f3b23e2d44883
|
|
| MD5 |
fe4fedf60c00dcca5e9fe39528fa8777
|
|
| BLAKE2b-256 |
760813b4e21ff15df9b7017e7e6265282df78098e50275bb99efc26b5d14ce29
|