Github_Tutorial icon indicating copy to clipboard operation
Github_Tutorial copied to clipboard

A very basic and flawed piece of code to show how Github GUI works.

Results 42 Github_Tutorial issues
Sort by recently updated
recently updated
newest added

myValue is declared as a byte, but it is later assigned an int value by the return of the analogRead function. The easiest fix is probably to change the type...

Original code of Github_Tutorial.ino has bug where it should return int instead of byte. Changed data type of myValue from byte to int in Github_Tutorial.ino file.

The original code has a bug, analogRead returns an int. This change corrects the variable mismatch. Thank you for the helpful tutorial! I understand the basics but am just trying...

Corrected 'byte' on line 24 to 'int'.

Changed myValue declaration to int. analogRead returns an integer.

Changed the return value of the analog reading from byte to integer

It is good tutorial, Thank you.

Updated variable type, following tutorial step. Hi folks ... Thanks for creating this tutorial. I'm just following it through ... :-)