7 Segment Display - Red 5.9inch Common Cathode

If you're looking for digital indicators and numeric displays for your project, these 7 segment displays will be able to get the job done. This is the biggest 7 Segment display we stock.

To use this display, you will need a 12V supply and current limiting resistors on each segment (1k resistors should be sufficient). Your power supply should be rated for a minimum of 160mA for each digit in your overall display.

Quick Spec

  • 5.9 inch single digit 7-segment LED displays
  • Digit height: 4-inch (101.7mm)
  • Emitting Colour: Red
  • Polarity: Cathode
  • Made with white segments and black surface RoHS Directive-compliant
  • Dimensions: 121.8 x 90 x 14mm
  • Net Weight: 131g

Pinout

40101-BS-003

Demo Code


// make an array to save Sev Seg pin configuration of numbers

int num_array[10][7] = {  { 1,1,1,1,1,1,0 },    // 0
                          { 0,1,1,0,0,0,0 },    // 1
                          { 1,1,0,1,1,0,1 },    // 2
                          { 1,1,1,1,0,0,1 },    // 3
                          { 0,1,1,0,0,1,1 },    // 4
                          { 1,0,1,1,0,1,1 },    // 5
                          { 1,0,1,1,1,1,1 },    // 6
                          { 1,1,1,0,0,0,0 },    // 7
                          { 1,1,1,1,1,1,1 },    // 8
                          { 1,1,1,0,0,1,1 }};   // 9
                                       
//function header
void Num_Write(int);

void setup() 
{ 
  // set pin modes
  pinMode(2, OUTPUT);   
  pinMode(3, OUTPUT);
  pinMode(4, OUTPUT);
  pinMode(5, OUTPUT);
  pinMode(6, OUTPUT);
  pinMode(7, OUTPUT);
  pinMode(8, OUTPUT);
  
 
}

void loop() 
{
  
  //counter loop
  
  for (int counter = 10; counter > 0; --counter) 
  {
   delay(1000);
   Num_Write(counter-1); 
  }
  delay(3000);
}

// this functions writes values to the sev seg pins  
void Num_Write(int number) 
{
  int pin= 2;
  for (int j=0; j < 7; j++) {
   digitalWrite(pin, num_array[number][j]);
   pin++;
  }

Resources

Shipping List

  • 1 x 7 Segment Display - Red 5.9inch Common Cathode


7 Segment Display - Red 5.9inch Common Cathode

  • Brand: Generic
  • Product Code: 40101BS
  • Weight: 0.131kg
  • Product Status : Active
  • Stock

    Warehouse Stock Status Location
    Centurion No Stock
    Stellenbosch No Stock
    Bulk Location No Stock

    We ship free of charge between branches to complete your order.

  • R108.00 (Inc Tax: R124.20)


Related Products

7 Segment Display - RGB 2.5"

7 Segment Display - RGB 2.5"

7 Segment RGB 2.5" Inside each segment is 3 red/green/blue LEDs, for 21 LEDs total. The anodes are all connected together and then there are 21 cathodes to control. Unfortunately, that means you'll n..

Centurion (In Stock)
Stellenbosch (In Stock)
Bulk Location (No Stock)
Part No: AF1399
Product Status : Active

R289.00 (Inc Tax: R332.35)

7 Segment Display 0.56" Common Cathode - Red

7 Segment Display 0.56" Common Cathode - Red

7 Segment Display 0.56" Common Cathode - Red If your looking for digital indicators and numeric displays, for your project, these 7 segment displays will be able to get the job done. Quick Spec ..

Centurion (No Stock)
Stellenbosch (No Stock)
Part No: 7SEG-056-RED
Product Status : Active

R9.00 (Inc Tax: R10.35)

Tags: seven segment, 7 segment, 7, seg, display, led, common, cathode, red, 5.9 inch, 5.9", 5 inch, 5", 12v