I have an ATTiny85 with one spare pin which happens to be the reset pin. For my project, I need the ATTiny to be in deep sleep, then when a button is pushed, it wakes up and does something then goes back to sleep.
Now, I have 2 options:
Use the reset pin for the button to reset the ATTiny then it automatically goes back to sleep
Free up another pin for the button to wake up the ATTiny then it
Both options essentially do the same thing (in theory), which is start up from deep sleep, do something then go back to sleep. However, is there a difference between the two methods?
If "turned it on" refers to "applying power", then there is a difference between "starting the processor by pressing Reset button" and "starting the processor by applying power". The former is the "Hot Start" and the later is "Cold Start".