create account

Electronic Project 32: A simple guide on how to make a single digit counter 0-9 using a common anode seven segment display by rfece143

View this thread on: hive.blogpeakd.comecency.com
· @rfece143 · (edited)
$22.03
Electronic Project 32: A simple guide on how to make a single digit counter 0-9 using a common anode seven segment display
#### What Will I Learn?

At the end of this tutorial:

♦ The readers will be able to create a single digit counter using seven segment display and arduino uno

♦ The readers will be able to know how the circuit works.

♦ Learn to apply the circuit in the future electronic projects

**Introduction**
 
Today, we will create a simple single digit counter using the seven segment display and arduino uno. The counter will count from 0-9, and it will be displayed on the seven segment.

You can read more about seven segment display [Here]( https://en.wikipedia.org/wiki/Seven-segment_display)


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532347/wi60iarrfgzffdxdt4dr.png)


 #### Requirements

**Electronic Components** 

♦ Arduino Uno

♦ Seven segment display (common anode)

♦ Resistor

♦ Breadboard

♦ Connecting wires

**Software**

♦ Fritzing application

#### Difficulty

♦ Intermediate

#### Tutorial Contents

Using the fritzing software, we will create our circuit diagram, arduino codes and prototype using the breadboard 

**Part I. Schematic Diagram**

So first let us construct our circuit diagram.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531498/ntvpcsdnmj6o9xrrzmab.png)


Select the electronic components needed for the circuit in the fritzing library. We need 1 arduino uno, 1 seven segment display common anode and 1 resistor.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531518/azgbhyfa7qsyfynl4nlg.png)


Arrange the components before constructing the circuit.
In arranging the components, place all the components for the input side (left side) of the arduino and the components for the output side (right side).
We have no input component; all we have is output components, seven segment displays and a resistor.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531532/znqrbg5czugi5gn0joyq.png)


In connecting the seven segment, we will need 7 output pins from our microcontroller that will be connected in the seven segment pins. Cathode pin C of the seven segment will be connected to pin D4 of our arduino, cathode pin D to pin D5 and cathode pin E to D6 as you can see in the figure below


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531548/dbzvmulukunl8qhpczue.png)


The cathode pin A to be connected to pin D2, cathode pin F to pin D7 and cathode pin G to pin D8 of our arduino.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531561/kiaaifudikwh9patmsie.png)


Since we use the common anode seven segment display, we will connect it to the ground using the resistor as you can see below.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531576/kfjf0fty0drd2hp90xxd.png)


Now this is our final circuit diagram.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531591/xqdhli8zsggfqdt0ilzg.png)


The cathode pin E is connected to output pin D6 of our arduino. When there is output signal from this pin, seven segment will display the corresponding led display.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531605/zmvenvxqrpfy1wqwrtyu.png)


The cathode pin D is connected to output pin D5 of our arduino. When there is an output signal from this pin, seven segment will display the corresponding led display.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531620/v9qflmtl09lfjpkvitn2.png)


The cathode pin C is connected to output pin D4 of our arduino. When there is an output signal from this pin, seven segment will display the corresponding led display.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531635/sje8187ijgc6yy9ljcao.png)


The cathode pin G is connected to output pin D8 of our arduino. When this pin is HIGH, seven segment will display the corresponding led display.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531660/p3nmx4jiysl8e85all20.png)


The cathode pin F is connected to output pin D7 of our arduino. When this pin is HIGH, seven segment will display the corresponding led display.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531685/snqxofoqhvyxufs94zxa.png)


The cathode pin A is connected to output pin D2 of our arduino. When this pin is HIGH, seven segment will display the corresponding led display


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531710/gpwv4lizrqwkgncjxymj.png)


The cathode pin B is connected to output pin D3 of our arduino. When this pin is HIGH, seven segment will display the corresponding led display.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531730/xgu3aehyp5yqkycwl58y.png)


Since in this is a single digit counter, we cannot use the decimal point so we will remain this unconnected. We can use this pin in creating counter with decimal point.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531778/nd7cdt7ivpnzpjfeuvzc.png)


The common anode is the negative or the ground terminal of the seven segment display, so we will connect this pin to the ground as you can see in the figure below.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531794/tymmahjfbnv8kzkuklhf.png)


