Sure. The one way that I have used in the past is as follows:
- Declare a global variable(s) in the sketch (i.e. before the setup() routine) as follows:
String strCommand;
st::S_TimedRelay* timedRelay1;
st::S_TimedRelay* timedRelay2;
st::S_TimedRelay* timedRelay3;
st::S_TimedRelay* timedRelay4
- Inside the setup() routine, after the st::Everything::addSensor and addExectuor section, add the following:
timedRelay1 = sensor5; //First timedRelay Device
timedRelay2 = sensor6; //Second timedRelay Device
timedRelay3 = sensor7; //Third timedRelay Device
timedRelay4 = sensor8; //Fourth timedRelay Device
- Inside the loop() routine, one needs to be VERY careful when making the following calls. Since the loop() routine is called thousands of times per second, one need to only make these calls when data has changed. Otherwise, the system will flood the network with calls to the Hubitat hub to update the corresponding devices. PROCEED WITH EXTREME CAUTION!
Example:
strCommand = "switch1 on";
sensor5->beSmart(strCommand);
strCommand = "switch2 off";
sensor6->beSmart(strCommand);
strCommand = "switch3 on";
sensor7->beSmart(strCommand);
strCommand = "switch4 off";
sensor8->beSmart(strCommand);
Note that the strCommand is formatted exactly the same as what the HE hub would send to the microcontroller. Pay close attention to make sure that string matches the name of the device used in the setup() routine when declaring the timedRelay device.
If you're a C/C++ programmer, this will probably all make sense to you. If not, then it can definitely be confusing. Let me know if you have any questions.
Also, I cannot stress enough to use caution to NOT issue the above Step#3 commands on every iteration through the loop() routine. Doing so will cause issues.
Also, if you want to see a working example of the above design, please take a look at the "ST_Anything_Relays_Buttons_ESP8266.ino" example sketch from the ST_Anything GitHub repo. It uses S_timedRelay devices, as well as momentary pushbutton inputs wired to GPIO pins to allow manual activation of the S_timedRelay devices.
Here is a copy of it, although you probably already have a copy of it on your computer. 
//******************************************************************************************
// File: ST_Anything_Relays_Butttons_ESP8266.ino
// Authors: Dan G Ogorchock & Daniel J Ogorchock (Father and Son)
//
// Summary: This Arduino Sketch, along with the ST_Anything library and the revised SmartThings
// library, demonstrates the ability of one NodeMCU ESP8266 to
// implement a multi input/output custom device for integration into SmartThings.
//
// The ST_Anything library takes care of all of the work to schedule device updates
// as well as all communications with the NodeMCU ESP8266’s WiFi.
//
// ST_Anything_Relays_Buttons_ESP8266 implements the following ST Capabilities as a demo
// of what is possible with a single NodeMCU ESP8266
// - 3 x Switch devices
//
//
// Change History:
//
// Date Who What
// ---- --- ----
// 2015-01-03 Dan & Daniel Original Creation
// 2017-02-12 Dan Ogorchock Revised to use the new SMartThings v2.0 library
// 2017-04-17 Dan Ogorchock New example showing use of Multiple device of same ST Capability
// used with new Parent/Child Device Handlers (i.e. Composite DH)
// 2017-05-25 Dan Ogorchock Revised example sketch, taking into account limitations of NodeMCU GPIO pins
// 2017-11-29 Dan Ogorchock New example to showcase local control using momentary buttons
// 2018-02-09 Dan Ogorchock Added support for Hubitat Elevation Hub
//
//******************************************************************************************
//******************************************************************************************
// SmartThings Library for ESP8266WiFi
//******************************************************************************************
#include <SmartThingsESP8266WiFi.h>
//******************************************************************************************
// ST_Anything Library
//******************************************************************************************
#include <Constants.h> //Constants.h is designed to be modified by the end user to adjust behavior of the ST_Anything library
#include <Device.h> //Generic Device Class, inherited by Sensor and Executor classes
#include <Sensor.h> //Generic Sensor Class, typically provides data to ST Cloud (e.g. Temperature, Motion, etc…)
#include <Executor.h> //Generic Executor Class, typically receives data from ST Cloud (e.g. Switch)
#include <InterruptSensor.h> //Generic Interrupt "Sensor" Class, waits for change of state on digital input
#include <PollingSensor.h> //Generic Polling "Sensor" Class, polls Arduino pins periodically
#include <Everything.h> //Master Brain of ST_Anything library that ties everything together and performs ST Shield communications
#include <PS_Illuminance.h> //Implements a Polling Sensor (PS) to measure light levels via a photo resistor
#include <PS_TemperatureHumidity.h> //Implements a Polling Sensor (PS) to measure Temperature and Humidity via DHT library
#include <PS_DS18B20_Temperature.h> //Implements a Polling Sesnor (PS) to measure Temperature via DS18B20 libraries
#include <PS_Water.h> //Implements a Polling Sensor (PS) to measure presence of water (i.e. leak detector)
#include <IS_Motion.h> //Implements an Interrupt Sensor (IS) to detect motion via a PIR sensor
#include <IS_Contact.h> //Implements an Interrupt Sensor (IS) to monitor the status of a digital input pin
#include <IS_Smoke.h> //Implements an Interrupt Sensor (IS) to monitor the status of a digital input pin
#include <IS_DoorControl.h> //Implements an Interrupt Sensor (IS) and Executor to monitor the status of a digital input pin and control a digital output pin
#include <IS_Button.h> //Implements an Interrupt Sensor (IS) to monitor the status of a digital input pin for button presses
#include <EX_Switch.h> //Implements an Executor (EX) via a digital output to a relay
#include <EX_Alarm.h> //Implements Executor (EX)as an Alarm Siren capability via a digital output to a relay
#include <S_TimedRelay.h> //Implements a Sensor to control a digital output pin with timing capabilities
//*************************************************************************************************
//NodeMCU v1.0 ESP8266-12e Pin Definitions (makes it much easier as these match the board markings)
//*************************************************************************************************
//#define LED_BUILTIN 16
//#define BUILTIN_LED 16
//
//#define D0 16 //no internal pullup resistor
//#define D1 5
//#define D2 4
//#define D3 0 //must not be pulled low during power on/reset, toggles value during boot
//#define D4 2 //must not be pulled low during power on/reset, toggles value during boot
//#define D5 14
//#define D6 12
//#define D7 13
//#define D8 15 //must not be pulled high during power on/reset
//******************************************************************************************
//Define which Arduino Pins will be used for each device
//******************************************************************************************
#define PIN_RELAY_1 D5 //SmartThings Capability "Relay Switch"
#define PIN_RELAY_2 D6 //SmartThings Capability "Relay Switch"
#define PIN_RELAY_3 D7 //SmartThings Capability "Relay Switch"
//---Begin Push Button declarations---
#define MAX_PUSHBUTTONS 3
#define MIN_DEBOUNCE_TIME 50 //push-buttons must be held for 50ms to prevent chattering input
#define PIN_BUTTON1 D1
#define PIN_BUTTON2 D2
#define PIN_BUTTON3 D3
byte nBtnIndex; //Index Variable
bool nCurrentVal; //temp variable
String strCommand;
byte nBtnVals[MAX_PUSHBUTTONS][2]; //Array of current[0] and last[1] values of the pushbuttons
byte nBtnPins[MAX_PUSHBUTTONS] = {PIN_BUTTON1, PIN_BUTTON2, PIN_BUTTON3};
unsigned long lngBtnLastMillis[MAX_PUSHBUTTONS]; //needed to properly debounce the pushbutton inputs
st::EX_Switch* swArray[MAX_PUSHBUTTONS]; //need an array of the executors so we can togle the correct one
//---End Push Button declarations---
//******************************************************************************************
//ESP8266 WiFi Information
//******************************************************************************************
String str_ssid = "yourSSIDhere"; // <---You must edit this line!
String str_password = "yourWiFiPasswordhere"; // <---You must edit this line!
IPAddress ip(192, 168, 1, 227); //Device IP Address // <---You must edit this line!
IPAddress gateway(192, 168, 1, 1); //Router gateway // <---You must edit this line!
IPAddress subnet(255, 255, 255, 0); //LAN subnet mask // <---You must edit this line!
IPAddress dnsserver(192, 168, 1, 1); //DNS server // <---You must edit this line!
const unsigned int serverPort = 8090; // port to run the http server on
// Smartthings / Hubitat Hub TCP/IP Address
IPAddress hubIp(192, 168, 1, 149); // smartthings/hubitat hub ip // <---You must edit this line!
// SmartThings / Hubitat Hub TCP/IP Address: UNCOMMENT line that corresponds to your hub, COMMENT the other
const unsigned int hubPort = 39500; // smartthings hub port
//const unsigned int hubPort = 39501; // hubitat hub port
//******************************************************************************************
//st::Everything::callOnMsgSend() optional callback routine. This is a sniffer to monitor
// data being sent to ST. This allows a user to act on data changes locally within the
// Arduino sktech.
//******************************************************************************************
void callback(const String &msg)
{
// Serial.print(F("ST_Anything Callback: Sniffed data = "));
// Serial.println(msg);
//TODO: Add local logic here to take action when a device's value/state is changed
//Masquerade as the ThingShield to send data to the Arduino, as if from the ST Cloud (uncomment and edit following line)
//st::receiveSmartString("Put your command here!"); //use same strings that the Device Handler would send
}
//******************************************************************************************
//Arduino Setup() routine
//******************************************************************************************
void setup()
{
//******************************************************************************************
//Declare each Device that is attached to the Arduino
// Notes: - For each device, there is typically a corresponding "tile" defined in your
// SmartThings Device Hanlder Groovy code, except when using new COMPOSITE Device Handler
// - For details on each device's constructor arguments below, please refer to the
// corresponding header (.h) and program (.cpp) files.
// - The name assigned to each device (1st argument below) must match the Groovy
// Device Handler names. (Note: "temphumid" below is the exception to this rule
// as the DHT sensors produce both "temperature" and "humidity". Data from that
// particular sensor is sent to the ST Hub in two separate updates, one for
// "temperature" and one for "humidity")
// - The new Composite Device Handler is comprised of a Parent DH and various Child
// DH's. The names used below MUST not be changed for the Automatic Creation of
// child devices to work properly. Simply increment the number by +1 for each duplicate
// device (e.g. contact1, contact2, contact3, etc...) You can rename the Child Devices
// to match your specific use case in the ST Phone Application.
//******************************************************************************************
//Polling Sensors
//Special sensors/executors (uses portions of both polling and executor classes)
//EX_Switch arguments(name, pin, starting state, invert logic) change last 2 args as needed for your application
static st::EX_Switch executor1(F("switch1"), PIN_RELAY_1, LOW, true);
static st::EX_Switch executor2(F("switch2"), PIN_RELAY_2, LOW, true);
static st::EX_Switch executor3(F("switch3"), PIN_RELAY_3, LOW, true);
//*****************************************************************************
// Configure debug print output from each main class
// -Note: Set these to "false" if using Hardware Serial on pins 0 & 1
// to prevent communication conflicts with the ST Shield communications
//*****************************************************************************
st::Everything::debug=true;
st::Executor::debug=true;
st::Device::debug=true;
st::PollingSensor::debug=true;
st::InterruptSensor::debug=true;
//*****************************************************************************
//Initialize the "Everything" Class
//*****************************************************************************
//Initialize the optional local callback routine (safe to comment out if not desired)
st::Everything::callOnMsgSend = callback;
//Create the SmartThings ESP8266WiFi Communications Object
//STATIC IP Assignment - Recommended
st::Everything::SmartThing = new st::SmartThingsESP8266WiFi(str_ssid, str_password, ip, gateway, subnet, dnsserver, serverPort, hubIp, hubPort, st::receiveSmartString);
//DHCP IP Assigment - Must set your router's DHCP server to provice a static IP address for this device's MAC address
//st::Everything::SmartThing = new st::SmartThingsESP8266WiFi(str_ssid, str_password, serverPort, hubIp, hubPort, st::receiveSmartString);
//Run the Everything class' init() routine which establishes WiFi communications with SmartThings Hub
st::Everything::init();
//*****************************************************************************
//Add each sensor to the "Everything" Class
//*****************************************************************************
//*****************************************************************************
//Add each executor to the "Everything" Class
//*****************************************************************************
st::Everything::addExecutor(&executor1);
st::Everything::addExecutor(&executor2);
st::Everything::addExecutor(&executor3);
//*****************************************************************************
//Initialize each of the devices which were added to the Everything Class
//*****************************************************************************
st::Everything::initDevices();
//*****************************************************************************
//Add User Customized Setup Code Here (instead of modifying standard library files)
//*****************************************************************************
//---Begin Push Button initialization section---
swArray[0]=&executor1;
swArray[1]=&executor2;
swArray[2]=&executor3;
//Allocate strCommand buffer one time to prevent Heap Fragmentation.
strCommand.reserve(20);
//Configure input pins for hardwired pusbuttons AND read initial values
for (nBtnIndex=0; nBtnIndex < MAX_PUSHBUTTONS; nBtnIndex++) {
pinMode(nBtnPins[nBtnIndex], INPUT_PULLUP);
nBtnVals[nBtnIndex][0] = digitalRead(nBtnPins[nBtnIndex]); // read the input pin
nBtnVals[nBtnIndex][1] = nBtnVals[nBtnIndex][0];
lngBtnLastMillis[nBtnIndex] = 0; //initialize times to zero
}
//---End Push Button initialization section---
}
//******************************************************************************************
//Arduino Loop() routine
//******************************************************************************************
void loop()
{
//*****************************************************************************
//Execute the Everything run method which takes care of "Everything"
//*****************************************************************************
st::Everything::run();
//*****************************************************************************
//Add User Customized Loop Code Here (instead of modifying standard library files)
//*****************************************************************************
//---Begin Push Button execution section---
//Loop through the pushbutton array
for (nBtnIndex=0; nBtnIndex < MAX_PUSHBUTTONS; nBtnIndex++)
{
nCurrentVal = digitalRead(nBtnPins[nBtnIndex]); // read the input pin
if (nCurrentVal != nBtnVals[nBtnIndex][1]) // only act if the button changed state
{
lngBtnLastMillis[nBtnIndex] = millis(); //keep track of when the button changed state
}
if ((millis() - lngBtnLastMillis[nBtnIndex] >= MIN_DEBOUNCE_TIME) && (nBtnVals[nBtnIndex][0] != nCurrentVal))
{
nBtnVals[nBtnIndex][0] = nCurrentVal; //keep current value for proper debounce logic
if (nCurrentVal == LOW) //only care if the button is pressed (change LOW to HIGH if logic reversed)
{
strCommand = swArray[nBtnIndex]->getName() + " " + (swArray[nBtnIndex]->getStatus()== HIGH?"off":"on");
Serial.print(F("Pushbutton: "));
Serial.println(strCommand);
swArray[nBtnIndex]->beSmart(strCommand); //Call the beSmart function of the proper executor object to either turn on or off the relay
strCommand.remove(0); //clear the strCommand buffer
}
}
nBtnVals[nBtnIndex][1] = nCurrentVal; //keep last value for proper debounce logic
}
//---End Push Button execution section---
}
Hope this helps!