Hello @JTR ,
Feedback:
- This is not formatted properly as per the guidelines.
This makes it difficult for anyone trying to assist.
Keep in mind that one error can generate another error!
The exploration below was what I did in steps and then all the other errors were showing up one at a time!
- You did not close the
try()block without a closing bracket. Note: may have been ok after fixing other errors! - You have a comment that found its way on to the next line. This is close to where the closing bracket should be.
Once you correct the above there are numerous other errors!
- Incorrect spelling
- Functions that do not exist
- Type Serial is ambiguous
- Cannot find a class or type named “InputStreameReader” < Obvious spelling error!
- Undeclared variables
- Code that is commented out that should be on a separate line
Keep plugging away at it!
Correct these first:
- Spelling errors in code. The code is unforgiving!
- Code and\or comments on the wrong lines.
Keep in mind that one error can generate another error!
The above list was from what I experienced editing this and you may have to iterate over the code a few times to sort this out.
This is part of the learning curve and a worth wile exercise for you to work through.
I did get it to successfully run without errors.
:)