Parse binary Zero motorcycle logs and save a resulting text file
1.0K
This is a small decoder utility to parse Zero Motorcycle main bike board (MBB) and battery management system (BMS) logs.
You can extract logs from the bike using the Zero mobile app:
Support > Email bike logs.To: line to send the logs to yourself rather than / in addition to Zero Motorcycles support.You'll need to install Python 3 somehow from https://www.python.org/downloads/
$ python3 zero_log_parser.py <logfile.bin> [-o output_file]
If you want to run using Docker, there's only two steps: build, then run.
docker build . -t "zero-log-parser"
To explain:
docker build
Build a new Docker image
.
Use a Dockerfile in the current directory ("/.")
-t "zero-log-parser"
Tag it as "zero-log-parser"
We will change directory to where the logs are, then run the tool against a log.
cd ~/zero-logs
docker run --rm -v "$PWD:/root" zero-log-parser /root/VIN_BMS0_2019-04-20.bin -o /root/VIN_BMS0_2019-04-20.txt
To explain:
cd ~/zero-logs
Go to the directory where the logs are stored. Change this to the correct directory for you
docker run
Run a Docker image as a container
--rm
Don't keep the image when it exits
-v "$PWD:/root"
Mount the current working directory as a volume inside the container at
/root
zero-log-parser
What Docker image to run
/root/VIN_BMS0_2019-04-20.bin
Name of the binary file. You can get this by doing an
lsafter thecdbefore this command. Make sure to add/root/before it since the path in the container is different
-o /root/VIN_BMS0_2019-04-20.txt
Save the decoded log file as
VIN_BMS0_2019-04-20.txtin/root, which will save it in the current working directory outside of the container
Basic log documentation is at log_structure.md.
If you want to debug the script and contribute, it's helpful to be able to run the tests. These currently look at a suite of log files and just run the parser to look for errors.
$ python3 setup.py develop
$ python3 test.py <directory of log files>
Originally developed at https://github.com/KimBurgess/zero-log-parser
Content type
Image
Digest
Size
18.8 MB
Last updated
over 4 years ago
docker pull tyzbit/zero-log-parser