Цифровые часы на rtc ds12c887 и 8051

Digital Clock using 8051 Microcontroller

In this project, we are going to demonstrate making a RTC Clock using 8051 microcontroller.  If you would like to do this project with Arduino, check this digital clock using Arduino. The major component of this project is DS1307 which is a real time digital clock IC. Lets know about this IC in detail. 

RTC DS1307:

The DS1307 serial real-time clock (RTC) is a low-power, full binary-coded decimal (BCD) clock/calendar plus 56 bytes of NV SRAM. This chip works on I²C protocol. The clock/calendar provides seconds, minutes, hours, day, date, month, and year information.

The end of the month date is automatically adjusted for months with fewer than 31 days, including corrections for leap year. The clock operates in either the 24-hour or 12-hour format with AM/PM indicator. The DS1307 has a built-in power-sense circuit that detects power failures and automatically switches to the backup supply.

Timekeeping operation continues while the part operates from the backup supply. DS1307 chip can continuously run till 10 year.

8051 based Real time clock is a digital clock to display real time using a RTC DS1307, which works on I2C protocol. Real time clock means it runs even after power failure.

When power is reconnected, it displays the real time irrespective to the time and duration it was in off state. In this project we have used a 16×2 LCD module to display the time in – (hour, minute, seconds, date, month and year) format.

Real time clocks are commonly used in our computers, houses, offices and electronics device for keeping them updated with real time.

I2C protocol is a method to connect two or more devices using two wires to a single system, and so this protocol is also called as two wire protocol. It can be used to communicate 127 devices to a single device or processor. Most of I2C devices run on 100Khz frequency.

Steps for data write master to slave (slave receiving mode)

  1. Sends START condition to slave.
  2. Sends slave address to slave.
  3. Send write bit (0) to slave.
  4. Received ACK bit from slave
  5. Sends words address to slave.
  6. Received ACK bit from slave
  7. Sends data to slave.
  8. Received ACK bit from slave.
  9. And last sends STOP condition to slave.

Steps for data reading from slave to master (slave transmitting mode)

  1. Sends START condition to slave.
  2. Sends slave address to slave.
  3. Send read bit (1) to slave.
  4. Received ACK bit from slave
  5. Received data from slave
  6. Received ACK bit from slave.
  7. Sends  STOP condition to slave.

Circuit Diagram and Description

In circuit we have used 3 most components DS1307, AT89S52 and LCD. Here AT89S52 is used for reading time from DS1307 and display it on 16×2 LCD screen. DS1307 sends time/date using 2 lines to the microcontroller.

Circuit connections are simple to understand and shown in the above diagram. DS1307 chip pin SDA and SCL are connected to P2.1 and P2.0 pins of 89S52 microcontroller with pull up resistor that holds default value HIGH at data and clock lines. And a 32.

768KHz crystal oscillator is connected with DS1307chip for generating exact 1 second delay. And a 3 volt battery is also connected to pin 3rd (BAT) of DS1307 which keeps time running after electricity failure. 16×2 LCD is connected with 8051 in 4-bit mode. Control pin RS, RW and En are directly connected to 89S52 pin P1.

0, GND and P1.1. And data pin D0-D7 is connected to P1.4-P1.7 of 89S52.

Three buttons namely SET, INC/CHANGE and Next are used for setting clock time to pin P2.4, P2.3 and P2.2 of 89S52 (active low). When we press SET, time set mode activates and now we need to set time by using INC/CHANGE button and Next button is used for moving to digit. After setting time clock runs continuously.

Program Description

In code we have included 8051 family library and a standard input output library. And defined pins that we have used, and taken some variable for calculations.

