Jack Cook

Results 59 comments of Jack Cook

What is `canopen`? Have you read the `README` and docs? Have you installed a driver for your device? I have seen issues in recent discussing a function that can `find_all_interfaces`....

From my perspective, I would say you have one of two options: 1. Buy a CAN adapter that is already supported by the library (e.g. [PCAN-USB](https://www.peak-system.com/PCAN-USB.199.0.html?&L=1)) 2. Write an interface...

A "low cost open-source USB to CAN adapter" is [CANable 2.0](https://openlightlabs.com/collections/frontpage/products/canable-2-0). However, they are out of stock. You might want to look into [can/interfaces](https://github.com/hardbyte/python-can/tree/develop/can/interfaces). I have never written an interface,...

This problem could lie in your "Python Interpreter" selection in PyCharm, which could be verified by running your script from the command line. You can run the script from the...

Have you tried running the [logger script](https://python-can.readthedocs.io/en/stable/scripts.html#can-logger)? Does the trace back include the function call you copied in?

@zariiii9003 This was resolved in https://github.com/hardbyte/python-can/pull/1362.

> From my personal point of view the trc file format is the most relevant in connection with agricultural machines (this is my normal job). Interesting. Vector is the dominant...

ping @wolfraven -- unaddressed requested changes.

Current example usage: ``` import pygfunction as gt borefield = gt.boreholes.rectangle_field(5, 5, 5, 5, 100, 5, 0.075) borefield = gt.boreholes.Borefield(borefield) n = borefield.nBoreholes H = borefield.H borehole = gt.boreholes.Borehole(50, 5,...

@zariiii9003 Will PR #1365 be able to resolve this?