Will,
The easiest solution is to create two channels that are used on the FP-RLY-420 Module. In FieldPoint Explorer, right click on the FP-RLY-420 and choose Add an Item to this Device. Name the new Item "On_Off", and set it so that it affects channel 0 only (set the channel bit mask to 0001 hex). Click on OK. Add an Item a second time, this time named "CountBits" and set it to effect channels 1 through 7 (bitmask of 00FE hex).
This gives you two different channels to write to. "On_Off" can be written to with a 0 or 1 to turn Channel 0 off or on."CountBits" can be written to with an 8 bit integer (note that the least significant bit will always be ignored). In order to compensate for the fact that the LSB will always be ignore, simply multiply your count value
by 2 (this upshifts the count by 1 LSB).
Regards,
Aaron
LabVIEW Champion, CLA, CPI