Hi,
The demo program you download shows how the modules connect to each other and should serve as a template for how you should implement them in your own program. Each module includes help that describes the signals, parameters, and how the module is used. This should allow you to implement them without issues but let me know if you have specific questions.
Thanks
Thank you for your response, but honestly im abit new to SIMPL windows and im not so sure on how to use the template, please i’d need guidance. the processor i’m using is a CP4R. i understand that im supposed to edit some things in the Logic folder of the program view such as parameters like IP address of Bond Bridge and IP address of the processor. so i dont even know where to start from
And its only shades im controlling, specifically Somfy shades.
Unfortunately, if you have a CP4R processor then you are running the Crestron Home operating system. The driver I wrote is only compatible with SimplWindows programs that run on a CP4 (not R) processor.
I did a quick google search and here is a link to a Crestron Home - Bond Bridge Pro integration driver:
Thanks
Hi Jbasen,
Do you know if this module works with more than one Bridge? I downloaded the module, and as far as I can see, the Comm Manager doesn’t have an option to select an ID or any setting to link the device and scene modules to a different Comm Manager, in order to use multiple Bridges
Sorry, I never design the modules with multiple bridges in mind.
Is there any chance of including tilt control for Venetian blinds in the shades module? The app does support it, but the Crestron module only offers up and down commands.
You should be able to just add the following to the Bond Device v1.2 module:
ANALOG_INPUT TiltPosition;
THREADSAFE CHANGE TiltPosition
{
If (Startup_Lock = 2)
{
Trace ("Bond Bridge Device - EventHandler - SetTiltPosition = %d\n", TiltPosition);
if ((TiltPosition >= -90) && (TiltPosition <= 90))
{
myBond.Send_Device_Action(Device_ID, " SetTiltPosition ", itoa(TiltPosition));
}
}
}
I can’t test this myself because I don’t have blinds that tilt to work with. If it works for you I can add the code to the modules and post it to my GitHub so let me know. Thanks
