Looking for a front end to manage Arduino data from a PC.
I Know the arduino side (Serial IO and parsing), looking for a PC side option.
The need is to read data from the arduino, make changes, and write updated data back to arduino.
Actual task is managing EEE memory configuration data.
Looking for examples of user interaction, such as creating entry form with text display and input, pick lists, etc.
Thank you for the links.
The serial part I understand. The examples are pretty clear.
What I am looking for is how to create a user facing form/dialog in Processing to let the user type in numbers or select from a list. If I have the data from the user, I know how to get the data to/from the Arduino.
So, the front end options/examples are what I need.
E.G.,
How to present text?
how to capture text from the user?
how does the user select from a list?
Thomas Stephens DeSoto, TX
Interfascia looks like oit will do what I want, as soon as I learn more about Java. (Old C/C++ programmer)
Looking at the radio button example, I see how radio buttons are displayed, but how do I determine which has been selected? As in in finding which button was last pushed?
I tried to set a text label with the selected button id/reference/index and could not figure out the syntax for converting an index into a parameter the label would take.
If strings are static, how to I change the text in a string?
This is likely simple JAVA, but new to me.
So the old string is destroyed automatically? (Java vs C memory management)
Any examples available for changing a text or label object based on radio button selection?
As in, select this button, text says “First”, select second bubtton text says “Second”, back to first button, text says “First”.
Looking for how to capture user action for further processing.