Need to print a statement to display with with user input of * or # input to go to the next routine...
jmorgan007:
Need to print a statement to display with with user input of * or # input to go to the next routine...
So, what have you tried? This isn't the homework hotline.
I believe I need to write some code to scan the numeric keypad inputs for button presses.
Or use the Keypad library, which does that for you.
Then something kind of directive based on if "*" or "#" was pressed to go to a specific place in my sketch?
We don't like the phrase "goto" here. But, yes, you want to call a function (or execute a block of code) if the key was '*'. Possibly call a different function (or execute a different block of code) if the key was '#'.
I resolved this issue, closed.