Search found 4 matches

by UlfMuller
Fri 3. Dec 2021, 12:42
Forum: PCAN-Explorer 6 & Add-ins
Topic: help create GUI using VBS macros
Replies: 7
Views: 4833

Re: help create GUI using VBS macros

I´m interested in sending for example frame "DierctionData" PGN: 130577 (hex: 1FE11), and signal for "Drift Speed" from NMEA2000 std where signal has start bit 96.
Is using Standard macro suitable for this?
by UlfMuller
Fri 3. Dec 2021, 11:45
Forum: PCAN-Explorer 6 & Add-ins
Topic: help create GUI using VBS macros
Replies: 7
Views: 4833

Re: help create GUI using VBS macros

Hi
Is there a way to set up an multiframe and put it out from the Transmit window without using any API?
for us that lack programming experience ;)
by UlfMuller
Thu 10. Oct 2019, 10:43
Forum: PCAN-Explorer 6 & Add-ins
Topic: Standard Macro with counter
Replies: 2
Views: 5048

Re: Standard Macro with counter

Hi Again,
I found a solution in using the VBS macro function as you has described in another question :D

Following code did the trick:
Sub CounterChecksumExample()
Dim msg, counter
counter = 0
Set msg = TransmitMessages(1)
While True
msg.Data(0) = counter
'msg.Data(7) = CalcMyChecksum ...
by UlfMuller
Thu 10. Oct 2019, 09:12
Forum: PCAN-Explorer 6 & Add-ins
Topic: Standard Macro with counter
Replies: 2
Views: 5048

Standard Macro with counter

Hi Team,

I'm quite new to using and writing macro, so I would appreciate a little help.

I'm using PCAN Exlplorer 6 and trying to write a macro using Standard Macro with Format version=6.
The thing I want to do is to send a extended frame with a counter that loops in the first byte.
Sofar I have ...