A simple CAN viewer terminal application written in Python
Project description
Python CAN Viewer
Developed by Kristian Lauszus, 2018
The code is released under the GNU General Public License.
A simple CAN viewer terminal application written in Python. Both Python 2, Python 3, pypy and pypy3 are supported.
Usage
The project can be installed by first cloning the repository and then installing it via pip:
git clone https://github.com/Lauszus/python_can_viewer
pip install -e python_can_viewer
To run the script simply execute:
python -m python_can_viewer
A screenshot of the application can be seen below:
The first column is the number of times a frame with the particular ID has been received, next is the timestamp of the frame relative to when the script was started. The third column is the time between the current frame relative to the previous one. Next is the length of the frame and then the data.
The last two columns are the decoded CANopen function code and node ID. If CANopen is not used, then they can simply be ignored.
Command line arguments
By default it will be using the can0
channel and the socketcan
interface. However these can be specified using the -c
and -i
flag respectively.
The full usage page can be seen below:
usage: python -m python_can_viewer [-h] [--version] [-b BITRATE] [-c CHANNEL]
[-d {<id>:<format>,<id>:<format>:<scaling1>:...:<scalingN>,file.txt}]
[-f {<can_id>:<can_mask>,<can_id>~<can_mask>}]
[-i {iscan,ixxat,kvaser,neovi,nican,pcan,serial,slcan,socketcan,socketcan_ctypes,socketcan_native,usb2can,vector,virtual}]
[--ignore-canopen]
A simple CAN viewer terminal application written in Python
optional arguments:
-h, --help Show this help message and exit
--version Show program's version number and exit
-b, --bitrate BITRATE
Bitrate to use for the given CAN interface
-c, --channel CHANNEL
Most backend interfaces require some sort of channel.
for example with the serial interface the channel
might be a rfcomm device: "/dev/rfcomm0" with the
socketcan interfaces valid channel examples include:
"can0", "vcan0". (default: "can0")
-d, --decode {<id>:<format>,<id>:<format>:<scaling1>:...:<scalingN>,file.txt}
Specify how to convert the raw bytes into real values.
The ID of the frame is given as the first argument and the format as the second.
The Python struct package is used to unpack the received data
where the format characters have the following meaning:
< = little-endian, > = big-endian
x = pad byte
c = char
? = bool
b = int8_t, B = uint8_t
h = int16, H = uint16
l = int32_t, L = uint32_t
q = int64_t, Q = uint64_t
f = float (32-bits), d = double (64-bits)
Fx to convert six bytes with ID 0x100 into uint8_t, uint16 and uint32_t:
$ python -m python_can_viewer -d "100:<BHL"
Note that the IDs are always interpreted as hex values.
An optional conversion from integers to real units can be given
as additional arguments. In order to convert from raw integer
values the values are multiplied with the corresponding scaling value,
similarly the values are divided by the scaling value in order
to convert from real units to raw integer values.
Fx lets say the uint8_t needs no conversion, but the uint16 and the uint32_t
needs to be divided by 10 and 100 respectively:
$ python -m python_can_viewer -d "101:<BHL:1:10.0:100.0"
Be aware that integer division is performed if the scaling value is an integer.
Multiple arguments are separated by spaces:
$ python -m python_can_viewer -d "100:<BHL" "101:<BHL:1:10.0:100.0"
Alternatively a file containing the conversion strings separated by new lines
can be given as input:
$ cat file.txt
100:<BHL
101:<BHL:1:10.0:100.0
$ python -m python_can_viewer -d file.txt
-f, --filter {<can_id>:<can_mask>,<can_id>~<can_mask>}
Comma separated CAN filters for the given CAN interface:
<can_id>:<can_mask> (matches when <received_can_id> & mask == can_id & mask)
<can_id>~<can_mask> (matches when <received_can_id> & mask != can_id & mask)
Fx to show only frames with ID 0x100 to 0x103:
python -m python_can_viewer -f 100:7FC
Note that the ID and mask are alway interpreted as hex values
-i, --interface {iscan,ixxat,kvaser,neovi,nican,pcan,serial,slcan,socketcan,socketcan_ctypes,socketcan_native,usb2can,vector,virtual}
Specify the backend CAN interface to use. (default: "socketcan")
--ignore-canopen Do not print CANopen information
Shortcuts
Key | Description |
---|---|
ESC/q | Exit the viewer |
c | Clear the stored frames |
SPACE | Pause the viewer |
UP/DOWN | Scroll the viewer |
Misc
I would recommend the following board for testing on a Raspberry Pi: http://skpang.co.uk/catalog/pican2-canbus-board-for-raspberry-pi-23-p-1475.html.
The CAN interface can be setup like so:
sudo apt-get -y install can-utils
sudo raspi-config nonint do_spi 0
sudo sh -c 'echo "dtoverlay=mcp2515-can0,oscillator=16000000,interrupt=25" >> /boot/config.txt'
sudo sh -c 'echo "dtoverlay=spi0-hw-cs" >> /boot/config.txt'
For more information send me an email at lauszus@gmail.com.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Python CAN Viewer-0.1.0.tar.gz
.
File metadata
- Download URL: Python CAN Viewer-0.1.0.tar.gz
- Upload date:
- Size: 19.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16eacfbb85f05a9f34ed6f7a444654647cf2f2542eea3ed11177ad706c177aa2 |
|
MD5 | 484d58bb2a863648c9db29999ae9b8f7 |
|
BLAKE2b-256 | 976051618e8160d0b75f66663d8e3946a3507d2a2b4997c288fe4fa8ee443950 |
File details
Details for the file Python_CAN_Viewer-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: Python_CAN_Viewer-0.1.0-py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2525f270c2cfe9f092810814d059bf65dec14bfacb318b7949b2ce3a36476791 |
|
MD5 | 05ccd00bc560520118fd34f966abe590 |
|
BLAKE2b-256 | 5a7e905d5d4bb1a3978b0d5a5516cfef70dfc8df66b8cd29c57509afe0788091 |