#include
#include
#define lcdport P1 sbit rs=P1^0;
sbit en=P1^1; sbit SDA=P2^1; sbit SCL=P2^0; sbit next=P2^2; //increment digit
sbit inc=P2^3; //increment value
sbit set=P2^4; //set time char ack;
unsigned char day1=1;
unsigned char k,x;
unsigned int date=1, mon=1, hour=0, min=0, sec=0;
int year=0; void delay(int itime)
{ int i,j; for(i=0;i

Источник: https://circuitdigest.com/microcontroller-projects/digital-clock-using-8051-microcontroller

Digital Clock Circuit using 8051 Microcontroller and DS12C887

Digital clock displays the time using numbers. This circuit is used in many applications like cars, railway stations, houses, offices, etc. in order to provide accurate time and date.

In this type of applications, normally we use RTC (Real Time Clock) ICs to display the time and date accurately. This circuit displays the time on LCD. For this clock, we can set the time at any instant.

Here the clock works in 24 hour mode and the RTC chip is configured by programming 8051 controller.

Circuit Principle:

Here 8051 controller continuously reads the data from Real time clock and process it in correct order to display the time on LCD. INT1 of the 8051 controller is used to set the time to the digital clock. If you make P3.

3 pin LOW then interrupt arises and set_time function is called to set the time. To set the time to the clock use P1.4 and P1.5 pins. P1.4 is used to vary the hours and P1.5 is used to vary the minutes. After setting the time make P1.

6 high to run the clock with the time set by user.

Related Post: [Digital Stopwatch Circuit]

Circuit Diagram:

Circuit Diagram of Digital Clock using RTC DS12C887 and 8051 Microcontroller

Circuit Components:

  • 8051 microcontroller
  • Project PCB
  • Programming cable
  • DC Battery or 12V, 1A adaptor
  • DS12C887 RTC IC
  • 16*2 alphanumeric LCD
  • Push buttons – 4
  • Slide switches – 3
  • 2 ceramic capacitors – 33pF
  • 12 MHz crystal
  • Electrolytic capacitor – 10uF, 16V
  • Resistor (1/4 watt) – 10k
  • Pot – 10k
  • 5V DC power supply circuit
  • Single pin connecting wires

Circuit Design:

The circuit shows you how interface RTC IC to the 8051 controller. Port P0 is used as a data port of Real time clock.  Port P2 of controller is connected to the data pins of LCD. Pins P1.1, P1.2 and P1.3 of controller are connected to the RS, RW, EN pins respectively.

P1.0 is connected to the RESET of RTC. Push buttons are connected to the P1.4 and P1.5. These are used set the time. P1.6 is configured as START pin used to run the clock with time set by the user. P3.3 is connected to the push button used to call the set_time function.

DS12C887 Real Time Clock:

This IC is used most of the applications to provide accurate time and date. This IC provides the time in both 12 hour mode and 24 hour mode. This IC also provides calendar components day, month and year.

This RTC uses internal lithium battery to keep the time and date updated when power is failed. This IC has 128 bytes of RAM memory. In these 128 bytes of RAM 14 bytes are used for time, date and registers.

Remaining 114 bytes are used to store general purpose data.

The control registers of RTC are accessible only when the power is applied from external source. This IC requires more than 4.25V power supply and the control registers are accessible after 200ms when external power is supplied.

DS12C887 IC

Pin Description:

  • MOT: It is a bus type selection pin used to select between Intel and Motorolabus types. This pin is connected to VCC to select Motorola bus type and connected to GND or unconnected to select Intel bus type.
  • 2, 3: Unused pins
  • 4 – 11 (AD0 – AD7): These pins are bidirectional address and data lines of RTC. On these pins address is present in the first portion of cycle and data is present in the second portion of bus cycle.
  • 12 (GND): This pin is connected to Ground.
  • 13 (CS): This pin must be low to access the chip during read and write operations.
  • 14 (AS): The high pulse on this pin is used to demultiplex the data and address.
  • 15 (R/W): This pin is used for read or writes operations.
  • 16: Unused pin
  • 17 (DS): This is a Data Strobe pin.
  • 18 (RESET): The low pulse on this pin resets all the flags and interrupts but it does not affects time and date.
  • 19 (IRQ): Thisis active low pin used as an interrupt input to the controller.
  • 20 – 22: Unused pins
  • 23 (SQW): Used to generate square wave with predefined frequencies
  • 24 (VCC): This pin is connected 5V supply

RTC Address Map:

This RTC has 128 bytes of RAM with addresses 00H – 07H. The first ten locations (00 – 09) are used for clock, calendar and alarm data. 0A – 0D address locations are used for status and control registers. Remaining address locations are used to for general data. The following table shows the address locations for clock, calendar and alarm.

Address Locations for Time, Date and Alarm

This IC has 4 control and status registers namely register A, register B, Register C, register D. We need to configure all these registers to get the accurate time and date. In order to configure these registers go through the DS12C887 Datasheet

How to Operate?

  1. Initially burn the program to the 8051 microcontroller
  2. Now give the connections as per the circuit diagram
  3. Switch on the board supply
  4. Now you can observe the time on LCD.

    If you want to set the time make the start pin low and press the push button connected to the P3.3

  5. LCD shows set time message. Now use push button which is connected to P1.4 to set hours and use other push button to set minutes.

  6. Now make start pin high to run the clock.

Circuit Applications:

  • This project is used in offices, houses, hotels and auto mobiles to display the time and date.
  • We can also set the alarm in this project with a little modification.

Download Project Code

Источник: https://www.electronicshub.org/digital-clock-circuit-using-8051-and-ds12c887/

Набор для самостоятельной сборки матричных часов на DS3231

  • Магазины Китая
  • BANGGOOD.COM
  • Часы и таймеры
  • Сделано руками
  • Пункт №18

Приветствую! Представляю обзор отличного DIY набора для сборки часов на светодиодных матрицах.

Основой для них служит RTC DS3231 и китайский микроконтроллер stc15w1k24s. Набор очень качественный, собирается легко и приятно, итог выглядит отлично. Подробности, фото и видео далее.

Ну, поехали!

Ссылка на мануал

Набор приехал защищенный от трудностей и опасностей почтовой доставки.Убираем, смотрим дальше.Теперь познакомимся с содержимым поближе. Содержимое пакетаКорпус — две пластины акрила, защищенный от царапин пленкой.МатрицыСлегка гнутые ноги, но ничего страшного, металл мягкий — выпрямляется легко

Судя по информации с али в данном наборе матрицы с общим анодом.

«3117A (общий катод) 3117B (общий анод) „ Кабель USB-miniUSB, обычный. Длина около метра.Плата. Текстолитовая, двусторонняя, с маской, переходными отверстиями. Отличного качества.Детальё и болты с гайкамиПанелька для литиевой батарейки CR1220. Выбор такого непопулярного размера обусловлен небольшим размером самих часов.Контроллер STC 15w1k24s, инфы практически нет, единственное упоминание на паяльнике что это китайский аналог AVR контроллеров.

DS3231 Сверхточные RTC со встроенными I2C интерфейсом, TCXO и резонатором с температурной компенсацией. Крутая микруха))

