<div dir="ltr">Hi Everyone, <div><br></div><div>I'm new to the forum, but thought I'd jump in because I recently did some current metering of an OVMS that I've been hacking on the workbench, and I want to share it in case it helps anyone. Here's what I've learned:<div>





<br></div><div>The power draw of the unit varies a lot depending on what features are being used. After a nominal power-up with only occasional text messages, the average 12V current draw on my unit was 120mA. With a GPRS connection sending HTTP POSTs of about 30 bytes every 10 seconds, the average current draw is 175mA (with peaks over 480mA).</div>




<div><br></div><div>From a quick internet search, it seems the Leaf 12V battery has a capacity of about 40Ah (can someone confirm this?). If there are no other loads on the 12V system when the car is parked, then here is how long I'd expect it to drain the battery dead:</div>




<div><br></div><div>40Ah / 0.120A = 333.3 hours = 13.9 days</div><div>40Ah / 0.175A = 228.5 hours = 9.5 days</div><div><br></div><div>If there was another 100mA drain on the 12V system internal to the car, then those times would drop to 7.6 days and 6.1 days respectively. In other words I wouldn't be surprised if the battery goes dead in a week or even a few days, depending on other drains on the system.</div>





<div><br></div><div>The pic micro controller itself seems to be drawing about 28~30mA, including whatever peripherals it's sourcing current to (e.g. LEDs) and including the CAN transceiver and RS232 level shifter. I measured the 5V current by lifting the ENABLE pin on the 4V power supply chip, effectively turning off the SIM908 module power supply altogether. At this stage, the pic can be put in it's own SLEEP mode, bringing the total 12V current draw to 16mA.<br>




</div><div><br></div><div>Another thing to think about: the part number for the 4V supply chip on the OVMS is using an LDO power supply, which is good if the supply voltage is close to the operating voltage (i.e. if the battery was 5~6V), but is less than 40% efficient with a battery supply of 12V. The SIM908 design doc recommends an alternative to the LDO design for higher voltage sources:</div>




<div><br></div><div><img src="cid:ii_1468801be8679ed1" alt="Inline image 1" style="margin-right:0px"><br></div><div><br></div><div>To estimate how <i>much</i> difference it would make, here's a back-of-the envelope calculation based on the measurements I described above:</div>




<div><br></div><div>Let's say the 12V current draw is 120mA total, and that the 5V bus (pic, etc.) is 30mA of that. Then, the 4V module + LDO supply is drawing 120mA - 30mA = 90mA from the 12V line. </div><div><br></div>




<div>SIM908 4V current draw = 90mA * 40% efficiency = 36mA</div><div><br></div><div>The LM2596 is 73% efficient at 3.3V/3A and 80% efficient at 5V/3A. Extrapolating, let's say it's about 75% efficient for a 4V/3A supply (perhaps better with current draw below the max of 3A?).</div>




<div><br></div><div>Current draw with switching supply = 36mA / 75% efficiency = 48mA.</div><div><br></div><div>So the savings in current draw from the LDO to switching supply will be 90mA - 48mA = 42mA.</div><div><br></div>




<div>42mA is 35% of the total 120mA, and it's a conservative estimate, since the 4V bus is where current jumps up to 175mA, and peaks toward 500mA when there's GPS/GPRS activity. The improvement will likely be better than 42mA.</div>




<div><br></div><div>Bringing it all back around to the battery-drain, the device will last noticeably longer with the 4V switching power supply instead of the LDO:</div><div><br></div><div><div>40Ah / (0.120A - 0.042A) = 512.8 hours = 21.1 days *</div>




<div>40Ah / (0.160A - 0.042A) = 339.0 hours = 14.1 days *</div><div>40Ah / (0.175A - 0.042A) = 300.8 hours = 12.5 days *</div></div><div>(*Not including other 12V power draws internal to the vehicle)</div><div><br></div>

<div>As I mentioned above, the total 12V current draw can be brought down to 16mA with the 4V disabled and the pic asleep. By connecting the 4V chip ENABLE pin to a PIC digital output, this can be controlled in firmware. Here's an example patch (green wire) from the ENABLE pin to DIO pin RB1:</div>