**Part II.  Code**

Now let us do programming of our Arduino uno.
Click on code to start.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531810/fs0vl8d8i6t96ta2rqnf.png)


Now let us define first the pin connection from the seven segment display to the pins from the arduino uno..

```
#define ssdA 2  //cathode A is connected to arduino pin 2
#define ssdB 3   //cathode B is connected to arduino pin 3
#define ssdC 4  //cathode C is connected to arduino pin 4
#define ssdD 5  //cathode D is connected to arduino pin 5
#define ssdE 6   //cathode E is connected to arduino pin 6
#define ssdF 7   //cathode F is connected to arduino pin 7
#define ssdG 8  //cathode G is connected to arduino pin 8
```


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531880/sqhcidgslchlqr7d53bc.png)


```
int count = 0;  //initial counter 0 to 9
```

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531926/vxkhwrapg9kncuq5olli.png)


```
void setup(){
for(int x =2; x<9; x++) 
{ 
pinMode(x, OUTPUT); //output pin from pin 2 – pin 8
}
}
```


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531953/younzqcujcue7rcftoyz.png)


```
void loop(){
switch (count)
{
Case 0: //Show “0” on display
// pin combination in displaying zero
digitalWrite(ssdA, HIGH);  
digitalWrite(ssdB, HIGH);
digitalWrite(ssdC, HIGH);
digitalWrite(ssdD, HIGH);
digitalWrite(ssdE, HIGH);
digitalWrite(ssdF, HIGH);
digitalWrite(ssdG, LOW);
break;
Case 1: //Show “1” on display
// pin combination in displaying one
digitalWrite(ssdA, LOW);
digitalWrite(ssdB, HIGH);
digitalWrite(ssdC, HIGH);
digitalWrite(ssdD, LOW);
digitalWrite(ssdE, LOW);
digitalWrite(ssdF, LOW);
digitalWrite(ssdG, LOW);
break;
```


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531992/bahy6abz0ogjkku5xc6g.png)


```
Case 2 : //Show “2” on display
// pin combination in displaying two
digitalWrite(ssdA, HIGH);
digitalWrite(ssdB, HIGH);
digitalWrite(ssdC, LOW);
digitalWrite(ssdD, HIGH);
digitalWrite(ssdE, HIGH);
digitalWrite(ssdF, LOW);
digitalWrite(ssdG, HIGH);
break;
Case 3 : //Show “3” on display
// pin combination in displaying three
digitalWrite(ssdA, HIGH);
digitalWrite(ssdB, HIGH);
digitalWrite(ssdC, HIGH);
digitalWrite(ssdD, HIGH);
digitalWrite(ssdE, LOW);
digitalWrite(ssdF, LOW);
digitalWrite(ssdG, HIGH);
break;
```


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532038/wrnrun8ysi2pktmaa2p3.png)


```
Case 4 : //Show “4” on display
// pin combination in displaying four
digitalWrite(ssdA, LOW);
digitalWrite(ssdB, HIGH);
digitalWrite(ssdC, HIGH);
digitalWrite(ssdD, LOW);
digitalWrite(ssdE, LOW);
digitalWrite(ssdF, HIGH);
digitalWrite(ssdG, HIGH);
break;
Case 5 : //Show “5” on display
// pin combination in displaying five
digitalWrite(ssdA, HIGH);
digitalWrite(ssdB, LOW);
digitalWrite(ssdC, HIGH);
digitalWrite(ssdD, HIGH);
digitalWrite(ssdE, LOW);
digitalWrite(ssdF, HIGH);
digitalWrite(ssdG, HIGH);
break;
```

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532073/lssharlhhkqc4oxbedc1.png)


```
Case 6 : //Show “6” on display
// pin combination in displaying six
digitalWrite(ssdA, HIGH);
digitalWrite(ssdB, LOW);
digitalWrite(ssdC, HIGH);
digitalWrite(ssdD, HIGH);
digitalWrite(ssdE, HIGH);
digitalWrite(ssdF, HIGH);
digitalWrite(ssdG, HIGH);
break;
Case 7 : //Show “7” on display
// pin combination in displaying seven
digitalWrite(ssdA, HIGH);
digitalWrite(ssdB, HIGH;
digitalWrite(ssdC, HIGH);
digitalWrite(ssdD, LOW);
digitalWrite(ssdE, LOW);
digitalWrite(ssdF, LOW);
digitalWrite(ssdG, LOW);
break;
```


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532128/qskkwllgodvipyzcc1qn.png)


