معرفی شرکت ها


candle-driver-0.1.5


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Python wrapper for the candle (gs_usb) windows driver.
ویژگی مقدار
سیستم عامل -
نام فایل candle-driver-0.1.5
نام candle-driver
نسخه کتابخانه 0.1.5
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jurgis Balčiūnas
ایمیل نویسنده chemicstry@gmail.com
آدرس صفحه اصلی https://github.com/chemicstry/candle_driver
آدرس اینترنتی https://pypi.org/project/candle-driver/
مجوز MIT
# candle_driver Python wrapper for the candle (gs_usb) windows driver which is published [here](https://github.com/HubertD/cangaroo/tree/master/src/driver/CandleApiDriver/api). Used to communicate with candleLight, [CANable](https://canable.io/) (with candleLight [firmware](https://github.com/HubertD/candleLight_fw)) CAN-USB adapters. ## Example usage ```python import candle_driver # lists all available candle devices devices = candle_driver.list_devices() if not len(devices): print('No candle devices found.') exit() print('Found {} candle devices.'.format(len(devices))) # use first availabel device device = devices[0] print('Device path: {}'.format(device.path())) print('Device name: {}'.format(device.name())) print('Device channels: {}'.format(device.channel_count())) # open device (blocks other processes from using it) device.open() print('Device timestamp: %d' % device.timestamp()) # in usec # open first channel ch = device.channel(0) ch.set_bitrate(1000000) # or # ch.set_timings(prop_seg=1, phase_seg1=12, phase_seg2=2, sjw=1, brp=3) # start receiving data ch.start() # normal frame ch.write(10, b'abcdefgh') # extended frame ch.write(10235 | candle_driver.CANDLE_ID_EXTENDED, b'abcdefgh') # wait 1000ms for data try: frame_type, can_id, can_data, extended, ts = ch.read(1000) print('Received {} from ID {} at {}'.format(can_data, can_id, ts)) except TimeoutError: print('CAN read timeout') # close everything ch.stop() device.close() ``` ## License This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details. Windows C driver is licensed under the GPLv3 License - see the [LICENSE](candle_api/LICENSE) file for details. ## Acknowledgments * [Hubert Denkmair](https://github.com/HubertD) for the Windows C driver.


زبان مورد نیاز

مقدار نام
>=3.6.0 Python


نحوه نصب


نصب پکیج whl candle-driver-0.1.5:

    pip install candle-driver-0.1.5.whl


نصب پکیج tar.gz candle-driver-0.1.5:

    pip install candle-driver-0.1.5.tar.gz