This sounds like a simple question which should have a simple answer - but when I google it I get lots of "information" - some of which is contradictory. NB This is a general question - I feel if I put a complete project with code, diagrams etc. I'll simply confuse the issue.
So here goes - I will have the Arduino controlling bits and pieces (as you do) and it will be hidden away in a box, with some of its inputs and outputs leading to a control board.
Somewhere on the control board I intend to have a reset button which I guess I would - somehow - connect to the Reset pin.
The UNO specifications says "Reset. Bring this line LOW to reset the microcontroller. Typically used to add a reset button to shields which block the one on the board."
So the question is - how, exactly, do I use it?
Do I simply run a wire from the 5v power pin (or indeed any other 5v source) on the UNO to the switch (which would open the circuit when pressed), and a lead back from the switch to the reset pin - is it that simple?
Do I need any code in the Startup? (Seems an odd question, but this almost looks like a hardware reset alternative to the reset button which suggest no coding need - or does it!)
Or would it be better to send a "High" from one of the output pins direct to the Reset pin, with my switch triggering a bit of code which sends the output pin low? (This approach seems to get some criticism as being unsafe/undesirable in many of the articles I've found).
Thank you for clarifying - Richard