Упакованы обе микросхемы вот в такой блистер. Очень жесткий кстати, попортить содержимое весьма сложно.Болтики, гайкиРтутный выключатель (датчик наклона)КонденсаторыПара транзисторов 9012, стабилизатор AMS1117 3.3v, smd конденсаторы (0.1uF) и резисторы (10K), кнопки и разъем.И пищалкаНачнем собирать. Собирать решил как в мануале. Сначала разъем.

В этот раз я решил паять с недорогой флюс-пастой, проверить на SMD и микросхемах. Паста вот такаяПаять очень удобно, паста годная несмотря на то что дешевая.

Не реклама))) Намазал площадки на платеЗалудил ноги разъемаПоставил на платуЗапаялТеперь контроллерМажемПозиционируемПрижимаемПрихватываем крайние ноги, чтоб не уползЗапаиваем все остальноеТеперь DS3231Стабилизатор AMS1117 3.3vТеперь конденсаторы.Т.к. ноги большей частью находятся под кондерами, то я решил нанести на них припой, дабы припаять по всей длине.

Теперь SMDНа данном этапе хорошо бы запаять все остальные SMD элементы, но я затупил и пропустил их. В общем сейчас надо паять транзистор, иначе потом будет неудобно. Панелька.МажемПаяемКнопки. Вообще кнопки желательно паять после мытья всей платы. Но запаяю сейчас, потом мыть буду аккуратнее.Пищалка Вставляем. Не забываем полярностьЗапаиваем.

Откусываем ноги, а то матрицы потом не станут.Вспомнил про транзистор))Теперь датчик наклонаОткусываемПрипаиваемРезисторыУдерживаю пинцетом запаиваю у всех одну сторонуПотом быстро с проволочкой вторуюБерем матрицыВставляем маркировкой вверхПереворачиваемБерем проволоку припоя и не напрягаясь запаиваем. Плату во время пайки прижимаем к матрицам.

ВсеВключаемВсе работает. Цифры такие из-за короткой выдержки.Осталось два резистора, транзистор и конденсатор. Так что можно во время сборки немного потерять))Собрал не торопясь часа за полтора. Собирать приятно, проблем не выявлено. Все отмыл.

Немного фото.

Теперь соберем “корпус»Ах да, нужно же еще вставить батарейку. CR1220 найти оказалось проблематично, так что вставил 1216 — контачит нормально.В рабочем состоянииФото с большими матричными часамиНу и видео-демонстрация. Видео без звука — на фоне периодически что-то кричали дети, а музыку накладывать не стал.Итог: очень качественный и классный набор. Собирать не сложно и приятно. В итоге получаются красивые и интересные часы. Несколько режимов бегущей строки и разделительной точки. Будильник и календарь. Температура (из DS3231). Возможность ставить с ног на голову и наоборот)). Возможность запаять питание напрямую, без использования miniUSB. Есть еще чисто китайские фишки — указание китайских праздников, рождества, нового года и еще каких-то. Из недостатков неравномерная яркость, заметно только вблизи. Неизвестный китайский контроллер и отсутствие возможности редактировать прошивку. В остальном просто отличный набор, рекомендую!

Источник: https://mysku.me/blog/china-stores/42282.html

