Hi Guys
Thought this would be the most appropriate place to post this as I think it's a hardware, not a software/project issue.
I'm on windows 7, I have the arduino uno R3 plugged into USB only, and have a problem with the voltage from the 3.3V power output.
I noticed it while calculating temperature for a project I was doing when it was telling me 8 degrees instead of about 20. I have now traced the problem to the 3.3V power output.
It's only giving 2.55V according to the following code:
void setup() {
Serial.begin(9600);
}
void loop() {
int therm0 = analogRead(A0); //1. input on Analog pin 0
float volt0 = therm0 * (3.3 / 1023.0); //2. conversion to Voltage
Serial.println(volt0); //3. Send voltage to Serial software display
This should be 3.3V right? do I need an external power source to achieve the full 3.3V?
- Heim