A CircuitPython library for working with the MCP2515 CAN bus controller
Project description
Introduction
A CircuitPython library for working with the MCP2515 CAN bus controller
Dependencies
This driver depends on:
Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:
pip3 install adafruit-circuitpython-mcp2515
To install system-wide (this may be required in some cases):
sudo pip3 install adafruit-circuitpython-mcp2515
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-mcp2515
Usage Example
import board
import busio
import digitalio
import adafruit_mcp2515
CS_PIN = 5
cs = digitalio.DigitalInOut(board.D5)
cs.direction = digitalio.Direction.OUTPUT
spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
mcp = adafruit_mcp2515.MCP2515(spi, cs)
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
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
Hashes for adafruit-circuitpython-mcp2515-1.1.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04b4aaa63512ec94d75b079c84c37e2418d12ab25fe487a54e82ade492bde9ba |
|
MD5 | a513fc41060a4b2d85ecc845e67185b6 |
|
BLAKE2b-256 | 2b93c3cdebb130b11a4361fb483c262752f375a1147e3d8cf62bf37757e848a8 |
Hashes for adafruit_circuitpython_mcp2515-1.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bb7951a756489f15d9ef9759969503482acc9760c8d27e2a60856d94cd9284c |
|
MD5 | 39ae01ac3b87a1c1f7deb35fb06e28cf |
|
BLAKE2b-256 | d4268ac3ac8aecd6550757e2e891792fad4917c26fc2989cf51e97e02d07810f |