Search found 5 matches

by singlequestion
Thu 12. Jul 2018, 13:19
Forum: PCAN-View
Topic: Can-Identifier
Replies: 1
Views: 3182

Can-Identifier

Hey everyone,

another question for understanding. PCAN-VIEW needs a given CAN-ID for a message request. Where do I find these CAN-ID's, that my pcan usb can understand them?

My Setup is the following

PC -> PCANUSB -> MODULE

Now i want to send a message like: 06 00 02 00 00 00 00 00, and I ...
by singlequestion
Thu 12. Jul 2018, 13:15
Forum: PCAN-Basic
Topic: PCAN Basic Example not working (python)
Replies: 2
Views: 6723

Re: PCAN Basic Example not working (python)

Thanks a lot ! It is working now!!

Best regards
by singlequestion
Tue 10. Jul 2018, 11:57
Forum: PCAN-Basic
Topic: PCAN Basic Example not working (python)
Replies: 2
Views: 6723

PCAN Basic Example not working (python)

Hello,

i am trying to run the basic samples of PCAN Basic for python. I try to run the python example but I get a Windows Error saying:

self._handle = _dlopen(self._name, mode)
Error 126: Module not found

all i did was only connecting the PCAN Adapter to the PC and run the python file.

Best ...
by singlequestion
Wed 4. Jul 2018, 09:36
Forum: PCAN-View
Topic: Beginner Question
Replies: 4
Views: 4530

Re: Beginner Question

Thanks a lot for your answer, it helped me a lot.

So when i try to send a datapacket (DP) like


DPTest1 = CanDatapacket()
DPTest1.data = array('B', [00,00,00,00,00,00])
DPTest1.dlc = len(DPTest1.data)
DPTest1.id = 0x01
DPTest1.uniqueID = 2382822626

then the necessary ID to communicate is the ...
by singlequestion
Mon 2. Jul 2018, 16:44
Forum: PCAN-View
Topic: Beginner Question
Replies: 4
Views: 4530

Beginner Question

Hey everyone,

I am using a PCAN USB device connected to my usb port on pc. I want to connect my PCAN USB DEVICE to a module like the following Illustration.

NOTEBOOK -----> PCAN USB DEVICE -----> CAN CONNECTION CABLE -----> MODULE
The module has also can port which i can connect to.
Now I am ...