Jump to content
C4 Forums | Control4

jackstone

c4Forums Member
  • Posts

    632
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by jackstone

  1. 13 hours ago, Navinag said:

    I have tried all 4 rs232 ports rebound ports and rebooted ever time and swapped the cables for rs232(serial 1,2) and then 3.5MM jack to serial (ports 3,4)

    serial 1 serial 2 serial 3 serial 4.

    This DMX engine is bad or i have bad cables.

    Thoughts?

     

    What's the led on the dmx engine looks like? One should be on, dmx should flash quickly and the third should be off

  2. On 10/22/2020 at 8:56 AM, jackstone said:

    I think he said the All Channel ON command worked, that mean all the Serial and DMX Chain is mostly working.

    This usually bring us to the DMX Decoder that might not be a the right channel.

    One trick I do when I work with weird decoder with unclear digital display and (or course) no manual: I use the Group Dimmer, and I enter 1 as the first channel, 100 fixtures, and then I try to turn it on, if it work, I know the decoder is at a channel between 1 and 100, if not, I try using 101 to 200 and so on until it work. (you will have to do this only a maximum of 5 times to test it all).

    Then it's easier to narrow down what channel is used by the decoder.

    Sometime you have to powercycle le dmx engine to get the firmware to show up at the first time. Also, some time the rs232 port of the core5 does not go to the right baudrate for some reason, you can try the serial port 4 (ir 2) ans reboot both the core5 and the dmx engine. Once it work and start communicating, it never stops.

  3. 2 hours ago, zaphod said:

    Wrould this driver work with the Sonoff Powr3 - https://sonoff.tech/product/diy-smart-switches/powr3/  I want to use this to control my Swimming Pool Pump. @jackstone - Would you driver work with this?   W mode

    No it doesn't, the driver is pretty dated and wasn't that popular. Someone else have done a newer driver I think, not sure if it needs the cloud connection or not, or if it'll work with the device you're looking for though...

  4. On 1/31/2022 at 9:38 AM, LollerAgent said:

    The Domaudeo DMX drivers are really full featured - especially for CCT/tunable white, which is great. With that being said, I'm still experiencing issues with random "flickering" that I have not yet been able to resolve.  I've replaced nearly everything at this point.  Some others are also experiencing similar flickering.

    I don't think you can use an ethernet switch to distribute DMX.  I could be wrong.

    There are numerous "wireless" DMX decoders that you can use if you need.  Some are discussed on this forum.

    Yes - any combination of strips can be used.  A 5channel decoder can support anything up to RGBWW (5 channels).  A 5 channel decoder could also drive 5 single color strips.

    "Flickering is most likely caused by the decoder that can't handle fast DMX datarate. There is a setting in the DMX Engine that can switch to "Slow" and thus fix the Flickering issue. This setting is already present in the Engine but I will make it easily toglable within C4 in the next version.

  5. 6 hours ago, RebelPro said:

    @jackstone

    Does a generic DMX driver exist that I can program for more advanced lights? Is there a data table I could fill out to patch and

     

    There is no limitation to 4-ch with the current DMX Driver, you can use any number of single channel driver to control a device that needs any number of channel. Also the Effect Switch driver have some option to control moving head fixture, it's mostly integrated and meant for doing dynamic effect but it's there. As for your request, I think multiple single channel driver is the way to go.

     

  6. A New version of the Shelly AIO driver released. This version was made to fulfill many dealers requests that wanted support for Shelly EM/EM3 and the Shelly Duo.

    This version 2.1.0 mainly add support the the Shelly EM line using the relay driver. It brings all the available information from the Energy Meter module into Control4 and allow programming on variables.

    The Shelly Duo bulb is also fully supported through the Dimmer driver.

     

    Available at the BlackWire marketplace

  7. I'm trying to get the newer Outlet Dimmer Light to be Online.

    I'm not sure what command to send... I've sniffed what C4 sends from the Outlet Module when an Outlet Light connects: it sends

    C4:SendToProxy(id, "ONLINE_CHANGED", {data = "True"})

     

    Witch differs from the usual Online command C4:SendToProxy(id, "ONLINE_CHANGED", {STATE = "True"})

    Either of those commands does not work when sent to a bound Outlet Dimmer Light from my driver... the light stays offline.

    I tried everything logical to me:

    C4:SendToProxy(id, "ONLINE_CHANGED", {STATE = "True"})

    C4:SendToProxy(id, "ONLINE_CHANGED", {["STATE"] = "True"})

    C4:SendToProxy(id, "ONLINE_CHANGED", {STATE = true})

    C4:SendToProxy(id, "ONLINE_CHANGED", {data = "True"})

    C4:SendToProxy(id, "ONLINE_CHANGED", {["data"] = "True"})

    C4:SendToProxy(id, "ONLINE_CHANGED", "True")

     

    And nothing seems to be able to make the Outlet Light becomes online..

     

    Someone know what is the right command to send?

    TIA

  8. Yes and no. The driver is officially pulled out because it is dated and does not support recent Insteon devices. It is also cumbersome to setup and not user friendly at all. Also we do not plan to release an update due to lack of popularity. That being said, we can still provide the driver on demand, it will tied to a Blackwire account for a small fee and will come with no support. You'll be on your own.

    You can still try the drive for free an unlimited number of time.

  9. We have just release a new version of the driver, with some nice and often requested features:

    - New ColorPicker interface that support RGBW / RGB+CCT / White Temperature, all into one interface supported on T3/T4 and Mobile devices.

    - The ColorPicker wheel is now hosted by an highly reliable repository, no more black screen and spinning wheel. It will work.

    - The Tunable White dimmer now support CCT as well as Circadian Lighting. The Cicardian lighting option is entirely automated, no need to mess with C4 schedule.

    - Lot of bug fixes.

    Here's the new ColorPicker:

    rgbcct_wheel_640.jpg

    Circadian Lighting Option:

    CircadianLightingOption.thumb.jpg.bded0749c24a834cfba2bd9eb89e4e66.jpg

     

  10. I think I got it, at least for my case. I only have 8 daily tasks to schedule within the driver, so instead of polling os.time periodically, I just have to get the current time once a day, then start 8 timers each 24h interval, each timer will be set to the number of seconds before triggering based on the actual epoch time. 8 timers should be more efficient than a recurring one plus a loop of IF-THEN to check if an event is set to trigger...

  11. This question is aimed at C4 driver developers. I know there is not really mutual help between us but I'm throwing the question anyway...

    I'm looking for a simple way to schedule stuff within a Lua script, without using C4 scheduling agent and without using the C4 API that only add scheduled event but can't add task to run..

    I know there is a way, some of you guys have done it, maybe someone will have the kindness to share how he have done it... Or maybe C4 staff on this forum can help on that?

    TIA

     

  12. New version of the Shelly AIO driver now released. It now support most of the Shelly Inputs devices such as the Shelly i3 and Shelly Button1 as well as the input option on many other Shelly devices.

    Use this to trigger anything within Control4 using Contact and Keypad bindings.

    It also add support for instant feedback using Web Triggering, and it's all auto-configured and plug and play!

    Available at the BlackWire marketplace

  13. 3 hours ago, RobbieF said:

    Quick question - Does the Driver support LED strip lights which are Dual White - Something Like This:   https://www.instyleled.co.uk/12-watt-cct-led-tape-colour-temperature-changing/.  I'm assuming it will functionally, but from a UI / UX Colorwheel perspective?

    That is just a dual white LED strip with one LED for cool and one for Warm, very easy to manage with the actual DMX driver and a multi-channel DMX decoder, the Tunable White driver is what you need and it is readily available.

    There will be some added features in the next version to manage dual-white and CCT from a Color Wheel UI and more ways.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.