help with apex programming

romzan45

New Member
View Badges
Joined
Dec 24, 2019
Messages
10
Reaction score
0
Location
Russia
Rating - 0%
0   0   0
Hello. I'm a newbie. I have a problem with programming the flow sensor. With a minimum flow I can not get an alarm on my email. If I enter the command, the optical sensor alarm is disabled. I enter the command in emailAlm_I5. If obratk <700 Then ON. Tell me how do it right. thanks in advance.
 

nagreen8

New Member
View Badges
Joined
Dec 16, 2019
Messages
16
Reaction score
5
Rating - 0%
0   0   0
Easiest way to program the alarms on them is go to the inputs page. See pics

5FD1D719-F0CB-42AD-9B73-7E64CB9FF44E.png
 
OP
OP
romzan45

romzan45

New Member
View Badges
Joined
Dec 24, 2019
Messages
10
Reaction score
0
Location
Russia
Rating - 0%
0   0   0
Sorry, but I didn’t understand what and where to enter. Do I have it already?

Screenshot_20191224-234931_Apex Fusion.jpg
 
OP
OP
romzan45

romzan45

New Member
View Badges
Joined
Dec 24, 2019
Messages
10
Reaction score
0
Location
Russia
Rating - 0%
0   0   0
here it is set like this. but to the mail I get only an alarm from the optical sensor. the flow sensor does not give an alarm to my email.

Screenshot_20191224-235510_Apex Fusion.jpg Screenshot_20191224-235517_Apex Fusion.jpg
 

homer1475

Figuring out the hobby one coral at a time.
View Badges
Joined
Apr 24, 2018
Messages
11,810
Reaction score
18,838
Location
Way upstate NY
Rating - 0%
0   0   0
You do realize that the way you have that programmed, it will only send an email when it's OVER 700?

I'm also assuming your using the new apex? not the classic?
 
OP
OP
romzan45

romzan45

New Member
View Badges
Joined
Dec 24, 2019
Messages
10
Reaction score
0
Location
Russia
Rating - 0%
0   0   0
I put a less sign, <?. I have in fact the duct now is 960. And the reaction is zero. If you know how to tell me correctly, I will be very grateful.
 

homer1475

Figuring out the hobby one coral at a time.
View Badges
Joined
Apr 24, 2018
Messages
11,810
Reaction score
18,838
Location
Way upstate NY
Rating - 0%
0   0   0
The way you have it coded its a greater then sign <.

Basically with your coding this is telling your apex that if Obratk is greater then 700, then turn on the alarm. If you want it to send an alarm if it is under 700, then just reverse the < to >.

If obratk > 700 then on

Also I'm just putting this here, but you do have the outlet set to AUTO, and not ON or OFF?
 

homer1475

Figuring out the hobby one coral at a time.
View Badges
Joined
Apr 24, 2018
Messages
11,810
Reaction score
18,838
Location
Way upstate NY
Rating - 0%
0   0   0
Reading back through, does the optical sensor also kick off the alarm if the flow slows down?

If both are met in the coding, you'll only get an email for the last line of code that set the alarm off. Basically if several conditions are met in an alarm code, then the last line in that code that triggered the alarm will be the one you get.

For instance in your coding, if both conditions are met(SENSOR is OPEN and Obratk is less then 700), since the flow sensor is the last line of code, you'll only get the email for the flow sensor not the optical sensor.
 
OP
OP
romzan45

romzan45

New Member
View Badges
Joined
Dec 24, 2019
Messages
10
Reaction score
0
Location
Russia
Rating - 0%
0   0   0
моя проблема в том, что если я отключаю «датчик» тревоги, то «обратка» начинает посылать мне сигнал тревоги, если мой поток <700.

Screenshot_20191225-005534_Apex Fusion.jpg
 
OP
OP
romzan45

romzan45

New Member
View Badges
Joined
Dec 24, 2019
Messages
10
Reaction score
0
Location
Russia
Rating - 0%
0   0   0
my problem is that if I turn off the alarm "sensor", then "obratk" starts sending me an alarm if my stream is <700.
 

homer1475

Figuring out the hobby one coral at a time.
View Badges
Joined
Apr 24, 2018
Messages
11,810
Reaction score
18,838
Location
Way upstate NY
Rating - 0%
0   0   0
моя проблема в том, что если я отключаю «датчик» тревоги, то «обратка» начинает посылать мне сигнал тревоги, если мой поток <700.

Screenshot_20191225-005534_Apex Fusion.jpg
Sorry I don't know russian.
 
OP
OP
romzan45

romzan45

New Member
View Badges
Joined
Dec 24, 2019
Messages
10
Reaction score
0
Location
Russia
Rating - 0%
0   0   0
Yes, I read it too. But there is a solution through a virtual outlet. I just don’t understand how to do it
 

homer1475

Figuring out the hobby one coral at a time.
View Badges
Joined
Apr 24, 2018
Messages
11,810
Reaction score
18,838
Location
Way upstate NY
Rating - 0%
0   0   0
Even with a VO, you will still only get one email from the last statement that set the alarm off even if several statements are met.

I have my apex setup on my alarm code with VO's so I know what exactly what set the alarm off instead of a general alarm.
 

homer1475

Figuring out the hobby one coral at a time.
View Badges
Joined
Apr 24, 2018
Messages
11,810
Reaction score
18,838
Location
Way upstate NY
Rating - 0%
0   0   0
VO's are simple. You just create a virtual outlet, then put your on/off statements in that, then reference the outlet instead of the sensor in the alarm code.

So for you:

Create a VO and name it Flow_Alarm. The in that VO put your coding for the sensor:
Set off
If Obratk < 700 then on

Then in your alarm code you would put this:
If Output Flow_Alarm = On Then On
 

homer1475

Figuring out the hobby one coral at a time.
View Badges
Joined
Apr 24, 2018
Messages
11,810
Reaction score
18,838
Location
Way upstate NY
Rating - 0%
0   0   0
I could walk you through creating a VO, but I'm not familiar with the "NEW" apex and thier "NEW" way of doing things. I have the apex classic and can only tell you how to do it with that, and I'm not sure if any of that has changed.
 
OP
OP
romzan45

romzan45

New Member
View Badges
Joined
Dec 24, 2019
Messages
10
Reaction score
0
Location
Russia
Rating - 0%
0   0   0
if I write set off. then my sensor turns off right away. I've already tried
 

Keeping it clean: Have you used a filter roller?

  • I currently use a filter roller.

    Votes: 37 30.3%
  • I don’t currently use a filter roller, but I have in the past.

    Votes: 4 3.3%
  • I have never used a filter roller, but I plan to in the future.

    Votes: 33 27.0%
  • I have never used a filter roller and have no plans to in the future.

    Votes: 43 35.2%
  • Other.

    Votes: 5 4.1%
Back
Top