-
Web code updates
05/20/2014 at 00:31 • 0 commentsI updated the web code to give a table view. Voltages are just simulated data, but you get the idea.
-
Added Second battery to battery bank
05/19/2014 at 00:45 • 0 commentsI had some time this weekend and made up some cables to connect my second battery to my battery bank. Cables are 1 AWG and used a 1/0 gauge batter terminal connector. Clamped the connector in a vice. Heat it with a blow torch and filled the connector with solder. Once filled I push the cable into the solder. Works pretty bell with the vice take much of the heat away after the torch was removed.
While one end cooled I worked the other cable until complete. Once both cables cooled down. I used shrink wrapped and marked them with colored tape.
-
2nd voltage/current module complete
05/19/2014 at 00:28 • 0 commentsI built up a second voltage and current module... Was almost done and then snapped the corner off the Protoboard. Didnt affect anything but doesnt look good. I like the current sensor but not happy with the way they work on the board.... need to give some more though on how to lay these out.
-
Panel time
05/08/2014 at 00:02 • 0 commentsI need to make some changes to where the solar panels were located and how they come into house so the controllers and monitoring systems would be close to a network connection. At least the panels are some what portable. here is a messy view of my charge controller. The dusty keyboard monitor are for my ESX box that sits on the top shelf and are not used as part of this project.
-
code changes
05/02/2014 at 00:48 • 0 commentsI changed the straight line voltage get code into a function so I can call it will multiple an analog pin number as a variable. Next is to do turn the current gathering code into a function. This also offers flexibility to have some other chipset get the current and voltage and and all I need to do is fix the called code.
Calling code.
float voltage=get_voltage(A5); /get volatge on A5
Called code.
float get_voltage ( int vpin ) {
float gvolt=(analogRead(vpin)/4.092)/10;
return gvolt;
-
more ports ordered
05/01/2014 at 18:05 • 0 commentsOrdered 3 more ACS715 current sensors so I can finish up this project.
-
Life
04/23/2014 at 00:03 • 0 commentsBeen away from the project due to work and family task. Should be getting back into it soon.
-
Network interface
04/03/2014 at 00:43 • 0 commentsI originally had planned to use a w5100 ethernet shield, but the shield ended up using A0-A4... By moving to the non-shield module I now have access to all the analog ports on my arduino.
-
Created a voltage/current module
03/27/2014 at 00:25 • 0 commentsTook the messy wires and create a module that makes interface a little easier. In the next module I will skip the voltage divider module and just use a couple of resistors for a cleaner look.
FRONT VIEW.
REAR VIEW.
-
Current and voltage modules
03/24/2014 at 00:46 • 0 commentsThis jumble of wires has both the current and voltage modules wired up. I need a better sub-module to hold both of these modules. That will be the next task.