Honeywell Multitrend SX Digital Output

baghuan

Member
Join Date
Feb 2007
Location
at my house
Posts
4
I am trying to use the scripting functions in a Honeywell Multitrend SX to set digital outputs based on digital input status. Scripting is enabled, and I have managed to set other parameters using conditional logic but the DO is escaping me.

Pseudocode would be:

If DI 1 is off and DI 2 is off and DI 3 is off then turn DO 19 on.

My actual code is:

IF ((DI[1]==0) && (DI[2]==0) && (DI[3]==0))
{
SETD[19,1];
RETURN A30;
}
ELSE
{
SETD[19,0];
RETURN A30;
}

I have managed to use the SETD command outside of an IF statement, but only using parentheses, (). I have tried parentheses withing the IF statement and it rejects the format as invalid. I have also managed to assign values to pens from within an IF statement that contains my SETD command, so I know I am within the IF loop, but the SETD just does not happen. It's almost like the SETD command has a different syntax or some other parameter I am missing. Any thoughts? Are there any resources beyond the Honeywell manual for learning how to program this thing?

Thanks.
 
Last edited:
Long shot: Is DO 19 actually pre-configured as an output? Those 24V DI/DO's are configurable. Could you be trying to set a DO that is configured as a DI?

Can you run a simple script that just sets DO 19 to see if it sets to 1?
 
Good thought but...

It is actually a DO. And I can in fact set it, just not from within an IF statement, with one caveat. It does not set when coded as per their manual. If I write the script:

SETD[19,1]; RETURN A30; nothing happens. If I write SETD(19,1); RETURN A30; all is well and DO 19 is set. I tried to use the () within the if in place of the [], but it rejects that.

I called Honeywell tech support, they didn't have an answer either but are looking into it. Any more input is welcome, and when I eventually get an answer I will post it here for posterity.
 

Similar Topics

This is more of a knowledge base post as opposed to a question. Hopefully somebody can learn from my issue. We've recently installed a Honeywell...
Replies
2
Views
1,975
So...we bought this equipment to use it specifically for TUS (temperature uniformity survey). We ran test surveys from 30 mins to 180 mins...
Replies
1
Views
3,184
Got locked out of the setup. Need an administrator to unlock the user account but its the administrator account thats locked. No way to get back...
Replies
2
Views
5,367
Hi, I've got a Honeywell Multitrend SX paperless recorder that I'm using as a Modbus Master device to poll another I/O device for some analog...
Replies
1
Views
5,227
Hi Anybody knows how to enter Honeywell HMI config menu. I need to change date and time of HMI. HMI series: Honeywell HCi series
Replies
0
Views
119
Back
Top Bottom