<div><br></div><div><img src="cid:ii_1468808a1df7330b" alt="Inline image 2" width="363.75" height="484.99999999999994"><br></div><div><br></div><div>Obviously the unit doesn't function when everything is shutdown and asleep, but it does help to protect the battery until it can receive a charge when everything is powers up again. </div>


<div>
<br></div><div>-Arthur</div>
</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jun 3, 2014 at 9:27 PM, Mark Webb-Johnson <span dir="ltr"><<a href="mailto:mark@webb-johnson.net" target="_blank">mark@webb-johnson.net</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><br></div>I've had a look at the Nissan Leaf code I have, and it is not doing any polling. Just passive listening on the bus. Is that what you have (vehicle_nissanleaf_poll0() just a stub returning TRUE)?<div>
<br></div><div>If so, this is worrying. Any way you can put a meter on your OVMS box and see what sort of power consumption figures you are seeing? Even 160mA at 12V is just under 2watts, and I really can't see how that can be an issue for a reasonable lead-acid battery.</div>
<div><br></div><div>Below is an eMail on this from early last year. It shows what sort of reading we are expecting.</div><div><br></div><div>When I looked at this last year, I found I could bring PIC usage down to 25mA (from 35mA-42mA), which is not amazing. The biggest power hog is the modem (up to 160mA at times - particularly looking for cellular signal). There is a AT+CSCLK low power mode for the modem, but in my testing I was having problems maintaining a GPRS connection in low power mode (which is a non-starter).</div>
<div><br></div><div>Regards, Mark.</div><div><br></div><div><blockquote style="margin:0 0 0 40px;border:none;padding:0px">Michael,<div><br></div><div>I checked the Sleep() function. Turning off the SIM908 and going to Sleep() seemed to bring overall usage down to 25mA.</div>
<div><br></div><div>Your code for alert seems to be ok, but I think the thresholds may be too high. The ADC reading is dependent on individual resistor variation (it is just a voltage divider) and I doubt whether it is accurate to more than 0.5V or so. It will scale linearly, but the offset will be wrong. For example, my car shows 11.</div>
<div><br></div><div>Regards, Mark.</div><div><br><div><div>On 19 Jan, 2013, at 9:36 PM, Michael Balzer <<a href="mailto:dexter@expeedo.de" target="_blank">dexter@expeedo.de</a>> wrote:</div><br><blockquote type="cite">
<div bgcolor="#FFFFFF" text="#000000">Mark,<br><br>I just checked in the 12V alert function.<br><br>It's straight forward and compiles ok, but I cannot test if it triggers and resets correctly under real use conditions -- I've got no power supply with adjustable voltage.<br>
<br>As most 12V batteries will be standard lead acid ones, I've set the trigger thresholds to reasonable values for these: The alert will be triggered on voltage drop below 11.5 V and reset on voltage above 11.9 V.<br>
<br>Regards,<br>Michael<br><br><br><div>Am 19.01.2013 11:10, schrieb Michael Balzer:<br></div><blockquote type="cite">Mark,<br><br>for the Twizy and maybe other cars, a wakeup from activity on the CAN bus could also be an option. I remember reading about that in the SIM908 manual. The OVMS could generally sleep while the Twizy is off, maybe with an optional timed wakeup every 10-15 minutes for 1-2 minutes to detect GPS position changes.<br>
<br>Btw, the SIM908 hardware design contains detailed info on the sleep modes and power usages:<br><a href="http://www.mt-system.ru/sites/default/files/sim908-c_hardware_design_v1.03.pdf" target="_blank">http://www.mt-system.ru/sites/default/files/sim908-c_hardware_design_v1.03.pdf</a><br>
<br>Thanks for bringing the 12V monitoring to my attention.<br><br>I'll now first add an SMS alert on the 12V power line getting too low, that's easy to implement and will remind users to charge.<br><br>Regards,<br>
Michael<br><br><br><div>Am 19.01.2013 10:47, schrieb Mark Webb-Johnson:<br></div><blockquote type="cite"><div><br></div>Here are the power usage figures from my bench, using v1 hardware:<div><br></div><div><ul><li>PIC (normal mode) on, modem powered down (by power toggle switch): 35mA - 42mA</li>
<li>PIC (normal mode) on, modem on, gps off: 75mA</li><li>PIC (normal mode) on, modem on,gps on: 120mA</li><li>Very short-lived bursts to 160mA at times, presumably while transmitting on GSM</li></ul></div><div><br></div>
<div>Playing with AT+CSCLK=2, the modem seems to drop to almost no power usage (perhaps 45mA), with a CR on the async port waking it up.</div><div><br></div><div>Looking at the PIC18F2685 data sheet, it seems that with an external 20MHz oscillator, the normal power consumption is around 30mA to 40mA. Switching to an internal 4MHz oscillator reduces that to 5.3mA, and internal 1MHz oscillator to 3mA. Sleep mode is 2µA.</div>
<div><br></div><div>I'll play around with it. So far, it seems it is quite easy to go into low-power sleep mode. It is getting back out that is the tricky bit.</div><div><br></div><div>Regards, Mark.</div><div><br><div>
<div>On 19 Jan, 2013, at 8:50 AM, Mark Webb-Johnson <<a href="mailto:mark@webb-johnson.net" target="_blank">mark@webb-johnson.net</a>> wrote:</div><br><blockquote type="cite"><div style="word-wrap:break-word">Michael,<div>
<br></div><div>Urgh. Glad that you managed to recover it.</div><div><br></div><div>The TMC forums have a few theads at the moment of Model S cars with 12V battery issues, and the Tesla Roadster's little 12V battery seems to need replacing every 13 to 25 months.</div>
<div><br></div><div>For Roadsters, OVMS is not run off that little 12V battery, so we haven't seen this issue.</div><div><br></div><div>The good news is that we did anticipate this sort of thing (except were expecting to see it more on ICE cars with OBDII monitoring). We added 12V power line monitoring, through an ADC, into the v2 hardware. Looking at your logs for the past few days is interesting (I don't think there is anything private in their apart from the vehicleid and odometer, which I have obscured, so hope you don't mind me posting here). The 12v line reading is the second to last column:</div>
<div><br></div><div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><font face="Andale Mono">2013-01-14 06:39:53.930886 -0500 info  main: #34 C XXXXXXX rx msg D 128,0,0,13,17,4,0,YYYY9,28,0,-127,0,120,-1,15.0,0<br>
2013-01-14 06:59:54.871517 -0500 info  main: #34 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.7,0<br>2013-01-14 07:05:26.666203 -0500 info  main: #34 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.7,0<br>
2013-01-14 07:05:46.498420 -0500 info  main: #34 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.7,0<br>2013-01-14 07:06:04.<a href="tel:864927%20-0500" value="+18649270500" target="_blank">864927 -0500</a> info  main: #34 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.7,0<br>
2013-01-14 07:30:07.<a href="tel:228738%20-0500" value="+12287380500" target="_blank">228738 -0500</a> info  main: #34 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.6,0<br>2013-01-14 08:29:57.461316 -0500 info  main: #34 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.5,0<br>
2013-01-14 09:29:48.<a href="tel:441380%20-0500" value="+14413800500" target="_blank">441380 -0500</a> info  main: #34 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.4,0<br>2013-01-14 11:29:30.755176 -0500 info  main: #34 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.3,0<br>
2013-01-14 15:05:36.688666 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.2,0<br>2013-01-14 16:05:35.111552 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.7,0<br>
2013-01-14 16:36:35.755630 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.2,0<br>2013-01-14 18:38:18.<a href="tel:404933%20-0500" value="+14049330500" target="_blank">404933 -0500</a> info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.2,0<br>
2013-01-14 21:04:47.187479 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.1,0<br>2013-01-15 02:04:22.<a href="tel:801440%20-0500" value="+18014400500" target="_blank">801440 -0500</a> info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,12.0,0<br>
2013-01-15 09:03:13.233483 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.9,0<br>2013-01-15 11:02:54.400624 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.7,0<br>
2013-01-15 12:02:44.<a href="tel:724576%20-0500" value="+17245760500" target="_blank">724576 -0500</a> info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.9,0<br>2013-01-15 13:02:34.285593 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.8,0<br>
2013-01-15 16:02:09.372087 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.7,0<br>2013-01-15 17:02:00.235001 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.8,0<br>
2013-01-15 19:01:41.695938 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.7,0<br>2013-01-16 02:00:40.126355 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.6,0<br>
2013-01-16 06:00:03.073862 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.5,0<br>2013-01-16 11:59:01.907094 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.4,0<br>
2013-01-16 15:58:22.<a href="tel:520731%20-0500" value="+15207310500" target="_blank">520731 -0500</a> info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>2013-01-16 17:22:48.691426 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>
2013-01-16 17:30:10.<a href="tel:701329%20-0500" value="+17013290500" target="_blank">701329 -0500</a> info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>2013-01-16 17:30:21.837740 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.2,0<br>
2013-01-16 17:36:37.811552 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>2013-01-16 17:46:01.164994 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>
2013-01-16 17:48:35.257576 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>2013-01-16 17:56:49.565932 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>
2013-01-16 18:01:15.186127 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>2013-01-16 18:02:46.866156 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>
2013-01-16 18:02:54.<a href="tel:217581%20-0500" value="+12175810500" target="_blank">217581 -0500</a> info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>2013-01-16 18:10:29.930408 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>
2013-01-16 18:10:38.723483 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.2,0<br>2013-01-16 18:11:12.459758 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.2,0<br>
2013-01-16 18:18:31.863177 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>2013-01-16 18:19:03.123286 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>
2013-01-16 18:43:55.355803 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.3,0<br>2013-01-16 18:58:43.<a href="tel:567326%20-0500" value="+15673260500" target="_blank">567326 -0500</a> info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.2,0<br>
2013-01-16 22:58:15.314101 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.1,0<br>2013-01-17 01:57:50.181011 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,11.0,0<br>
2013-01-17 02:57:40.<a href="tel:587918%20-0500" value="+15879180500" target="_blank">587918 -0500</a> info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,10.9,0<br>2013-01-17 03:57:30.418056 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,10.8,0<br>
2013-01-17 04:57:19.241415 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,10.6,0<br>2013-01-17 05:57:10.622186 -0500 info  main: #54 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,10.3,0<br>
2013-01-17 06:32:32.593533 -0500 info  main: #55 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,10.0,0<br>2013-01-17 07:32:23.932656 -0500 info  main: #55 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,9.4,0<br>
2013-01-17 08:32:13.374380 -0500 info  main: #55 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,7.9,0<br>2013-01-17 09:32:03.<a href="tel:204557%20-0500" value="+12045570500" target="_blank">204557 -0500</a> info  main: #55 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,7.2,0<br>
2013-01-17 10:31:52.551362 -0500 info  main: #55 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,6.5,0<br>2013-01-17 11:31:41.821330 -0500 info  main: #55 C XXXXXXX rx msg D 0,0,0,14,15,4,0,ZZZZ0,0,0,-127,0,0,-1,6.7,0<br>
2013-01-17 12:58:48.540906 -0500 info  main: #60 C XXXXXXX rx msg D 128,0,0,13,1,2,0,ZZZZ8,0,0,-127,0,120,-1,15.1,0</font></blockquote></div><div><br></div><div>It shows 15v at the start (I guess when the car is on and charging it), then 12.7v at 2013-01-14 06am EST, then falls gradually to 11.0v at 2013-01-17 01am EST. At that point it seems to fall faster, down to the last report (just 10 hours later)  6.7v at 2013-01-17 11am EST.</div>
<div><br></div><div>My original thought to handle this was to have two thresholds.</div><div><br></div><div>At the first threshold, the PIC would turn off the modem and re-awake only once every 12 hours, for 2 minutes, before going back to sleep.</div>
<div><br></div><div>At the second threshold, the PIC would turn off the modem, and go to a deep sleep itself. In this mode, once power was restored it would reset itself.</div><div><br></div><div>Exit from either mode would be the 12v power line going back above the first threshold plus some safety margin.</div>
<div><br></div><div>This weekend, I'll get some exact power measurements from the v2 hardware module, so we know what we are dealing with:</div><div><br></div><div><ul><li>Just the PIC (modem powered down)</li><li>PIC + MODEM</li>
<li>PIC + MODEM + GPS</li></ul></div><div><br></div><div>Last time I tested this, on v1 hardware without GPS, these were the figures for PIC + MODEM:</div><div><br></div><div><ul><li>Idle: 40mA @12V</li><li>Cellular Network Registration: 100mA @12V</li>
<li>Network activity: 80mA @12V</li></ul></div><div><br></div><div>Regards, Mark.</div><div><br><div><div>On 18 Jan, 2013, at 10:47 PM, Michael Balzer <<a href="mailto:dexter@expeedo.de" target="_blank">dexter@expeedo.de</a>> wrote:</div>
<br><blockquote type="cite">Mark, List,<br><br>yesterday my Twizy was temporarily dead... because of the OVMS power usage.<br><br>I had not driven for 5 days. The Twizy has a very small 12V battery with only 14 Ah capacity, and it only gets charged while charging the Twizy and while driving (from the main battery).<br>
<br>The OVMS with GPS activated needs a constant current of ~110 mA according to my measurement, thus sucking that battery empty within 4-5 days, maybe fewer. I'll make the power warning much more prominent in the Twizy user guide.<br>
<br>Have there been any considerations yet about using the sleep mode of the PIC and/or SIM chipset?<br><br>Regards,<br>Michael<br></blockquote></div></div></div></blockquote></div></div></blockquote></blockquote></div></blockquote>
</div></div></blockquote></div><div><br><div><div><div class="h5"><div>On 3 Jun, 2014, at 5:09 pm, Nigel Jones <<a href="mailto:nigel@cherrybyte.me.uk" target="_blank">nigel@cherrybyte.me.uk</a>> wrote:</div><br></div>
</div><blockquote type="cite"><div><div class="h5"><div dir="ltr">Just as a quick update I thought I'd mention that I've now disconnected OVMS from my Nissan Leaf in order to ascertain the cause of the 12V battery drain I was seeing for several days over the weekend - to the extent of returning after around 8 hours and being unable to even start the car<div>


