Search found 132 matches

by jay_dee
Wed Jan 27, 2021 11:49 am
Forum: General
Topic: User Console
Replies: 6
Views: 3561

User Console

Hi, The consoles are proving very useful within App Dev, I have UART and Circ Buffer console tabs. Is it currently possilbe to have a user defined console, much like I can place a breakpoint for bedugging. So I could insert a 'Console' request at a given point in the FC and during simulation all dat...
by jay_dee
Mon Jan 25, 2021 2:01 pm
Forum: General
Topic: Pro Support
Replies: 4
Views: 2569

Re: Pro Support

Great info, thanks Steve. Whilst I dont commericalise lots of our projects, certainly there are situations when I have to hit a clients deadline and prompt support from all (matrix and Users) who contribute to the forum is very much appreciated. Certainly keeping the knowledge as widly available as ...
by jay_dee
Mon Jan 25, 2021 12:53 pm
Forum: General
Topic: Pro Support
Replies: 4
Views: 2569

Pro Support

Hi,
I upgraded our pro FC package and the required tool chains. I noted something called 'Pro Support' but have not seen anything describing what this is or covers? Just interested, the forum support is excellent but always nice to know what the extra £150 bought. :) J.
by jay_dee
Mon Jan 25, 2021 11:52 am
Forum: General
Topic: UART Serial Sending Numbers
Replies: 6
Views: 3947

Re: UART Serial Sending Numbers

All input appreciated. Great, yes that totally make sense. The UART transmitter does not determine how the bytes are interpreted, the Reciving device does. If it handles everything as ASCII then I must bend to its will and send character values rather than pure byte values. As a non coder ( mechanic...
by jay_dee
Mon Jan 25, 2021 9:24 am
Forum: General
Topic: UART Serial Sending Numbers
Replies: 6
Views: 3947

Re: UART Serial Sending Numbers

Thanks Martin, To Clarify.. if I want to send a number over UART, I can only send it as a text based string. Thus for 255 send multiple bytes "2" "5" "5". In terms of bandwodith cost, Instead of a single byte of data I need to send three bytes of data? I cannot reliably send lower vlaue bytes as the...
by jay_dee
Sun Jan 24, 2021 10:42 am
Forum: General
Topic: UART Serial Sending Numbers
Replies: 6
Views: 3947

UART Serial Sending Numbers

I think I've caught myself out! I'm sending Byte values from a PIC using UART, values 0-255, These are recieved by Flowcode App Dev. But should I be using the sendChar, Send Number or Send String macros? If I sendChar 0 ( which I accept is ASCII Null) I dont seem to get anything at the other end? I ...
by jay_dee
Sat Jan 16, 2021 9:17 am
Forum: General
Topic: Leveraging SCADA tools for PIC Monitoring.
Replies: 6
Views: 3489

Re: Leveraging SCADA tools for PIC Monitoring.

Hi, With SCADA, several devices have a API for slave mode, these facilitate a fixed command and responce method. For the ECIO40P I think the commands ": 0x80 0x01 0x01 ;n " would set output channel 1 (A1) to logic 1. ": 0x81 0x06 ;n" requests the digital state of input channel 6 (B0) , The Input is ...
by jay_dee
Fri Jan 15, 2021 6:36 pm
Forum: General
Topic: Leveraging SCADA tools for PIC Monitoring.
Replies: 6
Views: 3489

Re: Leveraging SCADA tools for PIC Monitoring.

Hi,
I downloaded the machines examples. those gave really good examples of what can be achieved as a front end. They are in a compiled format so I can see the result but not how they are achieved? Is there a sample of the source .fcsx file?
J.
by jay_dee
Fri Jan 15, 2021 1:10 pm
Forum: General
Topic: Leveraging SCADA tools for PIC Monitoring.
Replies: 6
Views: 3489

Re: Leveraging SCADA tools for PIC Monitoring.

Thanks Ben, I'll have a play. J.
by jay_dee
Fri Jan 15, 2021 12:07 pm
Forum: General
Topic: Leveraging SCADA tools for PIC Monitoring.
Replies: 6
Views: 3489

Re: Leveraging SCADA tools for PIC Monitoring.

to explain the sending of strings.. If I wanted a fairly generic SCADA monitoring program that could work across several PIC projects, I was thinking I might initially send from the PIC a sequence of strings , these would need to be the names of each value1, value2, value3 etc... The recieving SCADA...