Arduino Sketch Help
I have a Arduino that sends a notification upon trigger from an external sensor. The sketch I made works for me but is too complicated to give to somebody else and expect no problems.
Basically here is what I need at the barebones minimum: Arduino when powered broadcasts wifi so you can connect to it.
Then the user selects the correct ssid which then triggers an entry for the password. This part is successful for me already using a wifi manager library. Also needed is the ability for the sketch to send a notification to a specified endpoint. I would like to use Telegram with an available library.
The Telegram option though is throwing up a roadblock for me. How can I have the user enter the required info into the sketch. If there was a way to do this kind of like the ssid and password with the wifi manager that is what I am looking for.
Otherwise the user would have to edit the sketch or reload an updated version. That would require the Arduino IDE and an ability to use it which is a big no.
I thought about coding the sketch to send the info to me somehow and then I could do whatever needed to be done to relay the notification back.
This seems like it is what you would do when you don't know exactly what you are trying to do.
What is an easier way to send a notification over wifi from the Arduino that the user doesn't have to configure. Or an option which displays a GUI to change a snippet in the code ?.