8051 Microcontroller Pin Diagram Description Pdf Digital Clock using RTC DS12C887 and 8051 Microcontroller. … It is a bus type. home appliances controle system, Automatic room light controller, 8051 Coding in c, … Interfacing LED Dot Matrix with 8051 Microcontroller ..

  • 8051 Microcontroller Pin Diagram Description Pdf Now let us see the architecture and block diagram of 8051 microcontroller block diagram description, 8051 microcontroller block diagram with description pdf. Microcontroller AT89S52 is used to control all the Functions, it get the time through the Bell is switched on for a predetermined time. BLOCK DIAGRAM. 8051.8051 microcontroller – Tutorial on internal architecture, 8051 pin diagram need of any detailed explanation to understand internal architecture of 8051 micro. GENERAL DESCRIPTION 8051 Pin and Instruction Set Compatible of this device: this data sheet and the High-Speed Microcontroller Block Diagram. Circuit diagram,theory and program. Many guys find it hard to interface LCD module with the 8051 but the fact is that if you learn it P1.0 to P1.7 pins of the microcontroller is connected to the DB0 to DB7 pins of the Nice explanation… Pin Diagram of 8253 Schematic block diagram of Intel 8253 timer/counter RD (Read) When this pin is Instruction Set and Programming of 8051 Microcontroller.8051 Microcontroller Pin Diagram Description Pdf >>>CLICK HERE
  • chip.The 8085 Bus structure block diagram, Explanation of Address bus, Data bus, Control bus, RD Block diagram of 8051 Microcontroller, over view of 8051 family. Schematic diagram(pdf)(gif) of Easy-Downloader V2.0 with minor a freely distributed AT89S51 programmer, ISP Flash Microcontroller Programmer Ver 3.0a. ROM, Schematic diagram(pdf) of a W78C438B- based 8051 in-circuit-debugger. 1 Digital Clock Circuit Diagram using 8051 Microcontroller and DS12C887: 1.1 Digital Clock Circuit Diagram of Digital Clock using RTC DS12C887 and 8051 Microcontroller. Circuit Components: Pin Description: MOT: It is a bus type. home appliances controle system, Automatic room light controller, 8051 Coding in c, Block diagram of the system Sanzhar Askaruly Nazarbayev University, School Brief description and originality The main functionality of this system is the information and serves as input signal (bits 0 or 1) for microcontroller (Atmel). 5X7 Led Matrix Display. Vatsal N Shah · Vatsal N Shah · Indus University. Remove suggestion. Full- text. DOI: · Available from: Vatsal N Shah, Feb 01, 2015. Description. IRMCF143 is a high Embedded 8-bit high speed microcontroller (8051) for flexible I/O and IRMCF143 Block Diagram and Main Functions. Available in Pb-free 56-pin QFN package (26 GPIOs). □ Two more enhanced 8051 microcontroller, and a programmable peripheral Logic Block Diagram.Microcontroller based Home Automation proposes for the hardware implementation for control of electronic gadgets. 8051 Microcontroller Pin configuration.
  • 4/10/13 ATMEL 89C51 / AT89C51 Microcontroller Pin Diagram & Description AT89C51.pdf AT89C51 is an 8-bit microcontroller and belongs to Atmel's 8051 family. Pin Diagram of 8085.PDF Imp. PIN DIAGRAM OF 8085 GURSHARAN.Difference between Microprocessor & Microcontroller INTRODUCTION TO 8051 MICROCONTROLLER Block diagram description of AT89C51.Pin Description of the 8051 8051 family members (e.g., 8751 , 89C51 , 89C52, DS89C4x0) Have 40 Pin Diagram of the 8051 8051 Microcontroller Suresh.Schematic of an electrical resistance block and meter. Figure 2.16 Atmega 328 microcontroller pin configuration. YL-69 sensor value description. microcontroller families including: 8051, PIC (Programmable Interface Controller). right and no medical attention is required. II. SYSTEM DESCRIPTION. The block diagram of the system is given in Fig.: 1. The main component of the system. .com/manuals/8/8051-microcontroller-by-mazidi-basic-block- diagram.pdf.com/manuals/8/8086-microprocessor-pin-diagram- description.pdf 2015-03-14. CHAPTER 3: THE 8051 MICROCONTROLLER. Table 3.1 Microcontroller PIN Description. Figure 3.2 Circuit Diagram of the Microcontroller-RFID Setup.ii) Draw the pin diagram of 20 × 4 LCD display.what is the function of RS,EN and R/W pins. Ans) (Diagram 1 mark, iv) Draw and explain reset circuit used for 8051 microcontroller. Ans) (Diagram 1 mark ,Explanation 3 mark). Diagram:. Learn to interface 8051 microcontroller with ADC0804 analog to digital converter ADC0804 Pin Diagram So looking into the timing diagram FIGURE 10A. Description (active tab), Circuit Diagram, Circuit Diagram 2, Source Code. Description Interfacing LED Dot Matrix with 8051 Microcontroller, Components Used.
  • >>>CLICK HERE

