Let's say I Have an nrf51822 on a small button cell battery having a sensor that is triggered on certain conditions.
What is the most efficient and power saving way to give a notification over BLE to the central (the central is a computer with a bluetooth USB dongle which is always on).
- What is the most low power / efficient protocol to use? UART, pure GATT or ipv6?
- How do I stay connected during sleep (I plan to wake on IRQ)?
- Is there any example that clearly shows how to properly wake up and quickly on an GPIO signal?
- Should the central poll for the NRF or should it be the other way around? I suppose I should first "pair" it so the central knows about it's name or MAC or whatever. Basically, I want to have as quick response as possible, and both to be connected as much as possible. Can the BLE connection be sleeping too but be ready?
Thanks :)