<br></div><div>More complete details are at <a href="https://speakev.com/threads/nissan-leaf-12v-battery-totally-dead.19/page-4" target="_blank">https://speakev.com/threads/nissan-leaf-12v-battery-totally-dead.19/page-4</a></div>
<div><br>

</div><div>I was just about to make a similar comment to the one Kevin just made in that thread - namely that I doubt the ovms processor per se is the cause of the drain since even in a tight spin loop due to a bug I can't imagine it's possible to take that much power? I however wouldn't be surprised if ovms polling the CAR bus might be keeping "things" in the car awake, which then causes the drain.</div>


<div><br></div><div>There's also a chance it's just co-incidence.</div><div><br></div><div>My plan is to reintroduce the OVMS at some point where the car is going to sit idle and not needed (working at home, or when I'm up in London by train) and see if the problem reoccurs. Of course it may be a particular sequence of events that gets the car into a state where it's bus is active.. tricky to pin down.</div>


<div><br></div><div>regardless switching over to the EV bus is another option. The leafdd seems stable.</div><div><br></div><div>Nigel.<br clear="all"><div><br></div>-- <br>----<br>Nigel Jones
</div></div></div></div>
_______________________________________________<br>OvmsDev mailing list<br><a href="mailto:OvmsDev@lists.teslaclub.hk" target="_blank">OvmsDev@lists.teslaclub.hk</a><br><a href="http://lists.teslaclub.hk/mailman/listinfo/ovmsdev" target="_blank">http://lists.teslaclub.hk/mailman/listinfo/ovmsdev</a><br>
</blockquote></div><br></div></div><br>_______________________________________________<br>
OvmsDev mailing list<br>
<a href="mailto:OvmsDev@lists.teslaclub.hk">OvmsDev@lists.teslaclub.hk</a><br>
<a href="http://lists.teslaclub.hk/mailman/listinfo/ovmsdev" target="_blank">http://lists.teslaclub.hk/mailman/listinfo/ovmsdev</a><br>
<br></blockquote></div><br></div>