Hello.
Any news from this project?
Do you made the changes for the timer TLP?
Description:
This is a Mysensors node using RFM69W radio module, Si7021 temperature/humidity sensor and MAX44009 ambient light sensor.
Key Features:
Work progress:
** Tested and it works! **
HW Revisions:
Credits:
All credits go to MySensors team for the great work and to the opensource community
Name | Size | # Downloads |
---|---|---|
multisensor_cr2032.net | 26.69 kB | 772 |
multisensor_cr2032.sch | 29.1 kB | 704 |
multisensor_cr2032.kicad_pcb | 213.21 kB | 677 |
multisensor_cr2032.pdf | 79.25 kB | 678 |
multisensor_cr2032-B.Cu.gbl | 70.2 kB | 615 |
multisensor_cr2032-B.Mask.gbs | 2.69 kB | 611 |
multisensor_cr2032-B.Paste.gbp | 2.29 kB | 648 |
multisensor_cr2032-B.SilkS.gbo | 101.08 kB | 681 |
multisensor_cr2032-Edge.Cuts.gm1 | 615 B | 675 |
multisensor_cr2032-F.Cu.gtl | 65.96 kB | 627 |
multisensor_cr2032-F.Mask.gts | 4.53 kB | 612 |
multisensor_cr2032-F.Paste.gtp | 4.13 kB | 511 |
multisensor_cr2032-F.SilkS.gto | 70.95 kB | 644 |
multisensor_cr2032-NPTH.drl | 173 B | 630 |
multisensor_cr2032-PTH.drl | 822 B | 630 |
@DavidZH
that's exactly what i said depends on wakeup freq needed. So i agree of course :).
I use some coincell with my 328p multisensors, pir onboard so i need the wdt for some tasks.
and for new coincell board i've in progress, or low power wdt.. i'm not using anymore 328p, but arm mcus
@scalz
You also use coincells for timed nodes? As the watchdog timer uses 4,5uA that's quite a lot over 500 or 600 nA with only interrupts waking the MCU. I have some door sensors which I would like to have send a heartbeat every 12 hours or so, because these doors sometimes will not be opened for a few days. That TI chip would be nice to use as a heartbeat timer on an interrupt on only 55nA.
But maybe I'm nitpicking now...
As I have the step-up converter already in there I was thinking what if I use it to power only the sensors and act as a switch too? The rest of the components(radio + MCU) will be powered from the battery.
So my idea is to use that dc-dc converter to power the sensors when the MCU is awake in order to read data and shut it off in sleep mode. This way I can overcome the situation when I have sensors that require min 2.5V to work AND more important I can cut power from most of the parts from this board when needed using the converter as a power switch. I recently added the A3212 hall sensor which requires min 2.5V to work(because it's the cheapest one that I found and in a user friendly package too - and it's micropower also).
One possible issue that I see here is about the logic levels as when the battery voltage drops the MCU will work at a lower voltage(so the logic levels will drop too) and the sensors will work from the same 3.3V provided by the converter(and logic levels).
The NCP1402 device will accept 0.9V minumum on the CE pin as stated in the datasheet so I see no problem here. The off state current is 0.6uA so it's pretty low.
I need to change the schematic a little bit and re-route the board to accomplish this but it's not a big issue at all.
I have played too with TI's nano ultra low iq step up and these timers, (i like their design&app notes). but finally thought it was overkill for coincells. i also made my own ulpnode for experiments too (sequence with stepup+voltage supervisor, microchip app note).
Finally i choosed the simple no reg way for those batteries. plus it saves the need of filtering the switching reg for radio (which is good for better snr).
I thought the same for the reset cycle, not great, regarding startup time+internal res of coincell .
This ic is still a nice ultra low power wdt but i thought i could use rfm69 listenmode and save money&footprint because between 1ua or 2uA no big diff, depending of the wakeup frequency..
Always compromise everywhere
You're right about the finding parent + presentation part...forgot about that. Anyways it's still an interesting approach in order to reduce power consumption and maybe some other combination can be thought in order to profit from this.
I too came across this last week. It's really neat!
Another drawback I see is that the node resets every time when wired in this way. That means the whole finding-parent and presentation section is run every time. That eats a lot of power as the radio is powered for more than a second, especially when the node runs at 1MHz.
I think that in a MyS application this IC should be used to trigger an interrupt to send the data to the controller and, in case of hungry sensor types, switch the power to the sensor.
That does mean you will be running at about 600nA, but that is still 1/10th of what a watchdog-timed sensor will use.
Hi,
I just found an interesting approach and idea to use for CR2032 battery powered sensors in order to reduce power usage. Well..it's not my idea but I borrowed it from an application example provided by Texas Instruments(all credits go to them). So the thing is that in the end all battery powered sensors only report data at some regular interval right? So what about using an extremely low power timer like this one TPL5111 (it takes only 35nA to work !!!) and gate the power for the rest of the circuit(MCU + radio) at a regular interval which can be set using a external resistor?
Instead of using the internal watchdog from the MCU to do the sleep we're using an external timer to do just that. But in this case we're cutting the whole power from the board keeping only the TPL5111 timer active. This combined with a low quiescent 3.3V boost converter like TPS61291 which will be put into shutdown mode when not needed by the external timer should give a "sleep mode" of only 50nA !!! (the shutdown current of the converter is around 15nA).
TPL5111 is built in a such a way that after MCU finishes it's work it can reset it using an external pin in order to put the system in shutdown mode again.
All of this sounds great and the advantages that I see here are:
Disadvantages:
Reference schematic for usage(it uses TI components for mcu+radio but the idea is the same)
This can be improved further by using an analog switch also:
Reference documentation:
TPL5111 datasheet
TPS61291 datasheet
@mtiutiu
got that too
Great. I forgot to mention about the rfm69w module which can be found on AliExpress too. I use this adaptor for rfm69w testing: https://oshpark.com/shared_projects/TKNcHTRl and it works great.