From 0e8b119d4efc0bc7a90563e1cf33c19fd3e62dd4 Mon Sep 17 00:00:00 2001
From: xdvrx1 <mongAlvarez@gmail.com>
Date: Mon, 1 Feb 2021 12:48:22 +0800
Subject: [PATCH 1/6] Update README.md

---
 README.md | 92 +++++++++++++++++++++++++++----------------------------
 1 file changed, 46 insertions(+), 46 deletions(-)

diff --git a/README.md b/README.md
index 8192332..36fce41 100644
--- a/README.md
+++ b/README.md
@@ -136,41 +136,41 @@ the other one.
 
     void setup(void)
     {
-        pinMode(A, OUTPUT);
-        pinMode(B, OUTPUT);
-        pinMode(C, OUTPUT);
-        pinMode(D, OUTPUT);
-        pinMode(E, OUTPUT);
-        pinMode(F, OUTPUT);
-        pinMode(G, OUTPUT);
-        pinMode(H, OUTPUT);
+      pinMode(A, OUTPUT);
+      pinMode(B, OUTPUT);
+      pinMode(C, OUTPUT);
+      pinMode(D, OUTPUT);
+      pinMode(E, OUTPUT);
+      pinMode(F, OUTPUT);
+      pinMode(G, OUTPUT);
+      pinMode(H, OUTPUT);
     }
 
