REL1000 User Guide: Difference between revisions
No edit summary |
(→About) |
||
Line 9: | Line 9: | ||
===About=== | ===About=== | ||
[[Image:REL1000_About.jpg|link=|400px|right]] | |||
The REL1000 has mechanical relays that will let you control the power circuits of as many as four separate devices. It is suitable for both AC and DC applications. You interact with the REL1000 through the Digital Output Channel Class to switch power to your circuit or device on and off. | The REL1000 has mechanical relays that will let you control the power circuits of as many as four separate devices. It is suitable for both AC and DC applications. You interact with the REL1000 through the Digital Output Channel Class to switch power to your circuit or device on and off. | ||
<div sytle="clear:both"></div> | |||
===Explore Your Phidget Channels Using The Control Panel=== | ===Explore Your Phidget Channels Using The Control Panel=== |
Revision as of 17:30, 11 March 2021
Part 1: Setup
Part 2: Using Your Phidget
About
The REL1000 has mechanical relays that will let you control the power circuits of as many as four separate devices. It is suitable for both AC and DC applications. You interact with the REL1000 through the Digital Output Channel Class to switch power to your circuit or device on and off.
Explore Your Phidget Channels Using The Control Panel
You can use your Control Panel to explore your Phidget's channels.
1. Open your Control Panel, and you will find the following channels:
2. Double click on a channel to open an example program. Each channel belongs to the DigitalOutput channel class:
In your Control Panel, double click on "Power Relay":
Part 3: Create your Program
Part 4: Advanced Topics and Troubleshooting
Before you open a Phidget channel in your program, you can set these properties to specify which channel to open. You can find this information through the Control Panel.
1. Open the Control Panel and double-click on the red map pin icon:
2. The Addressing Information window will open. Here you will find all the information you need to address your Phidget in your program.
See the Phidget22 API for your language to determine exact syntax for each property.
Starting from firmware version 110, using Phidget22 library versions 1.0.0.20190107 and later, this device supports the use of a failsafe feature to put your device in a safe state should your program hang or crash.
With this feature, each Digital Output channel on this device has its own independently settable failsafe timer.
If the failsafe is not enabled, the device will behave as it did before the addition of this feature, maintaining the last state or duty cycle it received until it is explicitly told to stop.
Enabling the failsafe feature for a channel starts a recurring failsafe timer. Once the failsafe timer is enabled, it must be reset within the specified time or the channel will enter a failsafe state. Resetting the failsafe timer will reload the timer with the specified failsafe time, starting when the message to reset the timer is received by the Phidget.
For example: if the failsafe is enabled with a failsafe time of 1000ms, you will have 1000ms to reset the failsafe timer. Every time the failsafe timer is reset, you will have 1000ms from that time to reset the failsafe again.
If the failsafe timer is not reset before it runs out, the channel will enter a failsafe state. For Digital Output channels, this sets the output to a FALSE state. On the REL1000 this switches the relay contact to the Normally-Closed position. Once the channel enters the failsafe state, it will reject any further input until the channel is reopened.
To prevent the channel from falsely entering the failsafe state, we recommend resetting the failsafe timer as frequently as is practical for your applicaiton. A good rule of thumb is to not let more than a third of the failsafe time pass before resetting the timer.
Once the failsafe has been enabled, it cannot be disabled by any means other than closing and reopening the channel.
When you use a failsafe in your program, we strongly recommend setting up an error event handler to catch the Failsafe Error Event, to allow your program to catch the failsafe event.
If you want your program to try to automatically recover from a failsafe state, you can close and re-open the channel from the error event handler after determining a failsafe condition caused the event.
The relays on the REL1000 are SPDT (Single pole, double throw). This means there is a common pin (C), a normally open pin (NO) and a normally closed pin (NC). When the relay is off (i.e. no power running through the relay coil), the switch will be resting in the NC position, as seen in the diagram. When the relay's Digital Output object is toggled in software, it will switch to the NO position. If the Digital Output object is closed (using the Close()
method), the relay will always return to the NC position. For this reason, it is considered a best practice to call Close()
at the end of your program.
If communication between the REL1000 and your computer is broken (e.g. if the Phidget cable is unplugged), the relay will not change state. You will get a detach event for the attached channels of that Phidget. It is recommended you handle this case in your Digital Output detach handler. Since communication between the relay and computer is already interrupted, you can not tell the Digital Output to return to the NC position unless you use the Failsafe feature. (See Failsafe section in this User Guide or in the Phidget22 API documentation)