From bfb0291c35a3c982e6fb6481372be9d71b5a513b Mon Sep 17 00:00:00 2001 From: Andrew Kidd Date: Sun, 6 Feb 2022 08:57:23 +0000 Subject: [PATCH 1/3] Update Github_Tutorial.ino Updated variable type, following tutorial step. --- Github_Tutorial.ino | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Github_Tutorial.ino b/Github_Tutorial.ino index 80143fc..e99c210 100644 --- a/Github_Tutorial.ino +++ b/Github_Tutorial.ino @@ -21,7 +21,7 @@ void setup() void loop() { - byte myValue = 0; + int myValue = 0; myValue = analogRead(A0); Serial.print("The value is: "); @@ -29,4 +29,3 @@ void loop() delay(250); } - From c579bf2fd04f2e1b50558623cba6a75421214aa0 Mon Sep 17 00:00:00 2001 From: Andrew Kidd Date: Sun, 19 Feb 2023 19:24:21 +0000 Subject: [PATCH 2/3] Created .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5ebd21a..2e79a14 100644 --- a/.gitignore +++ b/.gitignore @@ -161,3 +161,4 @@ pip-log.txt # Mac crap .DS_Store +*.code-workspace From 421fde657970c35049628520640b236a4d7e186e Mon Sep 17 00:00:00 2001 From: Andrew Kidd Date: Sat, 18 Mar 2023 20:18:47 +0000 Subject: [PATCH 3/3] Update .gitignore --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2e79a14..f6ec151 100644 --- a/.gitignore +++ b/.gitignore @@ -160,5 +160,7 @@ pip-log.txt .mr.developer.cfg # Mac crap -.DS_Store +*.DS_Store +*.code-workspace +*.workspace *.code-workspace