void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH);
delayMicroseconds(100); // Approximately 84% duty cycle @ 1KHz
digitalWrite(13, LOW);
delayMicroseconds(500);
}
I currently have a fit COB fixture and my room is fully automated through an arduino mega.
Has anyone on here figured how to dim HLG drivers using code instead of a potentiometer?
This is my last hurdle.
Here a pic of my app.
You hook an optocoupler to the Arduino PWM output, hook the dimmer leads to the output of the optocoupler and use a code like this. The optocoupler reverses things so low in the code is actually the on time and high is the off time. You also need a 250 ohm resistor on the output from the Arduino before it gets to the optocoupler.The reason for the optocoupler is that the output is 5v rather than the 10v required by the driver dimmer. The driver produces it's own 10v power for the dimming, you just need the optocoupler to open and close the dimmer wire circuit with its 5v PWM output.
In this code I arbitrarily chose to use microseconds and the on/off ratio shown. I tried a bunch of different duty cycles. BTW with PWM you don't gain any efficiency from dimming the LEDs, because they're still on full power during the on part of the duty cycle.
There are a lot of controllers being made for fish tanks that are emulating the bulk of what we are trying to do as growers. There are even pretty cheap controllers available made from Arduino platforms for this purpose. They have some very good codes, and habe been very good references for me.
Can you provide some links to these? I've been looking for something I can use on an arduino for years and have come up with nothing.
Can you provide some links to these? I've been looking for something I can use on an arduino for years and have come up with nothing.
I figured it out I figured it out
goto DFRobot.com and search for potentiometer. You can get a little circuit board for 5$ I think that can control two hlg based off the 100k ohm dimming option. No circuit design, just plug the wires and go with simple code. And I think it’s i2c so you can daisy chain them. If you want to make your own circuit board you can buy the chips from digikey that do 4 drivers with through hole and copy the circuit that DFRobot made they post the schematic.. if you can surface mount solder you can get one that does 6 drivers for like less than 3 dollars per chip with the needed parts
but the easiest way is just get a bunch of the premade ones from DFRobot and chain them together
I use the wemos mini so I was going to get custom boards made from one of those cheap china board makers and use the through hole chips and parts and make my own 4 driver versions that fit into wemos minis .. fuck yea
Why would you have flickering effects? You’re assuming that it works like pwm, it’s not it’s a digital potentiometer, it’s the equivalent of using a resistance dimming knob, not pwmThis is a pretty clean and quick way to get going, nice find. Only concern I have, is trying to get a dimming cycle clean enough that it won't bug my eyes. If you happen to be in the garden at sunrise or sunset, it will likely be a lot of flickering effects. Most notably at the lower end <15%. If you get this going I'd love to hear how well it works for you, please report back.
Why would you have flickering effects? You’re assuming that it works like pwm, it’s not it’s a digital potentiometer, it’s the equivalent of using a resistance dimming knob, not pwm
With all the assuming on these forums it would be worth trying and then reporting. One reason I got off social media (and ditched my real accounts and made this one), is because everyone has an opinion but not many people actually know.I guess I am making that assumption, in that the I2C will create a similar effect. I am unfamiliar with the digital pots.