# Title: 7-Seg RGB Click Board™ ## Description: Display Features Each segment has R, G, B LEDs that can be adjusted in 255 steps and therefore 16,581,375 colour combinations are available for each segment of the digit on the display. Also, the ability to control the brightness of all the LED's is driven at 255 steps. It should be noted that brightness values above 80 should rarely be used. Specifications Type 7-segment, LED Segment Applications Displaying digits and letters on a seven-segment in full colour On-board modules RGBdigit full-colour single 7 Segment digit display Key Features Multi-coloured display Interface PWM Compatibility mikroBUS Click board size L (57.15 x 25.4 mm) Input Voltage 3.3V or 5V Pinout Diagram This table shows how the pinout on the 7-SEG RGB Click Board™ corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns). Notes Pin Pin Notes NC 1 AN PWM 16 PWM Data input NC 2 RST INT 15 NC Write enable (active low) CS 3 CS TX 14 NC NC 4 SCK RX 13 NC NC 5 MISO SCL 12 NC NC 6 MOSI SDA 11 NC Power supply +3.3V 7 3.3V 5V 10 +5V Power supply Ground GND 8 GND GND 9 GND Ground Jumpers and settings Designator Name Default Position Default Option Description JP1 Logic level Left 3.3V Data in level Voltage Selection 3V3/5V, left position 3V3, right position 5V ## Product type: Click Board ## Vendor: Mikroelektronika d.o.o. ## Tags: Click Board, Display, Display Interface, Elektor, LED Segment, MikroE ## Price range: 36.4 - 36.4 GBP ## Link: https://thedebugstore.com/products/mikroe-2734-7-seg-rgb-click-board-uk ## Compare-at price range: 52.0 - 52.0 GBP ## Options - Title: Default Title ## Collections - [New Products](https://thedebugstore.com/a/llms/collections/new-products-debug-store) - [Mikroelektronika d.o.o. (MikroE)](https://thedebugstore.com/a/llms/collections/mikroelektronika-catalogue-uk) - [Display & Interface Click Boards™](https://thedebugstore.com/a/llms/collections/display-interface-click-boards-catalogue) - [MikroE Click Boards™](https://thedebugstore.com/a/llms/collections/mikroe-click-boards-catalogue-uk) - [Displays](https://thedebugstore.com/a/llms/collections/displays-catalogue-uk) - [Boards](https://thedebugstore.com/a/llms/collections/circuit-boards-catalogue) - [LED Segments Click Boards™](https://thedebugstore.com/a/llms/collections/led-segment-click-boards-catalogue) - [Click Boards™ Summer Sale](https://thedebugstore.com/a/llms/collections/inventory-sale) - [Elektor Device Support: Development Boards and Tools | Debug Store](https://thedebugstore.com/a/llms/collections/elektor-device-support) - [MikroE Sale](https://thedebugstore.com/a/llms/collections/mikroe-sale) - [MIKROE Stock](https://thedebugstore.com/a/llms/collections/mikroe-products-in-stock-sale) ## Variants - Default Title, SKU: MIKROE-2734, Available: yes, Inventory: 1 ## Metafields - full_description:

Each segment has R, G, B LEDs that can be adjusted in 255 steps and therefore 16,581,375 colour combinations are available for each segment of the digit on the display.
Also, the ability to control the brightness of all the LED's is driven at 255 steps. It should be noted that brightness values above 80 should rarely be used.
| Type | 7-segment, LED Segment |
| Applications | Displaying digits and letters on a seven-segment in full colour |
| On-board modules | RGBdigit full-colour single 7 Segment digit display |
| Key Features | Multi-coloured display |
| Interface | PWM |
| Compatibility | mikroBUS |
| Click board size | L (57.15 x 25.4 mm) |
| Input Voltage | 3.3V or 5V |
This table shows how the pinout on the 7-SEG RGB Click Board™ corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
| Notes | Pin | ![]() |
Pin | Notes | |||
|---|---|---|---|---|---|---|---|
| NC | 1 | AN | PWM | 16 | PWM | Data input | |
| NC | 2 | RST | INT | 15 | NC | ||
| Write enable (active low) | CS | 3 | CS | TX | 14 | NC | |
| NC | 4 | SCK | RX | 13 | NC | ||
| NC | 5 | MISO | SCL | 12 | NC | ||
| NC | 6 | MOSI | SDA | 11 | NC | ||
| Power supply | +3.3V | 7 | 3.3V | 5V | 10 | +5V | Power supply |
| Ground | GND | 8 | GND | GND | 9 | GND | Ground |
| Designator | Name | Default Position | Default Option | Description |
|---|---|---|---|---|
| JP1 | Logic level | Left | 3.3V | Data in level Voltage Selection 3V3/5V, left position 3V3, right position 5V |
The 7-SEG RGB Click Board™ houses a full-colour single 7 segment digit display. The Click is designed to run on either 3.3V or 5V power supply. It communicates with the target microcontroller over the CS, and PWM pin on the mikroBUSline.
The Click can be connected in a chain, in order to display a larger number of characters. Unlike with conventional 7 segment displays, you will be able to use multiple colours on the display.
.
Each segment has R, G, B LEDs that can be adjusted in 255 steps and therefore 16,581,375 colour combinations are available for each segment of the digit on the display.
Also, the ability to control the brightness of all the LED's is driven at 255 steps. It should be noted that the brightness values above 80 should rarely be used.
- amazon_main_image: https://www.thedebugstore.com/images/product/lg-7-seg-rgb-click-board.jpg - amazon_browse_node: 428655031 - related_products: MIKROE-2758,MIKROE-4331,MIKROE-1851 - mpn: MIKROE-2734 - backorder_label: If no stock shown above, check availability - google_product_category: 2082 - examples:Code examples for the 7-SEG RGB Click Board™, written for MikroElektronika hardware and compilers are available on Libstock.
The following code snippet writes the numbers 1, 2 and 3 in green, red and blue colours on the 7-SEG RGB Click Board™.
01 #define ONE 0x06
02 #define TWO 0x5B
03 #define THREE 0x4F
04 sbit CS_BIT at GPIOD_ODR.B13;
05 sbit RGB_CONTROL_BIT at GPIOA_ODR.B0;
06 void systemInit()
07 {
08 GPIO_Digital_Output( &GPIOD_BASE, _GPIO_PINMASK_13 );
09 GPIO_Digital_Output( &GPIOA_BASE, _GPIO_PINMASK_0 );
10 }
11 void RGB_7_SEG_Init()
12 {
13 RGB_CONTROL_BIT = 0;
14 CS_BIT = 0;
15 }
16 void RGB_7_SEG_Task()
17 {
18 setSevenSegment(ONE,40,0,0);
19 Delay_ms(1000);
20 setSevenSegment(TWO,0,40,0);
21 Delay_ms(1000);
22 setSevenSegment(THREE,0,0,40);
23 Delay_ms(1000);
24 }
25 void main()
26 {
27 systemInit();
28 RGB_7_SEG_Init();
29 while( 1 )
30 {
31 RGB_7_SEG_Task();
32 }
The 7-Seg RGB Click Board™ carries a full-colour single 7-segment digit display. The click is designed to run on a 3.3V or 5V power supply. It communicates with the target microcontroller over the CS, and PWM pin on the mikroBUS™ line.
The 7-Seg RGB Click Board™ can be connected in a chain, in order to display a larger number of characters. Unlike conventional 7-segment displays, you will be able to use multiple colours on the display.