Источник: https://documents.tips/documents/8051-microcontroller-pin-diagram-description-pdf-digital-clock-using-rtc-ds12c887.html

Digital Clock Using 8051 – Electronics Maker

Download (PDF, 193KB)

A digital clock keeps track of the time and uses RTC(real Time Clock).The time is displayed on the LCD, which is connected to Port 2.The RTC used is DS12887 and the controller used is 89v51RD2.Three switches acts as a input for seconds, minutes and hours.

The above circuit is build on proteus and crystal frequency has been internally set. The connection of the RTC DS12C887 with the microcontroller is shown in the circuit diagram.It uses update interrupt to keep the track of the time. Every time the update interrupt comes, the clock is incremented by one second. The output is displayed on the LCD.

The clock uses external interrupt 2 of the microcontroller AT89C51 for setting the time. A user can set time by pressing the switch connected to pin 13 of the microcontroller, which is interrupt 2. The hour and minutes can be set using pin 5 and pin 6 of the controller AT89C51 respectively.

Once the time is set, the user needs to press the start pin (pin 8 of controller) to start the clock.

The component used are 8051

The main features of 8051 microcontroller are: i. RAM – 128 Bytes (Data memory) ii. ROM – 4Kbytes (ROM signify the on – chip program space) iii. Serial Port – Using UART makes it simpler to interface for serial communication. iv.

Two 16 bit Timer/ Counter v. Input/output Pins – 4 Ports of 8 bits each on a single chip. vi. 6 Interrupt Sources vii. 8 – bit ALU (Arithmetic Logic Unit) viii.

Harvard Memory Architecture – It has 16 bit Address bus (each of RAM and ROM) and 8 bit Data Bus.

ix. 8051 can execute 1 million one-cycle instructions per second with a clock frequency of 12MHz.

DS12887 RTC

The real-time clock (RTC) is a widely used device that provides accurate time and date for many applications. It provides time components of hour, minute, and second, in addition to the date/calendar components of year, month, and day.

The RTC chip uses an internal battery, which keeps the time and date even when the power is off. One of the most widely used RTC chips is the DS 12887 from Dallas Semiconductor/Maxim Corp. The DS 12887 supports both 12-hour and 24-hour clock modes with AM and PM in the 12-hour mode.

It also supports the Daylight Savings Time option. The DS 12887 uses CMOS technology to keep the power consumption low and it has the designation DS12C887, where C is for CMOS. The DS12887 has a total of 128 bytes of nonvolatile RAM.

It uses 14 bytes of RAM for clock/calendar and control registers, and the other 114 bytes of RAM are for general-purpose data storage. Pins of DS12887

Vcc

Pin 24 provides external supply voltage to the chip. The external voltage source is +5V. When VC9 falls below the 3V level, the external source is switched off and the internal lithium battery provides power to the RTC.

GND

Pin 12 is the ground.

ADO-AD7

The multiplexed address/data pins provide both addresses and data to the chip. Addresses are latched into the DS 12887 on the falling edge of the AS (ALE) signal. ADO – AD7 of the DS 12887 are connected directly to the 8051 and there is no need for any 74xx373 latches, since the DS 12887 provides the latch internally.

AS (ALE)

AS (address strobe) is an input pin. On the falling edge it will cause the addresses to be latched into the DS 12887. The AS pin is used for demultiplexing the address and data and is connected to the ALE pin of the 8051 chip.

MOT

This is an input pin that allows the choice between the Motorola and Intel microcontroller bus timings. The MOT pin is connected to GND for the Intel timing. That means when we connect DS 12887 the 8051, MOT = GND.

DS

Data strobe or read is an input. When MOT = GND for Intel timing, the DS pin is called the RD (read) signal and is connected to the RD pin of the 8051.

R/W

Read/Write is an input pin. When MOT = GND for the Intel timing, the R/W pin is called the WR (write) signal and is connected to the WR pin of the 8051.

CS

Chip select is an input pin and an active low signal. During the read (RD) and write (WR) cycle time of Intel timing, the CS must be low in order to access the chip. It must be noted that the CS works only when the external Vcc is connected. In other words “when Vcc falls below 4.25V, the chip-select input is internally forced to an inactive level regardless of the value of CS at the input pin.” This is called the write-protected state. When the DS 12887 is in write-protected state, all inputs are ignored.

IRQ

Interrupt request is an output pin and active low signal. To use IRQ, the interrupt-enable bits in register B must be set high.

SQW