-    //My Functions
-
-    void zero(void) {
-        digitalWrite(A, LOW);
-        digitalWrite(B, HIGH);
-        digitalWrite(C, HIGH);
-        digitalWrite(D, HIGH);
-        digitalWrite(E, HIGH);
-        digitalWrite(F, HIGH);
-        digitalWrite(G, HIGH);
-        digitalWrite(H, LOW);
+    //functions to display
+    //the numbers
+    void displayZero(void) {
+      digitalWrite(A, LOW);
+      digitalWrite(B, HIGH);
+      digitalWrite(C, HIGH);
+      digitalWrite(D, HIGH);
+      digitalWrite(E, HIGH);
+      digitalWrite(F, HIGH);
+      digitalWrite(G, HIGH);
+      digitalWrite(H, LOW);
     }
 
-    void one(void) {
-        digitalWrite(A, LOW);
-        digitalWrite(B, LOW);
-        digitalWrite(C, LOW);
-        digitalWrite(D, HIGH);
-        digitalWrite(E, LOW);
-        digitalWrite(F, LOW);
-        digitalWrite(G, HIGH);
-        digitalWrite(H, LOW);
+    void displayOne(void) {
+      digitalWrite(A, LOW);
+      digitalWrite(B, LOW);
+      digitalWrite(C, LOW);
+      digitalWrite(D, HIGH);
+      digitalWrite(E, LOW);
+      digitalWrite(F, LOW);
+      digitalWrite(G, HIGH);
+      digitalWrite(H, LOW);
     }
 
-    void two(void) {
+    void displayTwo(void) {
       digitalWrite(A, HIGH);
       digitalWrite(B, LOW);
       digitalWrite(C, HIGH);
@@ -181,7 +181,7 @@ the other one.
       digitalWrite(H, LOW);
     }
 
-    void three(void) {
+    void displayThree(void) {
       digitalWrite(A, HIGH);
       digitalWrite(B, LOW);
       digitalWrite(C, HIGH);
@@ -192,7 +192,7 @@ the other one.
       digitalWrite(H, LOW);
     }
 
-    void four(void) {
+    void displayFour(void) {
       digitalWrite(A, HIGH);
       digitalWrite(B, HIGH);
       digitalWrite(C, LOW);
@@ -203,7 +203,7 @@ the other one.
       digitalWrite(H, LOW);
     }
 
-    void five(void) {
+    void displayFive(void) {
       digitalWrite(A, HIGH);
       digitalWrite(B, HIGH);
       digitalWrite(C, HIGH);
@@ -214,7 +214,7 @@ the other one.
       digitalWrite(H, LOW);
     }
 
-    void six(void) {
+    void displaySix(void) {
       digitalWrite(A, HIGH);
       digitalWrite(B, HIGH);
       digitalWrite(C, HIGH);
@@ -225,7 +225,7 @@ the other one.
       digitalWrite(H, LOW);
     }
 
-    void seven(void) {
+    void displaySeven(void) {
       digitalWrite(A, LOW);
       digitalWrite(B, LOW);
       digitalWrite(C, HIGH);
@@ -236,7 +236,7 @@ the other one.
       digitalWrite(H, LOW);
     }
 
-    void eight(void) {
+    void displayEight(void) {
       digitalWrite(A, HIGH);
       digitalWrite(B, HIGH);
       digitalWrite(C, HIGH);
@@ -247,7 +247,7 @@ the other one.
       digitalWrite(H, LOW);
     }
 
-    void nine(void) {
+    void displayNine(void) {
       digitalWrite(A, HIGH);
       digitalWrite(B, HIGH);
       digitalWrite(C, HIGH);
@@ -262,34 +262,34 @@ the other one.
     void loop(void)
     {
 
-      nine();
+      displayNine();
       delay(1000);
 
-      eight();
+      displayEight();
       delay(1000);
 
-      seven();
+      displaySeven();
       delay(1000);
 
-      six();
+      displaySix();
       delay(1000);
 
-      five();
+      displayFive();
       delay(1000);
 
-      four();
+      displayFour();
       delay(1000);
 
-      three();
+      displayThree();
       delay(1000);
 
-      two();
+      displayTwo();
       delay(1000);
 
-      one();
+      displayOne();
       delay(1000);
 
-      zero();
+      displayZero();
       delay(1000);
 
     }

From 60a1284aa6c4f43396d9f25cec4770e37d24bd93 Mon Sep 17 00:00:00 2001
From: xdvrx1 <mongAlvarez@gmail.com>
Date: Mon, 1 Feb 2021 12:50:12 +0800
Subject: [PATCH 2/6] Update README.md

---
 README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 36fce41..afac25a 100644
--- a/README.md
+++ b/README.md
@@ -258,7 +258,8 @@ the other one.
       digitalWrite(H, LOW);
     }
 
-    // Start
+    //execute the codes
+    //by invoking the functions
     void loop(void)
     {
 

From 5ef2d40246ae3dc3a692a2e4b2f05be858281f93 Mon Sep 17 00:00:00 2001
From: xdvrx1 <mongAlvarez@gmail.com>
Date: Thu, 4 Feb 2021 08:15:33 +0800
Subject: [PATCH 3/6] Update README.md

---
 README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index afac25a..03e7d27 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,8 @@ The digital pins are the very first to be
 encountered because they can be used by
 components in several ways. They will be
 connected to the terminals of electronic
-components.
+components. There are 14 Digital Pins
+in Arduino UNO Board.
 
 ### The GND
 ![gnd](https://github.com/xdvrx1/single-display-arduino-project/blob/main/res/src5.png?raw=true)

From 973184cb4d1492e4e539c2c55583847f26180b79 Mon Sep 17 00:00:00 2001
From: xdvrx1 <mongAlvarez@gmail.com>
Date: Wed, 17 Feb 2021 14:31:24 +0800
Subject: [PATCH 4/6] Update README.md

---
 README.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/README.md b/README.md
index 03e7d27..0c07887 100644
--- a/README.md
+++ b/README.md
@@ -316,3 +316,7 @@ two groups of numbers like your birth date,
 year you were born, significant date 
 in your life, lucky numbers for you, etc. 
 Explain the significance by using comments.
+
+Finally, the actual project is here:
+
+<https://www.tinkercad.com/things/fZCbIFVaMor>

From e3fa5db25862514a5e0eb99d765dce9b75e7d313 Mon Sep 17 00:00:00 2001
From: jdevstatic <jtechdev001@gmail.com>
Date: Sat, 26 Mar 2022 19:06:38 +0800
Subject: [PATCH 5/6] Delete LICENSE

---
 LICENSE | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 LICENSE

diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index effd999..0000000
--- a/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2021 xdvrx1
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.

From d25d584ac6e4e20c668ef6f7f5674070b33321de Mon Sep 17 00:00:00 2001
From: jdevstatic <jtechdev001@gmail.com>
Date: Thu, 21 Apr 2022 23:50:13 +0800
Subject: [PATCH 6/6] Update README.md

---
 README.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/README.md b/README.md
index 0c07887..a31fd62 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
 # Display (Output) Arduino Project
 
+*`updated 21 April 2022`*
+
 ![sample project](https://github.com/xdvrx1/single-display-arduino-project/blob/main/res/src8.png?raw=true)
 
 This is a simple project in Arduino that uses