NCD16Relay (community library)

Summary

Name Value
Name NCD16Relay
Version 0.0.1
Installs 12773
License GNU
Author Travis Elliott travis@controlanything.com
URL https://github.com/controleverythingcom/ncd16relay
Repository https://github.com/controleverythingcom/ncd16relay.git
Download .tar.gz

Library intended for the operation of NCD 16 channel Spark compatible Relay Controller

Example Build Testing

Device OS Version:

This table is generated from an automated build. Success only indicates that the code compiled successfully.

Library Read Me

This content is provided by the library maintainer and has not been validated or approved.

About

This Library is intended for use with the NCD 16 Channel Particle compatible relay controller.

The intention of this library is to make use of the NCD 16 channel relay controller with Particle development web IDE as simple as possible for users.

###Developer information NCD has been designing and manufacturing computer control products since 1995. We have specialized in hardware design and manufacturing of Relay controllers for 20 years. We pride ourselves as being the industry leader of computer control relay products. Our products are proven reliable and we are very excited to support Particle. For more information on NCD please visit www.controlanything.com

###Requirements

  • NCD 16 Channel Particle Compatible Relay board
  • Particle Core/Photon module
  • Knowledge base for developing and programming with Particle modules.
Version

1.0.0

How to use this library

The libary must be imported into your application. This can be done through the Particle WEB IDE by selecting Libraries, then select the NCD16Relay. Click Include in App button. Select the App you want to include the library in. Finally click Add to this app. For more information see [Particle's documentation] [ParticleIncludeLibrary]

Example use

Once the Library is included in your applicaiton you should see an include statement at the top like this:

//This #include statement was automatically added by the Particle IDE.
#include "NCD16Relay/NCD16Relay.h"

Now you need to instanciate an object of the library for use in your application like this:

NCD16Relay relayController;

Here is an example use case for the class

// This #include statement was automatically added by the Particle IDE.
#include "NCD16Relay/NCD16Relay.h"
NCD16Relay relayController;

void setup() {
relayController.setAddress(0, 0, 0);
}

void loop() {
relayController.turnOnAllRelays();
delay(500);
relayController.turnOffAllRelays();
delay(500);
relayController.turnOnAllRelays(1);
delay(500);
relayController.turnOnAllRelays(2);
delay(500);
relayController.turnOffAllRelays(1);
delay(500);
relayController.turnOffAllRelays(2);
}

###Public accessible methods

void setAddress(int a0, int a1, int a2);

Must be called first before using the object. This method should also be called any time communication with the controller is lost or broken to recover communication This method accepts three int arguments. This tells the Library what address to direct commands to. a0, a1, and a2 ints are representations of the three jumpers on the 16 channel relay controller which are labeled on the board A0, A1, and A2. If the jumper is installed then that int in this call should be set to 1. If it is not installed then the int should be set to

  1. So if I have A0 and A1 installed I would call relayController.setAddress(1, 0, 1).
void turnOnRelay(int Relay);

This method accepts one int argument. Valid int arguments 1-16. A call to this method will turn off the relay indicated by the passed int argument.

void turnOffRelay(int Relay);

This method accepts one int argument. Valid int arguments 1-16. A call to this method will turn on the relay indicated by the passed int argument.

void turnOnAllRelays();

This method does not accept any arguments. A call to this method will turn on all 16 relays on the controller.

void turnOffAllRelays();

This method does not accept any arguments. A call to this method will turn off all 16 relays on the controller.

void turnOnAllRelays(int bank);

This method accepts one int argument. Valid ints are 1 or 2 for relay banks 1 and 2 respectively. If 1 is passed relays 1-8 will be turned on. If 2 is passed relays 9-16 will be turned on.

void turnOffAllRelays(int bank);

This method accepts one int argument. Valid ints are 1 or 2 for relay banks 1 and 2 respectively. If 1 is passed relays 1-8 will be turned off. If 2 is passed relays 9-16 will be turned off.

void toggleRelay(int relay);

This method accepts one int argument. Valid int arguments are 1-16. A call to this method will toggle the status of the relay indicated by the passed int argument. If the relay was previously off before the method call the relay will turn on and vice versa.

void setBankStatus(int status, int bank);

This method accepts two int arguments. Valid status int arguments 0-255. Valid bank arguments 1-2. A call to this method will set the status of all relays in the specified bank(1 or 2) to the status byte passed in> the second argument(status). Each relay in the bank(total of 8) are represented as bits in the status argument.

void setAllRelayStatus(int bank1, int bank2);

This method accepts two int arguments. Valid bank1 int arguments 0-255. Valid bank2 int arguments 0-255. A call to this method will set the status of all relays in banks 1(total of 8) and bank 2(total of 8) to the status ints passed in the bank1 and bank2 arguments. Each relay in the bank are represented in bits in the bank1/2 argument.

int readRelayStatus(int relay);

This method accepts one int argument and returns one int. Valid relay int arguments 1-16. A call to this method will read the status of the given relay passed by the relay argument and return the current on/off status of the given relay. 1 will be returned if the relay is on and 2 will be returned if the relay is off. 256 will be returned if an error has occured(generally due to lack of communication with the controller).

int readBankStatus(int bank);

This method accepts one int argument and returns one int. Valid bank int arguments 1-2. A call to this method will read and return the status of all relays in the given bank(passed to method as bank int argument). Each relay in the bank is represented in a bit in the returned int. Valid returns are 0-255. 256 will be returned if an error has occured(generally due to lack of communciation with controller).

###Public accessible variables

bool initialized;

This boolean indicates the current status of the interface connection to the controller. This variable should be checked often throughout your application. If communication to the board is lost for any reason this boolean variable will return false. If all is well it will return true.

byte bankOneStatus;

This byte will indicate the current status of relays in bank 1. This byte can be checked at any point during the application rather than making method calls to read relay status. Reading relay status through methods however is more accurate so use the methods when possible.

byte bankTwoStatus;

This byte will indicate the current status of relays in bank 2. This byte can be checked at any point during the application rather than making method calls to read relay status. Reading relay status through methods however is more accurate so use the methods when possible.

License

GNU [ParticleIncludeLibrary]:https://docs.particle.io/guide/getting-started/build/photon/

Browse Library Files