3 digit 7-Segment module 2.3 inch Serial Data Display with TM1650 and Arduino Uno MCU
- Description
- Shipping
- Additional information
- Brand
- Reviews (0)
- Vendor Info
- More Products
- Warranty Policy
- Product Enquiry
Description
with this new 3 Digit 2.3 inch 7 segments Serial like protocol Display module using TM1650 as a custom 7segment controller Data save the required IO pins needed to drive all this number of pins and will display large size 7 segment 3 digit numbers. 2.3 Inch height, which can be visible over large distance.
Features:
- Supply 12V DC For Display
- Inputs data TTL signals just 3 pins (Data,Clock,Strope)
- very easy to control it using Arduino or any other microcontroller(Sample code available or request).
- extra Free GPIO brought on the PCB edge to connect them to Sensors , other hardware or external micrcontroller upon your application needs.
- simple arduino lib to control it with just 1 line of code .
easy control by any micro-controller suitable for you or you can use the builtin ATMEGA328 chip and program it with Arduino IDE. useful circuit to make Timer, stop watch, Score Board, Token No, Vehicle counter at parking and many other applications.
Arduino Sample Code:
/*
Basic program to test this module just to send the number you need to display via the Serial Monitor in
this format 123$ whre 123$ is the number you need to show , and it will blink this number 3 times
written by Technical taem @ UGE-ONE.COM
*/
#include <TM1650.h>
#include <TM16xxDisplay.h>
#define SHOW_BLANK ‘ ‘
TM1650 module(12, 13); // DIN=12, CLK=13
TM16xxDisplay display(&module, 3); // TM16xx object, 8 digits
word va=0;
char addres,k;
char numberToShow [3] = { ‘-‘, ‘-‘, ‘-‘ };
int nCount=0;
byte val=0;
void setup() {
Serial.begin(9600);
delay(100);
module.setDisplayToString(numberToShow);
module.setupDisplay(true, 7);
}
void loop() {
if (Serial.available() > 1) {
va = Serial.parseInt();
addres=Serial.read();
if (addres == ‘$’) {
if((va/100)%10>0) numberToShow [2]=((va/100)%10)+48; else numberToShow [2] = SHOW_BLANK ;
if((va/10)%10>0 || (va/100)%10>0) numberToShow [1]=((va/10)%10)+48; else numberToShow [1] = SHOW_BLANK ;
numberToShow [0]=va%10+48;
for(k=0;k<3;k++){
module.setDisplayToString(” “);
delay(500);
module.setDisplayToString(numberToShow);
delay(500);
}
}
}
}
Additional information
Weight | 0.18 kg |
---|---|
Microcontroller Type | NO Microcontroller Needed, With ATMEGA8 (minicore bootloader), With ATMEGA328(uno bootloader) |
You must be logged in to post a review.
Vendor Information
- Store Name: UGE Electronics
- Vendor: UGE Electronics
-
Address:
28 Mahmoud Hasan St., - behind CIB Bank From Merghany St., - Near Girls College Metro Station Heliopolis, Cairo
Cairo
Cairo
11413 - No ratings found yet!
Refund Policy for UGE Electronics “Https://uge-one.com “
1. Returns and Refunds
Thank you for shopping at UGE Electronics “Https://uge-one.com “. If you are not entirely satisfied with your purchase, we’re here to help.
2. Eligibility for Refund
To be eligible for a refund, please make sure that:
– The item was purchased in the last 14 days.
– The item is in the original packaging.
– The item isn’t used or damaged.
3. How to Initiate a Refund
To initiate a refund, please contact our customer support at [Refund@uge-one.com] or [01007607155]. Provide your order number and details about the product you would like to return.
4. Refund Processing Time
Once we receive your item, we will inspect it and notify you that we have received your returned item. We will immediately notify you on the status of your refund after inspecting the item.
If your return is approved, we will initiate a refund to your credit card (or original method of payment). You will receive the credit within a certain amount of days, depending on your card issuer’s policies.
5. Shipping Costs
Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.
6. Exchanges
If you wish to exchange an item, please contact our customer support. You will be responsible for the return shipping costs, and we will cover the shipping costs of the replacement item.
7. Damaged or Defective Items
If you received a damaged or defective product, please contact us immediately for assistance. We will work with you to resolve the issue promptly.
8. Contact Information
If you have any questions about our Refund Policy, please contact us at [Refund@uge-one.com].
Important Note: This Return & Refund Policy is applied only for Orders invoiced VIA UGE Electronics, and regarding any Orders has been invoiced VIA any Other Vendor you can check the Return & Refund Policy of this Vendor VIA the Vendor Stroe Page, and it’s not our responsibility for any issue between you and the Vendor.
Reviews
There are no reviews yet.