معرفی شرکت ها


CANard-0.2.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Library for interacting with Controller Area Network (CAN)
ویژگی مقدار
سیستم عامل -
نام فایل CANard-0.2.2
نام CANard
نسخه کتابخانه 0.2.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Eric Evenchick
ایمیل نویسنده eric@evenchick.com
آدرس صفحه اصلی http://github.com/ericevenchick/CANard
آدرس اینترنتی https://pypi.org/project/CANard/
مجوز GPLv3
====== CANard ====== CANard is a library for dealing with Controller Area Network (CAN) data from Python. Using a CANtact =============== The CANtact_ tool is directly supported by CANard. Using it requires pySerial, which can be installed with pip:: pip install pyserial .. _CANtact: http://cantact.io/ Example ------- This examples goes on bus and prints received messages: .. code:: python from canard import can from canard.hw import cantact dev = cantact.CantactDev("/dev/cu.usbmodem14511") dev.start() while True: print(dev.recv()) You will need to set the serial port (``/dev/cu.usbmodem14511`` in this example) correctly. Using Peak CAN Tools ==================== Peak CAN tools (also known as GridConnect) are support through SocketCAN. This functionality is only available on Linux For kernels 3.6 and newer, skip to step 5. 1. Download the Peak `Linux driver`_. 2. Install dependancies:: sudo apt-get install libpopt-dev 3. Build the driver:: cd peak-linux-driver-x.xx make sudo make install 4. Enable the driver:: sudo modprobe pcan 5. Connect a Peak CAN tool, ensure it appears in ``/proc/pcan``. Note the network device name (ie, ``can0``) 6. Bring the corresponding network up:: sudo ifconfig can0 up Example ------- The device can now be accessed as a ``SocketCanDev``. This examples goes on bus and prints received messages: .. code:: python from canard import can from canard.hw import socketcan dev = socketcan.SocketCanDev("can0") dev.start() while True: print(dev.recv()) .. _`Linux driver`: http://www.peak-system.com/fileadmin/media/linux/index.htm#download


نحوه نصب


نصب پکیج whl CANard-0.2.2:

    pip install CANard-0.2.2.whl


نصب پکیج tar.gz CANard-0.2.2:

    pip install CANard-0.2.2.tar.gz