I’d like to light a LED with an analog output (all my digital pins are used)
My code is as follows but no value is passed to the outside
someone he had this problem ?
Thank you in advance
void setup()
{
pinMode(DAC1, OUTPUT); // sets pin as output
}
void loop()
{
analogWrite(DAC1, 4095); // sets the LED on
delay(500); // waits for 500mS
analogWrite(DAC1, 0); // sets the LED on // sets the LED off
delay(500); // waits for 500mS
}
Are you measuring the output voltage directly on the DAC pin, without anything else connected?
I think the STM32F2 DAC, with output buffer enabled, requires 5k Ohm minimum resistive load.
I’ve just made some DAC experiments and found that the output buffer was not enabled, even though looking at the code it seems it should be.
That could explain why the DAC can’t drive your LEDs. Or did you put too small a resistor in series?
Thanks for your replies. @mars yes i had measured the output voltage directly on the DAC pin. I tried with a 5kOhm resistive load and nothing is happening. ( it must put the resistive load between the dac pin and the ground, or in series with the LED ?) @Rockvole yes i get the same if i use A7 pin or an other one.
I do not understand why but now when I directly measure the DAC1 pin I have 3.3V output
Unfortunately when I feed the photon by the Vin pin with 5v voltage, the DAC1 output will stop responding. my code works only with the power from the USB cable. someone has an explanation for that ?
From what I can tell, the internal DAC output buffer is not enabled, which means that there will be 2x 5k resistance and very little drive capacity on the DAC output.
Can anyone else confirm this? With buffer you should be able to drive a 5k load with no problem.
@Sherkann in your case you would connect the DAC to your LED, to the resistor, to ground (ie resistor in series). 5k is probably a bit much depending on LED, you could try 1k. For driving LEDs though you really want a current source, not a voltage source like the DAC. You will get better results with PWM.
I was looking at that and it clearly says the buffer is enabled, but using the analogWrite() method I get very different results from when I call the low-level code directly.
I’m not sure if it could be undone by DAC_Cmd(DAC_Channel_x, ENABLE); on L90 and L97, which I think belong in HAL_DAC_Init().
I’d like to test but my current setup is far from vanilla photon.
NOTE: While for PWM pins one single call to pinMode(pin, OUTPUT); sets the pin mode for multiple analogWrite(pin, value); calls, for DAC pins you need to set pinMode(DAC, OUTPUT); each time anew you want to perform an analogWrite().
I have been having the same issue. Just to test, I placed an LED on pin A0 and tried running through multiple analog values. None of them worked. As soon as I did a digitalWrite(A0, HIGH), it lit up perfectly. Meanwhile, analogWrite(A0, 4095) does nothing. Neither does any other value passed in to analogWrite.
A0 - A2 only support analogread, digitalread and digitalwrite. NOT analogwrite A3 & A6 are the only pins that can take values up to 4095 A4, A5 & A7 can anly take values up to 255