Square wave is an output pin. We can program the DS 12887 to provide up to 15 different square waves. The frequency of the square wave is set by programming register A RESET

Pin 18 is the reset pin. It is an input and is active low (normally high). In most applications the reset pin is connected to the Vcc pin. In applications where this pin is used, it has no effect on the clock, calendar, or RAM if it is forced low. The low on this pin will cause the reset of the IRQ and clearing of the SQW pin.

Address map of the DS12887

The DS12887 has a total of 128 bytes of RAM space with addresses 00 -7FH. The first ten locations, 00 – 09, are set aside for RTC values of time, calendar, and alarm data. The next four bytes are used for the control and status registers.

They are registers A, B, C, and D and are located at addresses 10-13 (OA – OD in hex). Notice that their hex addresses match their names. The next 114 bytes from addresses OEH to 7FH are available for data storage.

The entire 128 bytes of RAM are accessible directly for read or write except the following: 1) Registers C and D are read-only. 2) D7 bit of register A is read-only.

3) The high-order bit of the seconds byte is read-only.

Источник: http://electronicsmaker.com/em/admin/pdf/free/digital-clock.pdf

Home » Download Area » digital-clock-with-rtc-ds12c887-8051-microcontroller-project

Digital Clock With Rtc Ds12c887 8051 Microcontroller Project

Full Download Digital Clock With Rtc Ds12c887 8051 Microcontroller Project Games With Gameplay Walkthrough Full Guide And Tutorial Video HD. Download Digital Clock With Rtc Ds12c887 8051 Microcontroller Project Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Digital Clock With Rtc Ds12c887 8051 Microcontroller Project Cheat Files And Full List Command if Needed

[Download] Digital Clock With RTC DS12C887 8051 Microcontroller Project

Full Download Digital Clock With RTC DS12C887 8051 Microcontroller Project VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock With RTC DS12C887 8051 Microcontroller Project Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download LCD Based Digital Clock With 8051 Microcontroller RTC DS12C887 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download LCD Based Digital Clock With 8051 Microcontroller RTC DS12C887 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock With RTC DS12C887 8051 Microcontroller Project VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock With RTC DS12C887 8051 Microcontroller Project Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock With 8051 Microcontroller Project VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock With 8051 Microcontroller Project Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Using RTC DS1307 8051 With UART Control VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Using RTC DS1307 8051 With UART Control Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Real Time Clock With Alarm Using 8051 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Real Time Clock With Alarm Using 8051 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Www Booknstuff Com Wmv VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Www Booknstuff Com Wmv Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock With 8051 Microcontroller AT89C51 DS12C887 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock With 8051 Microcontroller AT89C51 DS12C887 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Calendar Using RTC DS12C887 And 8051 Microcontroller AT89C51 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Calendar Using RTC DS12C887 And 8051 Microcontroller AT89C51 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download RTC Project VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download RTC Project Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Interfacing RTC DS12C887 With 8051 Microcontroller VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Interfacing RTC DS12C887 With 8051 Microcontroller Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Ds1307 With At89s52 RTC VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Ds1307 With At89s52 RTC Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download LCD Based Digital Clock With 8051 Microcontroller Project VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download LCD Based Digital Clock With 8051 Microcontroller Project Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock LCD 8051 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock LCD 8051 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Rtc Real Time Clock Using 8051 89v51RD2 VINYTICS ET 51 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Rtc Real Time Clock Using 8051 89v51RD2 VINYTICS ET 51 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Ds1307 8051 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Ds1307 8051 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Using RTC DS1307 8051 With Serial Communication For Time Settings VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Using RTC DS1307 8051 With Serial Communication For Time Settings Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Using Microcontroller Avi VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Using Microcontroller Avi Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download 8051 Microcontroller Based Digital Clock Project With Thermometer With Circuit C Code VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download 8051 Microcontroller Based Digital Clock Project With Thermometer With Circuit C Code Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download DIGITAL CALENDAR MICROCONTROLLER VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download DIGITAL CALENDAR MICROCONTROLLER Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Using 8051 MicroController VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Using 8051 MicroController Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Alarm Clock Timer ON Off At89s51 LCD 16 X 2 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Alarm Clock Timer ON Off At89s51 LCD 16 X 2 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Alarm Clock Using 8051 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Alarm Clock Using 8051 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Seven Segment Digital Alarm Clock Using 8051 Microcontroller VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Seven Segment Digital Alarm Clock Using 8051 Microcontroller Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Using 8051 Microcontroller And LCD Display Mini Project VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Using 8051 Microcontroller And LCD Display Mini Project Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download 8051 Microcontroller AT89s51 Based Seven Segment Display Digital Clock VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download 8051 Microcontroller AT89s51 Based Seven Segment Display Digital Clock Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Calendar VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Calendar Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Seven Segment Digital Clock With Time Set Using 8051 Microcontroller VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Seven Segment Digital Clock With Time Set Using 8051 Microcontroller Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Alarm Clock Using 8051 Microcontroller With Program And Working VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Alarm Clock Using 8051 Microcontroller With Program And Working Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Using 8051 Microcontroller Part 1 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Using 8051 Microcontroller Part 1 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download DS1307 Real Time Clock Programming Using Keil IDE And Proteus Simulation VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download DS1307 Real Time Clock Programming Using Keil IDE And Proteus Simulation Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Seven Segment Digital Clock With Time Set Using 8051 Microcontroller VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Seven Segment Digital Clock With Time Set Using 8051 Microcontroller Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download 8051 Microcontroller Based Digital Clock Project With Thermometer With Circuit C Code VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download 8051 Microcontroller Based Digital Clock Project With Thermometer With Circuit C Code Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Using 8051 Micro Controller VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Using 8051 Micro Controller Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Using 8051 Microcontroller Part 2 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Using 8051 Microcontroller Part 2 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download 8051 Project VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download 8051 Project Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Clock Using 8051 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Clock Using 8051 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Clock With 8051 Microcontroller VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Clock With 8051 Microcontroller Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Thermometer Project Using 8051 Microcontroller VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Thermometer Project Using 8051 Microcontroller Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download 8051 Digital Clock VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download 8051 Digital Clock Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Microcontroller Project Alarm Clock VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Microcontroller Project Alarm Clock Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Real Time Clock Project VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Real Time Clock Project Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download RTC Battery Replacement Dallas DS12887 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download RTC Battery Replacement Dallas DS12887 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download DS12C887 And ATMEGA16 Assembly VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download DS12C887 And ATMEGA16 Assembly Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Digital Alarm Clock Micro 8051 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Digital Alarm Clock Micro 8051 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Full Download Circuit Showing Minutes And Seconds Clock Use IC 8051 VIDEO and Games With Gameplay Walkthrough And Tutorial Video HD. Download Circuit Showing Minutes And Seconds Clock Use IC 8051 Fo PC Wii U PS4 PS3 Xbox One Xbox 360 With Full List Command And Cheat Files if Needed AND DOWNLOAD THIS VIDEO

