18
By Declan Fox Raspberry Pi

Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

  • Upload
    vutruc

  • View
    245

  • Download
    5

Embed Size (px)

Citation preview

Page 1: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

By Declan Fox

Raspberry Pi

Page 2: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

7-Segment display

A seven-segment display is a form of electronic display device for displaying decimal numerals.

Raspberry Pi

Page 3: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Seven-segment displays are widely used in digital clocks, electronic meters, basic calculators, and other electronic devices that display numerical information.

Raspberry Pi

Page 4: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

The seven segments are arranged as a rectangle of two vertical segments on each side with one horizontal segment on the top, middle and bottom.

Raspberry Pi

Page 5: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

The segments of a 7-segment display are referred to by the letters A to G, where the optional DP decimal point (an "eighth segment") is used for the display of non-integer numbers.

Raspberry Pi

Page 6: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

We will be using LED 7-segment displays.

In a LED display, all of the cathodes (negative terminals) or all of the anodes (positive terminals) of the segment LEDs are connected to a common pin; this is called a "common cathode" or "common anode" device

Raspberry Pi

Page 7: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Wiring our display

Raspberry Pi

Page 8: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Wiring our display

Raspberry Pi

Page 9: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Our code

These lines import the time and GPIO modules, sets our pin naming preference and sets the GPIO numbers to the pin names on our extension board

Raspberry Pi

Page 10: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Our code

This sets Pin1 to Pin7 as outputs

Raspberry Pi

Page 11: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Our code

This sets Pin1 to Pin7 to 0v

Raspberry Pi

Page 12: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Our code

This stops the program with the display LEDs on

Raspberry Pi

Page 13: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Our code

This sets Pin1 to Pin7 to 3.3v

Raspberry Pi

Page 14: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Our code

This frees Pin1 to Pin7 up to be used again, they are no longer set as outputs.

Raspberry Pi

Page 15: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Belts

Page 16: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Belts

Page 17: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Belts

Page 18: Raspberry Pi 7-segment display - CoderDojo Athenry · PDF file7-Segment display A seven-segment display is a form of electronic display device for displaying decimal numerals. Raspberry

Belts