Github_Tutorial
Github_Tutorial copied to clipboard
A very basic and flawed piece of code to show how Github GUI works.
in the code, there is a bug and analogRead returns an int. This change corrects the variable mismatch
Changed byte to int to correct type. Thanks for making the tutorial!
type byte of myVar replaced by int (return type analogRead)
The original code had a bug in the void loop where the type of the variable was wrongly declared
changed byte to int
byte into int
Hello SAURABH..BISCUITS KHAANE HAI
Changed type of variable form byte to int.
The original code has a bug. analogRead returns an int. This change corrects the variable mismatch.