DOWNLOAD NOW

Источник: http://www.downloads-game.net/downloadgames/digital-clock-with-rtc-ds12c887-8051-microcontroller-project

Ссылка на основную публикацию
Adblock
detector
",css:{backgroundColor:"#000",opacity:.6}},container:{block:void 0,tpl:"
"},wrap:void 0,body:void 0,errors:{tpl:"
",autoclose_delay:2e3,ajax_unsuccessful_load:"Error"},openEffect:{type:"fade",speed:400},closeEffect:{type:"fade",speed:400},beforeOpen:n.noop,afterOpen:n.noop,beforeClose:n.noop,afterClose:n.noop,afterLoading:n.noop,afterLoadingOnShow:n.noop,errorLoading:n.noop},o=0,p=n([]),h={isEventOut:function(a,b){var c=!0;return n(a).each(function(){n(b.target).get(0)==n(this).get(0)&&(c=!1),0==n(b.target).closest("HTML",n(this).get(0)).length&&(c=!1)}),c}},q={getParentEl:function(a){var b=n(a);return b.data("arcticmodal")?b:(b=n(a).closest(".arcticmodal-container").data("arcticmodalParentEl"),!!b&&b)},transition:function(a,b,c,d){switch(d=null==d?n.noop:d,c.type){case"fade":"show"==b?a.fadeIn(c.speed,d):a.fadeOut(c.speed,d);break;case"none":"show"==b?a.show():a.hide(),d();}},prepare_body:function(a,b){n(".arcticmodal-close",a.body).unbind("click.arcticmodal").bind("click.arcticmodal",function(){return b.arcticmodal("close"),!1})},init_el:function(d,a){var b=d.data("arcticmodal");if(!b){if(b=a,o++,b.modalID=o,b.overlay.block=n(b.overlay.tpl),b.overlay.block.css(b.overlay.css),b.container.block=n(b.container.tpl),b.body=n(".arcticmodal-container_i2",b.container.block),a.clone?b.body.html(d.clone(!0)):(d.before("
"),b.body.html(d)),q.prepare_body(b,d),b.closeOnOverlayClick&&b.overlay.block.add(b.container.block).click(function(a){h.isEventOut(n(">*",b.body),a)&&d.arcticmodal("close")}),b.container.block.data("arcticmodalParentEl",d),d.data("arcticmodal",b),p=n.merge(p,d),n.proxy(e.show,d)(),"html"==b.type)return d;if(null!=b.ajax.beforeSend){var c=b.ajax.beforeSend;delete b.ajax.beforeSend}if(null!=b.ajax.success){var f=b.ajax.success;delete b.ajax.success}if(null!=b.ajax.error){var g=b.ajax.error;delete b.ajax.error}var j=n.extend(!0,{url:b.url,beforeSend:function(){null==c?b.body.html("
"):c(b,d)},success:function(c){d.trigger("afterLoading"),b.afterLoading(b,d,c),null==f?b.body.html(c):f(b,d,c),q.prepare_body(b,d),d.trigger("afterLoadingOnShow"),b.afterLoadingOnShow(b,d,c)},error:function(){d.trigger("errorLoading"),b.errorLoading(b,d),null==g?(b.body.html(b.errors.tpl),n(".arcticmodal-error",b.body).html(b.errors.ajax_unsuccessful_load),n(".arcticmodal-close",b.body).click(function(){return d.arcticmodal("close"),!1}),b.errors.autoclose_delay&&setTimeout(function(){d.arcticmodal("close")},b.errors.autoclose_delay)):g(b,d)}},b.ajax);b.ajax_request=n.ajax(j),d.data("arcticmodal",b)}},init:function(b){if(b=n.extend(!0,{},a,b),!n.isFunction(this))return this.each(function(){q.init_el(n(this),n.extend(!0,{},b))});if(null==b)return void n.error("jquery.arcticmodal: Uncorrect parameters");if(""==b.type)return void n.error("jquery.arcticmodal: Don't set parameter \"type\"");switch(b.type){case"html":if(""==b.content)return void n.error("jquery.arcticmodal: Don't set parameter \"content\"");var e=b.content;return b.content="",q.init_el(n(e),b);case"ajax":return""==b.url?void n.error("jquery.arcticmodal: Don't set parameter \"url\""):q.init_el(n("
"),b);}}},e={show:function(){var a=q.getParentEl(this);if(!1===a)return void n.error("jquery.arcticmodal: Uncorrect call");var b=a.data("arcticmodal");if(b.overlay.block.hide(),b.container.block.hide(),n("BODY").append(b.overlay.block),n("BODY").append(b.container.block),b.beforeOpen(b,a),a.trigger("beforeOpen"),"hidden"!=b.wrap.css("overflow")){b.wrap.data("arcticmodalOverflow",b.wrap.css("overflow"));var c=b.wrap.outerWidth(!0);b.wrap.css("overflow","hidden");var d=b.wrap.outerWidth(!0);d!=c&&b.wrap.css("marginRight",d-c+"px")}return p.not(a).each(function(){var a=n(this).data("arcticmodal");a.overlay.block.hide()}),q.transition(b.overlay.block,"show",1*")),b.overlay.block.remove(),b.container.block.remove(),a.data("arcticmodal",null),n(".arcticmodal-container").length||(b.wrap.data("arcticmodalOverflow")&&b.wrap.css("overflow",b.wrap.data("arcticmodalOverflow")),b.wrap.css("marginRight",0))}),"ajax"==b.type&&b.ajax_request.abort(),p=p.not(a))})},setDefault:function(b){n.extend(!0,a,b)}};n(function(){a.wrap=n(document.all&&!document.querySelector?"html":"body")}),n(document).bind("keyup.arcticmodal",function(d){var a=p.last();if(a.length){var b=a.data("arcticmodal");b.closeOnEsc&&27===d.keyCode&&a.arcticmodal("close")}}),n.arcticmodal=n.fn.arcticmodal=function(a){return e[a]?e[a].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof a&&a?void n.error("jquery.arcticmodal: Method "+a+" does not exist"):q.init.apply(this,arguments)}}(jQuery)}var debugMode="undefined"!=typeof debugFlatPM&&debugFlatPM,duplicateMode="undefined"!=typeof duplicateFlatPM&&duplicateFlatPM,countMode="undefined"!=typeof countFlatPM&&countFlatPM;document["wri"+"te"]=function(a){let b=document.createElement("div");jQuery(document.currentScript).after(b),flatPM_setHTML(b,a),jQuery(b).contents().unwrap()};function flatPM_sticky(c,d,e=0){function f(){if(null==a){let b=getComputedStyle(g,""),c="";for(let a=0;a=b.top-h?b.top-h{const d=c.split("=");return d[0]===a?decodeURIComponent(d[1]):b},""),c=""==b?void 0:b;return c}function flatPM_testCookie(){let a="test_56445";try{return localStorage.setItem(a,a),localStorage.removeItem(a),!0}catch(a){return!1}}function flatPM_grep(a,b,c){return jQuery.grep(a,(a,d)=>c?d==b:0==(d+1)%b)}function flatPM_random(a,b){return Math.floor(Math.random()*(b-a+1))+a}