├── .gitignore ├── CHANGES.md ├── J1939db.json ├── LICENSE ├── README.md ├── create_j1939db-json.py ├── pretty_j1939.py ├── pretty_j1939 ├── __init__.py └── describe.py ├── setup.py └── testme.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/CHANGES.md -------------------------------------------------------------------------------- /J1939db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/J1939db.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/README.md -------------------------------------------------------------------------------- /create_j1939db-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/create_j1939db-json.py -------------------------------------------------------------------------------- /pretty_j1939.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/pretty_j1939.py -------------------------------------------------------------------------------- /pretty_j1939/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pretty_j1939/describe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/pretty_j1939/describe.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/setup.py -------------------------------------------------------------------------------- /testme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmfta-repo/pretty_j1939/HEAD/testme.sh --------------------------------------------------------------------------------