```
Case 8 : //Show “8” on display
// pin combination in displaying eight

digitalWrite(ssdA, HIGH);
digitalWrite(ssdB, HIGH;
digitalWrite(ssdC, HIGH);
digitalWrite(ssdD, HIGH);
digitalWrite(ssdE, HIGH);
digitalWrite(ssdF, HIGH);
digitalWrite(ssdG, HIGH);
break;
Case 9 : //Show “9” on display
// pin combination in displaying nine

digitalWrite(ssdA, HIGH);
digitalWrite(ssdB, HIGH;
digitalWrite(ssdC, HIGH);
digitalWrite(ssdD, HIGH);
digitalWrite(ssdE, LOW);
digitalWrite(ssdF, HIGH);
digitalWrite(ssdG, HIGH);
break;
```

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532160/ujfhkjglrvqlkf6i2cfp.png)


```
break; 
}
If (count<10){
Count++;
delay(1000); //every second increment by 1
}
If (count == 10){
Count = 0; //reset to zero if counter reach to 10
Delay(1000); //1 second delay
}
}
```


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532208/ojtt59bwdvq4kh63iaze.png)


Here are our arduino codes.


```
#define ssdA 2  //cathode A is connected to arduino pin 2 
#define ssdB 3   //cathode B is connected to arduino pin 3 
#define ssdC 4  //cathode C is connected to arduino pin 4 
#define ssdD 5  //cathode D is connected to arduino pin 5 
#define ssdE 6   //cathode E is connected to arduino pin 6 
#define ssdF 7   //cathode F is connected to arduino pin 7 
#define ssdG 8  //cathode G is connected to arduino pin 8 
int count = 0;  //initial counter 0 to 9 
void setup(){ 
for(int x =2; x<9; x++) 
{ 
pinMode(x, OUTPUT); //output pin from pin 2 – pin 8 
} 
} 
void loop(){ 
switch (count) 
{ 
Case 0: //Show “0” on display 
digitalWrite(ssdA, HIGH); 
digitalWrite(ssdB, HIGH); 
digitalWrite(ssdC, HIGH); 
digitalWrite(ssdD, HIGH); 
digitalWrite(ssdE, HIGH); 
digitalWrite(ssdF, HIGH); 
digitalWrite(ssdG, LOW); 
break; 
  
Case : //Show “1” on display 
digitalWrite(ssdA, LOW); 
digitalWrite(ssdB, HIGH); 
digitalWrite(ssdC, HIGH); 
digitalWrite(ssdD, LOW); 
digitalWrite(ssdE, LOW); 
digitalWrite(ssdF, LOW); 
digitalWrite(ssdG, LOW); 
break; 
Case 2 : //Show “2” on display 
digitalWrite(ssdA, HIGH); 
digitalWrite(ssdB, HIGH); 
digitalWrite(ssdC, LOW); 
digitalWrite(ssdD, HIGH); 
digitalWrite(ssdE, HIGH); 
digitalWrite(ssdF, LOW); 
digitalWrite(ssdG, HIGH); 
break; 
  
Case 3 : //Show “3” on display 
digitalWrite(ssdA, HIGH); 
digitalWrite(ssdB, HIGH); 
digitalWrite(ssdC, HIGH); 
digitalWrite(ssdD, HIGH); 
digitalWrite(ssdE, LOW); 
digitalWrite(ssdF, LOW); 
digitalWrite(ssdG, HIGH); 
break; 
  Case 4 : //Show “4” on display 
digitalWrite(ssdA, LOW); 
digitalWrite(ssdB, HIGH); 
digitalWrite(ssdC, HIGH); 
digitalWrite(ssdD, LOW); 
digitalWrite(ssdE, LOW); 
digitalWrite(ssdF, HIGH); 
digitalWrite(ssdG, HIGH); 
break; 
Case 5 : //Show “5” on display 
digitalWrite(ssdA, HIGH); 
digitalWrite(ssdB, LOW); 
digitalWrite(ssdC, HIGH); 
digitalWrite(ssdD, HIGH); 
digitalWrite(ssdE, LOW); 
digitalWrite(ssdF, HIGH); 
digitalWrite(ssdG, HIGH); 
break; 
  Case 6 : //Show “6” on display 
digitalWrite(ssdA, HIGH); 
digitalWrite(ssdB, LOW); 
digitalWrite(ssdC, HIGH); 
digitalWrite(ssdD, HIGH); 
digitalWrite(ssdE, HIGH); 
digitalWrite(ssdF, HIGH); 
digitalWrite(ssdG, HIGH); 
break; 
Case 7 : //Show “7” on display 
digitalWrite(ssdA, HIGH); 
digitalWrite(ssdB, HIGH; 
digitalWrite(ssdC, HIGH); 
digitalWrite(ssdD, LOW); 
digitalWrite(ssdE, LOW); 
digitalWrite(ssdF, LOW); 
digitalWrite(ssdG, LOW); 
break; 
Case 8 : //Show “8” on display 
digitalWrite(ssdA, HIGH); 
digitalWrite(ssdB, HIGH; 
digitalWrite(ssdC, HIGH); 
digitalWrite(ssdD, HIGH); 
digitalWrite(ssdE, HIGH); 
digitalWrite(ssdF, HIGH); 
digitalWrite(ssdG, HIGH); 
break; 
Case 9 : //Show “9” on display 
digitalWrite(ssdA, HIGH); 
digitalWrite(ssdB, HIGH; 
digitalWrite(ssdC, HIGH); 
digitalWrite(ssdD, HIGH); 
digitalWrite(ssdE, LOW); 
digitalWrite(ssdF, HIGH); 
digitalWrite(ssdG, HIGH); 
break; 
break; 
} 
if (count<10){ 
Count++; 
delay(1000); //every second increment by 1 
} 
if (count == 10){ 
Count = 0; //reset to zero if counter reach to 10 
delay(1000); //1 second delay 
} 
}
```

