Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update Github_Tutorial.ino
Changed return value from byte to int
  • Loading branch information
0xAloba committed Feb 4, 2022
commit 85fe97335d3b956e73761fad38a534fab3de3874
2 changes: 1 addition & 1 deletion Github_Tutorial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void setup()

void loop()
{
byte myValue = 0;
int myValue = 0;
myValue = analogRead(A0);

Serial.print("The value is: ");
Expand Down