Need help with arduino sampling voltage and current

Click For Summary
SUMMARY

The discussion centers on using an Arduino to sample voltage and current for an electrolytic cell project. The user is measuring current with a shunt, where 1mV corresponds to 1A, and the voltage drop averages around 40V. Key recommendations include using a voltage divider to protect the Arduino from high voltage inputs and employing the analogRead() function for voltage measurements. To store data, utilizing an external EEPROM module is advised, along with serial functions to output data for analysis, potentially using software like Excel for graphing.

PREREQUISITES
  • Basic understanding of Arduino programming and functions
  • Knowledge of voltage dividers and their application
  • Familiarity with Ohm's Law for current calculations
  • Experience with serial communication in Arduino
NEXT STEPS
  • Research how to implement EEPROM with Arduino for data storage
  • Learn about voltage divider circuits and their design
  • Explore the Serial.println() function for data output
  • Investigate data logging shields compatible with Arduino
USEFUL FOR

Electronics enthusiasts, Arduino developers, and anyone involved in measuring and analyzing electrical parameters in experimental setups.

HHOboy
Messages
32
Reaction score
0
Hi, I built a electrolytic cell that uses electricity to break water into hydrogen and oxygen. I am testing efficiency and need a way of calculating the average current draw and voltage drop over a period of time for the cell. I have some experience using Arduinos in projects but not much. I know I will have to take samples then use a function to calculate the average voltage and current. By the way the current is measured using a shunt so 1mv = 1amp. The voltage drop averages around 40 volts. I have researched some but am still very confused on adding memory to the arduino and outputting data via serial cable to a laptop. Any help would be much appreciated. Thanks in advance.
 
Engineering news on Phys.org
Sounds like you want to do some analog input sampling. Remember the Ardunio can only measure inputs between 0-5V, so you want to design a circuit with a voltage divider and some diodes to ensure that the input to the Arduino never exceeds the value it can take (trust me, you'll fry the thing if you don't).

Have a look at this one:
http://fritzing.org/projects/voltage-divider/



As for the actual analog signal sampling, the Arduino is very useful and userfriendly. Have a look at the analogRead() function:
http://blog.littlebirdelectronics.com/tutorial-arduino-and-the-aref-pin
http://arduino.cc/en/Reference/analogRead
 
Last edited by a moderator:
Thanks for the reply, I now understand how to read the voltages with the arduino, but I don't totally understand the serial functions that are used to output the data that is recorded. I understand that I can use the Arduino environment to process this serial data input but I was wondering if you know a good way to maybe make a graph out of the data. Again thanks for all of your help.
 
Last edited:
No worries!
Well, what serial functions are you using at the moment?

An easy, but slow, method that I sometimes use when I need to graph data is to use the Serial.println( ); function, and then simply graph the data I get versus time in some other software (Excel)
 


Hello,

It sounds like you are working on an interesting project! Sampling voltage and current with an Arduino can be a useful tool for analyzing the efficiency of your electrolytic cell. To calculate the average current draw, you can use the formula I = Q/t, where I is the current, Q is the charge (measured in coulombs), and t is the time. Since you are using a shunt to measure the current, you will need to convert the voltage reading to current using Ohm's law (I = V/R). As for calculating the average voltage, you can simply take the average of all the voltage readings over a period of time.

To add memory to your Arduino, you can use an external EEPROM (Electrically Erasable Programmable Read-Only Memory) module. This will allow you to store the voltage and current readings over a longer period of time. You can then use the serial cable to output the data to a laptop for further analysis.

I would suggest doing some research on using EEPROM with Arduino and familiarizing yourself with the code needed to read and write data to it. Additionally, you may find it helpful to use a data logging shield, which will make it easier to store and retrieve data from the EEPROM.

I hope this helps and good luck with your project!
 

Similar threads

  • · Replies 32 ·
2
Replies
32
Views
4K
Replies
22
Views
2K
Replies
1
Views
2K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
Replies
11
Views
7K
Replies
78
Views
10K
  • · Replies 2 ·
Replies
2
Views
2K