**Part III. Breadboard**

Click on the breadboard.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532267/cukk9oksa9ay45qrbhjz.png)


Arrange each component in the breadboard before connecting.


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532289/jum3emau3rg1hawvsmjz.png)


Now connect each component if you don’t know how to connect using breadboard just read my previous [tutorial]( https://utopian.io/utopian-io/@rfece143/electronic-circuit-construction-a-step-by-step-guide-in-placing-and-constructing-a-basic-circuit-in-the-breadboard-using) about how to construct a circuit in the breadboard


![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532311/wv3weuik401uvv0aysiw.png)


**Application**
The readers can create their own counter using seven segment display like the example below.

[link source]( https://www.youtube.com/watch?v=MVs61o9kfDQ)

#### Curriculum

Here are my other tutorials for electronic projects.

**ELECTRONIC PROJECTS** 

[Tutorial 1]( https://utopian.io/utopian-io/@rfece143/electronic-circuit-construction-a-step-by-step-guide-in-placing-and-constructing-a-basic-circuit-in-the-breadboard-using)

[Tutorial 2]( https://utopian.io/utopian-io/@rfece143/electronic-project-how-to-create-a-simple-mechanism-in-dispensing-an-object-automatically-using-a-magnetic-solenoid)

[Tutorial 3]( https://utopian.io/utopian-io/@rfece143/electronic-project-2-how-to-create-a-6-led-light-sound-follower-circuit-using-fritzing-software-for-circuit-layout)

[Tutorial 4]( https://utopian.io/utopian-io/@rfece143/electronic-project-4-light-sensing-device-or-a-step-by-step-guide-in-constructing-a-basic-circuit-in-showing-the-function-of-an)

[Tutorial 5]( https://utopian.io/utopian-io/@rfece143/electronic-project-5-control-the-dc-motor-using-a-pushbutton-or-how-to-create-a-mechanism-to-control-the-movement-of-a-dc-motor)

[Tutorial 6]( https://utopian.io/utopian-io/@rfece143/electronic-project-6-automatic-switch-for-sound-signal-using-light-dependent-resistor)

[Tutorial 7]( https://utopian.com/utopian-io/@rfece143/electronic-project-7-starting-the-dc-motor-using-the-force-sensitive-resistor)

[Tutorial 8](https://utopian.io/utopian-io/@rfece143/electronic-project-8-automatic-operation-of-servo-motor-using-light-dependent-resistor)

[Tutorial 9](https://utopian.io/utopian-io/@rfece143/electronic-project-9-automatic-display-of-rainbow-colors-using-rgb-led-with-the-aid-of-fritzing-software)

[Tutorial 10]( https://utopian.io/utopian-io/@rfece143/electronic-project-10-automatic-sound-alarm-when-temperature-increases)

[Tutorial 11]( https://utopian.io/utopian-io/@rfece143/electronic-project-11-security-alarm-system-using-a-sound-alarm-when-window-is-opened)

[Tutorial 12]( https://utopian.io/utopian-io/@rfece143/electronic-project-12-automatic-lights-on-and-off-when-sounds-detected-using-arduino-uno)

[Tutorial 13]( https://utopian.io/utopian-io/@rfece143/electronic-project-13-amplification-of-signal-using-op-amp-and-arduino-uno)

[Tutorial 14](https://utopian.io/utopian-io/@rfece143/electronic-project-14-automatic-sound-signal-when-nearby-objects-are-within-the-nominal-range-of-the-proximity-sensor)

[Tutorial 15](https://utopian.io/utopian-io/@rfece143/electronic-project-15-manually-operated-circuit-isolation-using-optocoupler-and-arduino-uno)

[Tutorial 16](https://utopian.io/utopian-io/@rfece143/electronic-project-16-automatic-sound-alarm-when-reach-the-inclined-limit-using-tilt-sensor-and-arduino-uno#comments)

[Tutorial 17](https://utopian.io/utopian-io/@rfece143/electronic-project-17-automatic-plant-watering-when-soil-is-dry-using-the-soil-moisture-sensor-and-a-dc-motor-for-water-control)

[Tutorial 18]( https://utopian.io/utopian-io/@rfece143/electronic-project-18-automatic-detection-between-black-and-white-surfaces-and-senses-object-with-close-proximity-using)

[Tutorial 19]( https://utopian.io/utopian-io/@rfece143/electronic-project-19-gas-alarm-system-using-arduino-gas-sensor-and-a-buzzer-for-the-alarm-system)

[Tutorial 20]( https://utopian.io/utopian-io/@rfece143/electronic-project-20-automatic-buzzer-alarm-when-temperature-increases-through-radiation-emitted-by-an-object-using-ir)

[Tutorial 21]( https://utopian.io/utopian-io/@rfece143/electronic-project-21-automatic-switching-on-off-the-electric-fan-when-temperature-increases-using-temperature-sensor)

[Tutorial 22](https://utopian.io/utopian-io/@rfece143/electronic-project-22-automatic-sound-alarm-when-part-of-an-object-is-being-stretched-using-textile-stretch-sensor)

[Tutorial 24]( https://utopian.io/utopian-io/@rfece143/electronic-project-24-light-and-sound-display-characteristics-of-an-sr-flip-flop-using-led-and-buzzer-with-arduino-uno)

[Tutorial 25]( https://utopian.io/utopian-io/@rfece143/electronic-project-25-audio-volume-control-and-light-dimmer-using-potentiometer-and-arduino-uno)


[Tutorial 26]( https://utopian.io/utopian-io/@rfece143/electronic-project-26-how-to-make-a-simple-traffic-light-system-in-a-single-lane-and-a-pedestrian-lane-with-manual-operation)

[Tutorial 27]( https://utopian.io/utopian-io/@rfece143/electronic-project-27-a-simple-guide-in-controlling-the-speed-and-direction-of-a-dc-motor-using-field-effect-transistor-and-a)

[Tutorial 28]( https://utopian.io/utopian-io/@rfece143/electronic-project-28-a-simple-guide-in-detecting-an-obstacle-using-a-photodiode-ir-led-and-a-buzzer-for-the-sound-alarm)

[Tutorial 29]( https://utopian.io/utopian-io/@rfece143/electronic-project-29-manual-and-automatic-mechanism-in-turning-on-a-lighting-system-based-from-light-dependent-resistor-and-a)

[Tutorial 30]( https://utopian.io/utopian-io/@rfece143/electronic-project-30-a-simple-guide-on-how-to-control-the-rgb-led-display-using-the-force-sensitive-resistor)

[Tutorial 31]( https://utopian.io/utopian-io/@rfece143/electronic-project-31-a-simple-guide-on-how-to-use-humidity-temperature-sensor-as-a-rain-sensing-device-with-a-buzzer-alarm)





<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@rfece143/electronic-project-32-a-simple-guide-on-how-to-make-a-single-digit-counter-0-9-using-a-common-anode-seven-segment-display">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorrfece143
permlinkelectronic-project-32-a-simple-guide-on-how-to-make-a-single-digit-counter-0-9-using-a-common-anode-seven-segment-display
categoryutopian-io
json_metadata{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":23322663,"name":"fritzing-app","full_name":"fritzing/fritzing-app","html_url":"https://github.com/fritzing/fritzing-app","fork":false,"owner":{"login":"fritzing"}},"pullRequests":[],"platform":"github","type":"tutorials","tags":["utopian-io","technology","steemstem","tutorial","philippines"],"users":["rfece143"],"links":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532347/wi60iarrfgzffdxdt4dr.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531498/ntvpcsdnmj6o9xrrzmab.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531518/azgbhyfa7qsyfynl4nlg.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531532/znqrbg5czugi5gn0joyq.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531548/dbzvmulukunl8qhpczue.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531561/kiaaifudikwh9patmsie.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531576/kfjf0fty0drd2hp90xxd.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531591/xqdhli8zsggfqdt0ilzg.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531605/zmvenvxqrpfy1wqwrtyu.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531620/v9qflmtl09lfjpkvitn2.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531635/sje8187ijgc6yy9ljcao.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531660/p3nmx4jiysl8e85all20.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531685/snqxofoqhvyxufs94zxa.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531710/gpwv4lizrqwkgncjxymj.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531730/xgu3aehyp5yqkycwl58y.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531778/nd7cdt7ivpnzpjfeuvzc.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531794/tymmahjfbnv8kzkuklhf.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531810/fs0vl8d8i6t96ta2rqnf.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531880/sqhcidgslchlqr7d53bc.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531926/vxkhwrapg9kncuq5olli.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531953/younzqcujcue7rcftoyz.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531992/bahy6abz0ogjkku5xc6g.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532038/wrnrun8ysi2pktmaa2p3.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532073/lssharlhhkqc4oxbedc1.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532128/qskkwllgodvipyzcc1qn.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532160/ujfhkjglrvqlkf6i2cfp.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532208/ojtt59bwdvq4kh63iaze.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532267/cukk9oksa9ay45qrbhjz.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532289/jum3emau3rg1hawvsmjz.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532311/wv3weuik401uvv0aysiw.png","https://utopian.io/utopian-io/@rfece143/electronic-project-8-automatic-operation-of-servo-motor-using-light-dependent-resistor","https://utopian.io/utopian-io/@rfece143/electronic-project-9-automatic-display-of-rainbow-colors-using-rgb-led-with-the-aid-of-fritzing-software","https://utopian.io/utopian-io/@rfece143/electronic-project-14-automatic-sound-signal-when-nearby-objects-are-within-the-nominal-range-of-the-proximity-sensor","https://utopian.io/utopian-io/@rfece143/electronic-project-15-manually-operated-circuit-isolation-using-optocoupler-and-arduino-uno","https://utopian.io/utopian-io/@rfece143/electronic-project-16-automatic-sound-alarm-when-reach-the-inclined-limit-using-tilt-sensor-and-arduino-uno#comments","https://utopian.io/utopian-io/@rfece143/electronic-project-17-automatic-plant-watering-when-soil-is-dry-using-the-soil-moisture-sensor-and-a-dc-motor-for-water-control","https://utopian.io/utopian-io/@rfece143/electronic-project-22-automatic-sound-alarm-when-part-of-an-object-is-being-stretched-using-textile-stretch-sensor"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532347/wi60iarrfgzffdxdt4dr.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531498/ntvpcsdnmj6o9xrrzmab.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531518/azgbhyfa7qsyfynl4nlg.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531532/znqrbg5czugi5gn0joyq.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531548/dbzvmulukunl8qhpczue.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531561/kiaaifudikwh9patmsie.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531576/kfjf0fty0drd2hp90xxd.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531591/xqdhli8zsggfqdt0ilzg.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531605/zmvenvxqrpfy1wqwrtyu.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531620/v9qflmtl09lfjpkvitn2.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531635/sje8187ijgc6yy9ljcao.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531660/p3nmx4jiysl8e85all20.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531685/snqxofoqhvyxufs94zxa.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531710/gpwv4lizrqwkgncjxymj.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531730/xgu3aehyp5yqkycwl58y.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531778/nd7cdt7ivpnzpjfeuvzc.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531794/tymmahjfbnv8kzkuklhf.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531810/fs0vl8d8i6t96ta2rqnf.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531880/sqhcidgslchlqr7d53bc.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531926/vxkhwrapg9kncuq5olli.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531953/younzqcujcue7rcftoyz.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519531992/bahy6abz0ogjkku5xc6g.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532038/wrnrun8ysi2pktmaa2p3.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532073/lssharlhhkqc4oxbedc1.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532128/qskkwllgodvipyzcc1qn.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532160/ujfhkjglrvqlkf6i2cfp.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532208/ojtt59bwdvq4kh63iaze.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532267/cukk9oksa9ay45qrbhjz.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532289/jum3emau3rg1hawvsmjz.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519532311/wv3weuik401uvv0aysiw.png"],"moderator":{"account":"cha0s0000","time":"2018-02-25T15:29:45.315Z","reviewed":true,"pending":false,"flagged":false},"questions":[],"score":0}
created2018-02-25 04:28:09
last_update2018-02-25 15:29:45
depth0
children3
last_payout2018-03-04 04:28:09
cashout_time1969-12-31 23:59:59
total_payout_value15.298 HBD
curator_payout_value6.734 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19,237
author_reputation5,306,440,293,124
root_title"Electronic Project 32: A simple guide on how to make a single digit counter 0-9 using a common anode seven segment display "
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,248,346
net_rshares4,993,956,728,513
author_curate_reward""
vote details (34)
@cha0s0000 ·
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
properties (22)
authorcha0s0000
permlinkre-rfece143-electronic-project-32-a-simple-guide-on-how-to-make-a-single-digit-counter-0-9-using-a-common-anode-seven-segment-display-20180225t153000820z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-25 15:30:15
last_update2018-02-25 15:30:15
depth1
children1
last_payout2018-03-04 15:30:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation30,983,518,016,225
root_title"Electronic Project 32: A simple guide on how to make a single digit counter 0-9 using a common anode seven segment display "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,360,938
net_rshares0
@rfece143 ·
thanks @cha0s0000
properties (22)
authorrfece143
permlinkre-cha0s0000-re-rfece143-electronic-project-32-a-simple-guide-on-how-to-make-a-single-digit-counter-0-9-using-a-common-anode-seven-segment-display-20180226t015435862z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["cha0s0000"],"app":"steemit/0.1"}
created2018-02-26 01:54:39
last_update2018-02-26 01:54:39
depth2
children0
last_payout2018-03-05 01:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation5,306,440,293,124
root_title"Electronic Project 32: A simple guide on how to make a single digit counter 0-9 using a common anode seven segment display "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,470,389
net_rshares0
@utopian-io ·
### Hey @rfece143 I am @utopian-io. I have just upvoted you!
#### Achievements
- You have less than 500 followers. Just gave you a gift to help you succeed!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
authorutopian-io
permlinkre-rfece143-electronic-project-32-a-simple-guide-on-how-to-make-a-single-digit-counter-0-9-using-a-common-anode-seven-segment-display-20180226t145831429z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-26 14:58:30
last_update2018-02-26 14:58:30
depth1
children0
last_payout2018-03-05 14:58:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,084
author_reputation152,955,367,999,756
root_title"Electronic Project 32: A simple guide on how to make a single digit counter 0-9 using a common anode seven segment display "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,621,145
net_rshares0