Using General I/O Ports to Drive LCD Displays

Size: px
Start display at page:

Download "Using General I/O Ports to Drive LCD Displays"

Transcription

1 Using General I/O Ports to Drive LCD Displays D/N:HA0092E Introduction In certain special cases, where it is required to reduce costs and where demand on the I/Os are low, users often require to use standard I/O pins to drive LCD displays. This project is in response to this need and can be used as a basis for actual applications. Description 1. When using I/O ports to drive an LCD display, the I/O port can only have 3 kinds of standard signal, therefore it is only possible to implement 1/2 bias. 2. When testing using the HT46R22 (24-pin type) for control, the circuit is as shown in Fig. 1. Pins PA0 to PA3 and PB3 and PB5 are used to control SEG0~SEG5, while PB3, PB6 and PB7 are used for COM0 to COM2. 1

2 +, ' 2 E + 5 A C 5 A C 5 A C 5 A C! 5 A C " 5 A C # + +! ' 9! ' 9! ' 9 8,, # 9! " # $ % & ' 2 * # ) # 2 * " ) " 2 )! 2., 2 ) 2 ) 2 ) 2 *! )! 2 * ) 2 * ) 2 * ) * $ ) $ 2 * % ) % 2 ) " ) # ) $ 5, ) 2 ) % ,, 4-5 2, " $ 4 " 2 E "! ' & % $ # "! " 0 9 ) %!!! ' 9 Fig The I/O ports have three standard setup methods. For the COM port, select the internal pull high resistor and also connect external pull-low resistors. For example, when the I/O port changes from a high output, to an input and then to a low output, this will provide an output voltage of VDD, 1/2 VDD, and 0V respectively. 4. The display waveform is shown in figure 2. For the LCD to illuminate, the corresponding LCD area s COM and SEG should have a voltage of ±VDD for illumination to occur. If the corresponding voltage is 0V or 1/2 VDD then no illumination will take place. If an alternating plus or minus VDD voltage is applied to the LCD area then the life of the display can be extended. If the LCD glass is 3V then VDD = 3V, if the LCD glass is 5V, then VDD = 5V. 5. The example program uses minutes and will display from 00 to 59 after which it will repeat. 2

3 , K H E C = H A I A JF K I A ) HEL A H K JF K JI H = F A H = A , I A C A JI + I E@ A I > A E C K EJ O +, I A C A JI + I E@ A > A E C EJ O +, I A C A JI + I E@ A > A E C EJ O +, I A C A JI + I E@ A > A E C EJ +, I A C A JI + I E@ A I > A E C EJ +, I A C A JI + I E@ A I > A E C EJ +, I A C A JI + I E@ A I > A E C EJ +, I A C A JI + I E@ A I > A E C EJ 0 ) A ) HEL A H K JF K JI Fig The two LCDs 7-seg corresponding connections are as shown in Table 1. Seg0 Seg1 Seg2 Seg3 Seg4 Seg5 COM0 1e 1d 1c 2e 2d 2c COM1 1b 1a 2b 2a COM2 1g 1f 2g 2f Table 1 3

4 Program Example Using General I/O Ports to Drive LCD Displays ;FILE NAME: IO_LCD ;MCU: HT46R22 ;MASK OPTION: WAKE-UP: PA6,PA7 ; PULL-HIGH: PA,PB,PC ; IIC: DISABLE ; PFD: DISABLE ; PWM: DISABLE ; WDT: ENABLE ; CLRWDT: ONE ; WDT CLOCK SOURCE: T1 ; WDT TIME OUT SELECT: WDT CLOCK SOURCE/32768 ; LVR: DISABLE ; OSC: CRYSTAL ; SYSVOLT: 3.0V ; SYSFRAG: 4000kHZ ;AUTHOR: RADOME ;HISTORY: include Ht46r22.inc include Micro.inc IO_data.section data acc_bk db? status_bk db? pa_bk db? pb_bk db? pbc_bk db? pulse_count db? display_temp db? display_temp0 db? display_temp1 db? display_temp2 db? number0 db? number1 db? number2 db? msecond db? second db? minute db? segment0 equ pa_bk.0 segment1 equ pa_bk.1 segment2 equ pa_bk.2 segment3 equ pa_bk.3 segment4 equ pb_bk.4 segment5 equ pb_bk.5 4

5 com0 equ pb_bk.3 com0_ctrl equ pbc_bk.3 com1 equ pb_bk.6 com1_ctrl equ pbc_bk.6 com2 equ pb_bk.7 com2_ctrl equ pbc_bk.7 IO_code.section code org 0000h init org 0004h ;External Interrupt reti org 0008h ;Timer Interrupt timer_int org 0020h ;Initializers init: intc0 intc1 tmrc set set msecond second minute pulse_count display_temp display_temp0 display_temp1 display_temp2 number0 number1 number2 a, b pa,a pa_bk,a a, b pac,a pb pb_bk a, b pbc,a pbc_bk,a 5

6 a, b pc,a pcc pd pdc a, b intc0,a a,94 tmr,a a, b tmrc,a ;Main main_loop: wdt a,minute add a,bcd_table tblp,a tabrdl number2 a,number2 and a,0f0h swap acc number0,a a,number2 and a,0fh number1,a a,number0 display_temp0,a a,number1 display_temp1,a a,number2 display_temp2,a main_loop 6

7 ;Interrupt timer int: ;2592us push ;COM Operation Mode com_pulse: inc pulse_count a,pulse_count sub a,7 snz c $+3 a,1 pulse_count,a a,pulse_count $+2 com1_out_high $+2 com1_out_low $+2 com2_out_high $+2 com2_out_low com0_out_low com0_out_high: com0_ctrl set com0 set com1_ctrl set com2_ctrl segment_pulse com0_out_low: com0_ctrl com0 set com1_ctrl set com2_ctrl segment_pulse 7

8 com1_out_high: set com0_ctrl com1_ctrl set com1 set com2_ctrl segment_pulse com1_out_low: set com0_ctrl com1_ctrl com1 set com2_ctrl segment_pulse com2_out_high: set com0_ctrl set com1_ctrl com2_ctrl set com2 segment_pulse com2_out_low: set com0_ctrl set com1_ctrl com2_ctrl com2 ;SEGMENT Operation Mode segment_pulse: ; segment0_out: a,display_temp0 add a,number_table tblp,a tabrdl display_temp a,display_temp and a, b inc acc $+2 segment0_000 $+2 segment0_001 $+2 segment0_010 8

9 $+2 segment0_011 $+2 segment0_100 $+2 segment0_101 segment0_111 segment0_110 segment0_000: segment0_001: segment0_010: segment0_011: segment0_100: segment0_101: segment0_110: segment0_111: a,com_000_table segment0_next a,com_001_table segment0_next a,com_010_table segment0_next a,com_011_table segment0_next a,com_100_table segment0_next a,com_101_table segment0_next a,com_110_table segment0_next a,com_111_table segment0_next: add a,pulse_count tblp,a tabrdl acc segment0 sz acc set segment0 ; segment1_out: a,display_temp 9

10 and a, b inc acc $+2 segment1_000 $+2 segment1_001 $+2 segment1_010 $+2 segment1_011 $+2 segment1_100 $+2 segment1_101 segment1_111 segment1_110 segment1_000: segment1_001: segment1_010: segment1_011: segment1_100: segment1_101: segment1_110: segment1_111: a,com_000_table segment1_next a,com_001_table segment1_next a,com_010_table segment1_next a,com_011_table segment1_next a,com_100_table segment1_next a,com_101_table segment1_next a,com_110_table segment1_next a,com_111_table 10

11 segment1_next: add a,pulse_count tblp,a tabrdl acc segment1 sz acc set segment1 ; segment2_out: acc sz display_temp.7 set acc.0 inc acc $+2 segment2_000 $+2 segment2_001 $+2 segment2_010 $+2 segment2_011 $+2 segment2_100 $+2 segment2_101 segment2_111 segment2_110 segment2_000: segment2_001: segment2_010: segment2_011: a,com_000_table segment2_next a,com_001_table segment2_next a,com_010_table segment2_next a,com_011_table segment2_next 11

12 segment2_100: segment2_101: segment2_110: segment2_111: a,com_100_table segment2_next a,com_101_table segment2_next a,com_110_table segment2_next a,com_111_table segment2_next: add a,pulse_count tblp,a tabrdl acc segment2 sz acc set segment2 ; segment3_out: a,display_temp1 add a,number_table tblp,a tabrdl display_temp a,display_temp and a, b inc acc $+2 segment3_000 $+2 segment3_001 $+2 segment3_010 $+2 segment3_011 $+2 segment3_100 $+2 segment3_101 12

13 sdz segment3_000: segment3_001: segment3_010: segment3_011: segment3_100: segment3_101: segment3_110: segment3_111: acc segment3_111 segment3_110 a,com_000_table segment3_next a,com_001_table segment3_next a,com_010_table segment3_next a,com_011_table segment3_next a,com_100_table segment3_next a,com_101_table segment3_next a,com_110_table segment3_next a,com_111_table segment3_next: add a,pulse_count tblp,a tabrdl acc segment3 sz acc set segment3 ; segment4_out: a,display_temp and a, b inc acc $+2 segment4_000 $+2 segment4_001 13

14 $+2 segment4_010 $+2 segment4_011 $+2 segment4_100 $+2 segment4_101 segment4_111 segment4_110 segment4_000: segment4_001: segment4_010: segment4_011: segment4_100: segment4_101: segment4_110: segment4_111: a,com_000_table segment4_next a,com_001_table segment4_next a,com_010_table segment4_next a,com_011_table segment4_next a,com_100_table segment4_next a,com_101_table segment4_next a,com_110_table segment4_next a,com_111_table segment4_next: add a,pulse_count tblp,a tabrdl acc segment4 sz acc set segment4 ;

15 segment5_out: acc sz display_temp.7 set acc.0 inc acc $+2 segment5_000 $+2 segment5_001 $+2 segment5_010 $+2 segment5_011 $+2 segment5_100 $+2 segment5_101 segment5_111 segment5_110 segment5_000: segment5_001: segment5_010: segment5_011: segment5_100: segment5_101: segment5_110: a,com_000_table segment5_next a,com_001_table segment5_next a,com_010_table segment5_next a,com_011_table segment5_next a,com_100_table segment5_next a,com_101_table segment5_next a,com_110_table segment5_next 15

16 segment5_111: a,com_111_table segment5_next: add a,pulse_count tblp,a tabrdl acc segment5 sz acc set segment5 ;Output COM&SEGMENT output_com_segment: a,pb_bk pb,a a,pbc_bk pbc,a a,pa_bk pa,a ;Time inc msecond a,msecond sub a,192 snz c timer_end msecond timer_end: pop reti inc second a,second sub a,120 snz c timer_end second inc minute a,minute sub a,60 snz c timer_end minute 16

17 ;Table org 0700h number_table: ; gbefadc b ; b ; b ; b ; b ; 4" b ; b ; b ; b ; b ; b ; - a b ; b ; com_000_table: 0 1,0,1,0,1,0 com_001_table: 0 1,0,1,0,0,1 com_010_table: 0 0,1,1,0,1,0 com_011_table: 0 0,1,1,0,0,1 com_100_table: 0 1,0,0,1,1,0 com_101_table: 0 1,0,0,1,0,1 com_110_table: 0 0,1,0,1,1,0 com_111_table: 0 0,1,0,1,0,1 17

18 bcd_table: 00h,01h,02h,03h,04h,05h,06h,07h,08h,09h 10h,11h,12h,13h,14h,15h,16h,17h,18h,19h 20h,21h,22h,23h,24h,25h,26h,27h,28h,29h 30h,31h,32h,33h,34h,35h,36h,37h,38h,39h 40h,41h,42h,43h,44h,45h,46h,47h,48h,49h 50h,51h,52h,53h,54h,55h,56h,57h,58h,59h 60h,61h,62h,63h,64h,65h,66h,67h,68h,69h 70h,71h,72h,73h,74h,75h,76h,77h,78h,79h 80h,81h,82h,83h,84h,85h,86h,87h,88h,89h 90h,91h,92h,93h,94h,95h,96h,97h,98h,99h end 18

HT1380 HT driver READ_ driver WRITE_1380

HT1380 HT driver READ_ driver WRITE_1380 HA0049s HT1380/HT1381 MCU 32K HT1380/HT1381 DRIVER driver driver rw_ht1380.asm I/O.section data equ driver 1 driver READ_1380 none acc time_temp, time_count 2 driver WRITE_1380 acc none time_temp, time_count

More information

Read and Write Control of the HT1380

Read and Write Control of the HT1380 Read and Write Control of the HT1380 D/N HA0049E Introduction Driver Description This application note applies to the HT48XXX and HT46XXX MCU devices. The HT1380/HT1381 is a standard Holtek device which

More information

Read and Write Control of the HT1380/HT1381

Read and Write Control of the HT1380/HT1381 Read and Write Control of the HT1380/HT1381 D/N:AN0049E Introduction Driver Description This application note applies to the HT48xxx and HT46xxx MCU devices. The HT1380/ HT1381 is a standard Holtek device

More information

HT46R46/C46/R47/C47/R48A/C48A/R49 Cost-Effective A/D Type 8-Bit MCU

HT46R46/C46/R47/C47/R48A/C48A/R49 Cost-Effective A/D Type 8-Bit MCU Cost-Effective A/D Type 8-Bit MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V 13 to 23 bidirectional I/O lines External interrupt input shared with an I/O line 8-bit programmable

More information

Using the HT45R36 and HT45R38 to implement Touch Switches

Using the HT45R36 and HT45R38 to implement Touch Switches Using the HT45R36 and HT45R38 to implement Touch Switches D/N: HA0115E Introduction This example uses the C/R to F internal feature of the HT45R36 and HT45R38 to implement a Touch Switch. It is one way

More information

Controlling the HT1621 LCD Controller With the HT48 MCU Series

Controlling the HT1621 LCD Controller With the HT48 MCU Series Controlling the HT1621 LCD Controller With the HT48 MCU Series D/N HA0018E Introduction The HT1621 is a 128-bit multi-function LCD controller device with internal RAM memory mapping. The software configuration

More information

HT48RAx/HT48CAx Software Application

HT48RAx/HT48CAx Software Application HT48RAx/HT48CAx Software Application Note D/N: HA0076E Introduction CALL and JUMP will load the BP to program counter. Interrupt will store the contents of program counter into stack. RETI/RET will load

More information

HT49R30A-1/HT49C30-1/HT49C30L LCD Type 8-Bit MCU

HT49R30A-1/HT49C30-1/HT49C30L LCD Type 8-Bit MCU Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ HT49R30A-/HT49C30-/HT49C30L LCD Type 8-Bit MCU Technical Document Tools Information FAQs Application Note HA007E

More information

HT49R30A-1/HT49C30-1/HT49C30L 8-Bit LCD Type MCU

HT49R30A-1/HT49C30-1/HT49C30L 8-Bit LCD Type MCU 8-Bit LCD Type MCU Features Operating voltage: 2.2V~5.5V for HT49R30A-/HT49C30-.2V~2.2V for HT49C30L 6 input lines 8 bidirectional I/O lines Two external interrupt input One 8-bit programmable timer/event

More information

HT46R652 A/D with LCD Type 8-Bit OTP MCU

HT46R652 A/D with LCD Type 8-Bit OTP MCU A/D with LCD Type 8-Bit OTP MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =2MHz: 3.3V~5.5V 32 bidirectional I/O lines Two external interrupt inputs Two 6-bit programmable timer/event counters

More information

HT49RU80/HT49CU80 LCD Type 8-Bit MCU

HT49RU80/HT49CU80 LCD Type 8-Bit MCU Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ HT49RU80/HT49CU80 LCD Type 8-Bit MCU Technical Document Tools Information FAQs Application Note HA007E Controlling

More information

HT46F46E/HT46F47E/HT46F48E/HT46F49E. Cost-Effective A/D Flash Type 8-Bit MCU with EEPROM. Technical Document. Features. General Description

HT46F46E/HT46F47E/HT46F48E/HT46F49E. Cost-Effective A/D Flash Type 8-Bit MCU with EEPROM. Technical Document. Features. General Description Cost-Effective A/D Flash Type 8-Bit MCU with EEPROM Technical Document Tools Information FAQs Application Note HA0052E Microcontroller Application - Battery Charger HA0075E MCU Reset and Oscillator Circuits

More information

HT46R47/HT46C47 A/D Type 8-Bit MCU

HT46R47/HT46C47 A/D Type 8-Bit MCU A/D Type 8-Bit MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V 3 bidirectional I/O lines (max.) interrupt input shared with an I/O line 8-bit programmable timer/event counter

More information

HT49RA0/HT49CA0 Remote Type 8-Bit MCU with LCD

HT49RA0/HT49CA0 Remote Type 8-Bit MCU with LCD Remote Type 8-Bit MCU with LCD Features Operating voltage: 2.0V~3.6V 8 bidirectional I/O lines and 8 input lines Two external interrupt input One 8-bit programmable timer/event counter LCD driver with

More information

HT49R50A-1/HT49C50-1/HT49C50L LCD Type 8-Bit MCU

HT49R50A-1/HT49C50-1/HT49C50L LCD Type 8-Bit MCU LCD Type 8-Bit MCU Technical Document Tools Information FAQs Application Note HA007E Controlling the Read/Write Function of the HT24 Series EEPROM Using the HT49 Series MCUs HA0024E Using the RTC in the

More information

HT46R46-H Cost-Effective A/D Type 8-Bit OTP MCU

HT46R46-H Cost-Effective A/D Type 8-Bit OTP MCU Cost-Effective A/D Type 8-Bit OTP MCU Technical Document Tools Information FAQs Application Note HA0003E Communicating between the HT48 & HT46 Series MCUs and the HT93LC46 EEPROM HA0009E HT48 & HT46 MCU

More information

HT47R20A-1/HT47C20-1 R-F Type 8-Bit MCU

HT47R20A-1/HT47C20-1 R-F Type 8-Bit MCU R-F Type 8-Bit MCU Technical Document Tools Information FAQs Application Note HA0029E Using the Time Base Function in the HT47R20A- HA0030E Using the RTC in the HT47R20A- HA0034E Using the Buzzer Function

More information

HT56R67/HT56R668/HT56R678 TinyPower TM A/D Type with LCD 8-Bit OTP MCU

HT56R67/HT56R668/HT56R678 TinyPower TM A/D Type with LCD 8-Bit OTP MCU TinyPower TM A/D Type with LCD 8-Bit OTP MCU Technical Document Application Note HA0075E MCU Reset and Oscillator Circuits Application Note Features Operating voltage: f SYS =100kHz: 2.2V~5.5V f SYS =4MHz:

More information

HT49R70A-1/HT49C70-1/HT49C70L LCD Type 8-Bit MCU

HT49R70A-1/HT49C70-1/HT49C70L LCD Type 8-Bit MCU Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ HT49R70A-/HT49C70-/HT49C70L LCD Type 8-Bit MCU Technical Document Tools Information FAQs Application Note HA007E

More information

HT46R01/HT46R02/HT46R03

HT46R01/HT46R02/HT46R03 1-Pin MSOP A/D Type 8-Bit OTP MCU Technical Document Tools Information FAQs Application Note HA3E Communicating between the HT48 & HT46 Series MCUs and the HT93LC46 EEPROM HA16E Writing and Reading to

More information

HT46R47/HT46R47-H Cost-Effective A/D Type 8-Bit OTP MCU

HT46R47/HT46R47-H Cost-Effective A/D Type 8-Bit OTP MCU Cost-Effective A/D Type 8-Bit OTP MCU Technical Document Tools Information FAQs Application Note HA0003E Communicating between the HT48 & HT46 Series MCUs and the HT93LC46 EEPROM HA0009E HT48 & HT46 MCU

More information

HT46R32/HT46R34 A/D Type 8-Bit OTP MCU with OPA

HT46R32/HT46R34 A/D Type 8-Bit OTP MCU with OPA A/D Type 8-Bit OTP MCU with OPA Technical Document Tools Information FAQs Application Note HA0003E Communicating between the HT48 & HT46 Series MCUs and the HT93LC46 EEPROM HA0049E Read and Write Control

More information

HTG Bit 320 Pixel Dot Matrix LCD MCU Series. Features. General Description

HTG Bit 320 Pixel Dot Matrix LCD MCU Series. Features. General Description 8-Bit 320 Pixel Dot Matrix LCD MCU Series Features Operating voltage: 2.4V~3.6V 6K6 bits program ROM 928 bits data RAM 8~2 bidirectional I/O lines 8 common33~40 segment LCD driver One 6-bit programmable

More information

HT48F06E/HT48F10E/HT48F30E I/O Flash Type MCU with EEPROM

HT48F06E/HT48F10E/HT48F30E I/O Flash Type MCU with EEPROM I/O Flash Type MCU with EEPROM Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V f SYS =12MHz: 4.5V~5.5V Multi-programmable Flash Type Program Memory EEPROM data memory: 128 8 From

More information

HT49R50A-1 Using a thermistor to implement a thermometer

HT49R50A-1 Using a thermistor to implement a thermometer HT49R50A-1 Using a thermistor to implement a thermometer D/:HA0098E Introduction This application note uses the HT49R50A-1 microcontroller. The pins PC.0, PC.1 and PC.2 are used to read the value on a

More information

HT49R10A-1/HT49C10-1 LCD Type 8-Bit MCU

HT49R10A-1/HT49C10-1 LCD Type 8-Bit MCU LCD Type 8-Bit MCU Technical Document Tools Information FAQs Application Note HA007E Controlling the Read/Write Function of the HT24 Series EEPROM Using the HT49 Series MCUs HA0024E Using the RTC in the

More information

HT46RU66/HT46CU66 A/D Type 8-Bit MCU with LCD

HT46RU66/HT46CU66 A/D Type 8-Bit MCU with LCD A/D Type 8-Bit MCU with LCD Technical Document Tools Information FAQs Application Note HA0003E Communicating between the HT48 & HT46 Series MCUs and the HT93LC46 EEPROM HA0004E HT48 & HT46 MCU UART Software

More information

HT46R53A/HT46R54A A/D Type 8-Bit OTP MCU

HT46R53A/HT46R54A A/D Type 8-Bit OTP MCU A/D Type 8-Bit OTP MCU Features Low-power fully static CMOS design Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V Program Memory: 2K5 OTP (HT46R53A) 4K5 OTP (HT46R54A) Data memory: 928

More information

HT45R36 C/R to F Type 8-Bit OTP MCU

HT45R36 C/R to F Type 8-Bit OTP MCU C/R to F Type 8-Bit OTP MCU Technical Document Tools Information FAQs Application Note Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V 25 bidirectional I/O lines Two external

More information

HT48R50A-1/HT48C50-1 I/O Type 8-Bit MCU

HT48R50A-1/HT48C50-1 I/O Type 8-Bit MCU I/O Type 8-Bit MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V Low voltage reset function 35 bidirectional I/O lines (max.) interrupt input shared with an I/O line 8-bit programmable

More information

HT46R64/HT46C64 A/D with LCD Type 8-Bit MCU

HT46R64/HT46C64 A/D with LCD Type 8-Bit MCU A/D with LCD Type 8-Bit MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V 24 bidirectional I/O lines Two external interrupt input One 8-bit and one 6-bit programmable timer/event

More information

HT46R47. 8-Bit OTP Battery Charger Controller. Features. General Description

HT46R47. 8-Bit OTP Battery Charger Controller. Features. General Description 8-Bit OTP Battery Charger Controller Features Operating voltage: f SYS =4MHz: 3.3V~5.5V f SYS =8MHz: 4.5V~5.5V 3 bidirectional I/O lines (max.) interrupt input shared with an I/O line 8-bit programmable

More information

HT46R47 8-Bit A/D Type OTP MCU

HT46R47 8-Bit A/D Type OTP MCU 8-Bit A/D Type OTP MCU Features Operating voltage: f SYS =4MHz: 3.3V~5.5V f SYS =8MHz: 4.5V~5.5V 3 bidirectional I/O lines (max.) interrupt input shared with an I/O line 8-bit programmable timer/event

More information

HT46R22/HT46C22 8-Bit A/D Type MCU

HT46R22/HT46C22 8-Bit A/D Type MCU 8-Bit A/D Type MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 4.5V~5.5V 9 bidirectional I/O lines (max.) interrupt input shared with an I/O line 8-bit programmable timer/event counter

More information

HT45R0072 I/O 8-Bit MCU with USB Interface

HT45R0072 I/O 8-Bit MCU with USB Interface I/O 8-Bit MCU with USB Interface Features Operating voltage: f SYS =6M/2MHz: 3.6V~5.5V (VBUS) Low voltage reset function 34 bidirectional I/O lines (max.) 8-bit programmable timer/event counter with overflow

More information

HT95R22 I/O Type Phone 8-bit MCU

HT95R22 I/O Type Phone 8-bit MCU I/O Type Phone 8-bit MCU Features Operating voltage at f SYS = 3.58MHz: 2.2V~5.5V 4K6 OTP type Program Memory 5768 Data Memory 8 bidirectional I/Os with pull-high options 2 NMOS output-only lines External

More information

HT48R10A-1/HT48C10-1 I/O Type 8-Bit MCU

HT48R10A-1/HT48C10-1 I/O Type 8-Bit MCU I/O Type 8-Bit MCU Technical Document Tools Information FAQs Application Note HA0003E Communicating between the HT48 & HT46 Series MCUs and the HT93LC46 EEPROM HA0004E HT48 & HT46 MCU UART Software Implementation

More information

HT48F50E. I/O Type 8-Bit Flash MCU With EEPROM. Technical Document. Features. General Description. Tools Information FAQs Application Note

HT48F50E. I/O Type 8-Bit Flash MCU With EEPROM. Technical Document. Features. General Description. Tools Information FAQs Application Note I/O Type 8-Bit Flash MCU With EEPROM Technical Document Tools Information FAQs Application Note Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V Low voltage reset function 33 bidirectional

More information

HT46R14 A/D Type 8-Bit OTP MCU

HT46R14 A/D Type 8-Bit OTP MCU A/D Type 8-Bit OTP MCU Technical Document Tools Information FAQs Application Note HA0004E HT48 & HT46 MCU UART Software Implementation Method HA0005E Controlling the I2C bus with the HT48 & HT46 MCU Series

More information

HT46R63/HT46C63 A/D with LCD Type 8-Bit MCU

HT46R63/HT46C63 A/D with LCD Type 8-Bit MCU A/D with LCD Type -Bit MCU Technical Document Tools Information FAQs Application Note HA0003E Communicating between the HT4 & HT46 Series MCUs and the HT93LC46 EEPROM HA0004E HT4 & HT46 MCU UART Software

More information

HT48R05A-1 8-Bit OTP Microcontroller

HT48R05A-1 8-Bit OTP Microcontroller 8-Bit OTP Microcontroller Features Operating voltage: f SYS =4MHz: 3.3V~5.5V f SYS =8MHz: 4.5V~5.5V 3 bidirectional I/O lines An interrupt input shared with an I/O line 8-bit programmable timer/event counter

More information

HT46R14A A/D Type 8-Bit OTP MCU

HT46R14A A/D Type 8-Bit OTP MCU A/D Type 8-Bit OTP MCU Technical Document Tools Information FAQs Application Note HA4E HT48 & HT46 MCU UART Software Implementation Method HA5E Controlling the I^2C bus with the HT48 & HT46 MCU Series

More information

HT48F10E. I/O Type 8-Bit Flash MCU With EEPROM. Technical Document. Features. General Description. Tools Information FAQs Application Note

HT48F10E. I/O Type 8-Bit Flash MCU With EEPROM. Technical Document. Features. General Description. Tools Information FAQs Application Note I/O Type 8-Bit Flash MCU With EEPROM Technical Document Tools Information FAQs Application Note Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V Low voltage reset function 9 bidirectional

More information

HT48F70E I/O Flash Type MCU with EEPROM

HT48F70E I/O Flash Type MCU with EEPROM I/O Flash Type MCU with EEPROM Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V f SYS =12MHz: 4.5V~5.5V Multi-programmable Flash Type Program Memory: 819216 EEPROM Data Memory:

More information

HT48R05A-1/HT48C05/ HT48R06A-1/HT48C06/HT48R08A-1 Cost-Effective I/O Type 8-Bit MCU

HT48R05A-1/HT48C05/ HT48R06A-1/HT48C06/HT48R08A-1 Cost-Effective I/O Type 8-Bit MCU HT48R5A-/HT48C5/ HT48R6A-/HT48C6/HT48R8A- Cost-Effective I/O Type 8-Bit MCU Technical Document Tools Information FAQs Application Note HA3E Communicating between the HT48 & HT46 Series MCUs and the HT93LC46

More information

HT48R06A-1/HT48C06. 8-Bit Cost-Effective I/O Type MCU. Features. General Description. Block Diagram

HT48R06A-1/HT48C06. 8-Bit Cost-Effective I/O Type MCU. Features. General Description. Block Diagram 8-Bit Cost-Effective I/O Type MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V 3 bidirectional I/O lines An interrupt input shared with an I/O line 8-bit programmable timer/event

More information

Enhanced I/O Type 8-Bit OTP MCU HT48R063B/HT48R064B HT48R065B/HT48R066B

Enhanced I/O Type 8-Bit OTP MCU HT48R063B/HT48R064B HT48R065B/HT48R066B Enhanced I/O Type 8-Bit OTP MCU HT48R063B/HT48R064B HT48R065B/HT48R066B Revision: 1.20 Date: June 3, 2013 Table of Contents General...6 Features...6 CPU Features...6 Peripheral Features...6 Technical Document...6

More information

HT46RU24 A/D Type 8-Bit OTP MCU with UART

HT46RU24 A/D Type 8-Bit OTP MCU with UART A/D Type 8-Bit OTP MCU with UART Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V 40 bidirectional I/O lines (max.) interrupt input shared with an I/O line One 8-bit and Two 6-bit

More information

Enhanced A/D Type 8-Bit OTP MCU HT46R064B/HT46R065B/HT46R066B

Enhanced A/D Type 8-Bit OTP MCU HT46R064B/HT46R065B/HT46R066B Enhanced A/D Type 8-Bit OTP MCU HT46R064B/HT46R065B/HT46R066B Revision: 1.10 Date : October 23, 2012 Contents Table of Contents General...6 Features...6 CPU Features...6 Peripheral Features...6 Technical

More information

SH69P55A EVB. Application Note for SH69P55A EVB SH69P55A EVB SH69V55A

SH69P55A EVB. Application Note for SH69P55A EVB SH69P55A EVB SH69V55A Application Note for SH69P55A EVB SH69P55A EVB The SH69P55A EVB is used to evaluate the SH69P55A chip's function for the development of application program. It contains of a SH69V55A chip to evaluate the

More information

HT48R32 8-bit OTP Microcontrollers

HT48R32 8-bit OTP Microcontrollers 8-bit OTP Microcontrollers Features Operating voltage: 3.0V~5.2V 22 bidirectional I/O lines An interrupt input An 8-bit programmable timer/event counter with overflow interrupt On-chip crystal and RC oscillator

More information

Small Package 8-Bit OTP MCU HT48R005/HT46R005

Small Package 8-Bit OTP MCU HT48R005/HT46R005 Small Package 8-Bit OTP MCU HT48R005/HT46R005 Revision: 1.00 November 29, 2011 Table of Contents Features...5 CPU Features...5 Peripheral Features...5 General...5 Selection Table...6 Block Diagram...6

More information

HT82K70E-L/HT82K70A-L/HT82K76E-L I/O Type 8-Bit MCU

HT82K70E-L/HT82K70A-L/HT82K76E-L I/O Type 8-Bit MCU I/O Type 8-Bit MCU Features Operating voltage: 1.8V~5.5V 43 bidirectional I/O lines Program Memory: 4K16 -- HT82K70E-L/HT82K70A-L 8K16 -- HT82K76E-L 2168 Data RAM One external interrupt input shared with

More information

HT46RU26/HT46CU26 A/D Type 8-Bit MCU with UART

HT46RU26/HT46CU26 A/D Type 8-Bit MCU with UART A/D Type 8-Bit MCU with UART Technical Document Tools Information FAQs Application Note HA0003E Communicating between the HT48 & HT46 Series MCUs and the HT93LC46 EEPROM HA0049E Read and Write Control

More information

Block Diagram 2 H C H = 4 I J H K? J E 4 A C E I J A H 2 H C H = + K J A H 2 7: 5 6 ) + J A H H K F J + E H? K E J 6 +, = J = A H O , 6 4

Block Diagram 2 H C H = 4 I J H K? J E 4 A C E I J A H 2 H C H = + K J A H 2 7: 5 6 ) + J A H H K F J + E H? K E J 6 +, = J = A H O , 6 4 Dual Slope A/D Type MCU with LCD Technical Document Tools Information FAQs Application Note Features Operating voltage: f SYS = 4MHz: 2.2V~5.5V f SYS = 8MHz: 3.3V~5.5V 0 bidirectional I/O lines and two

More information

SH67K93/90 EVB ROM H ROM L. Application Notices for SH67K93/90 EVB SH69V93 SH67K93/90 EVB J2 GND. Port & CID interface Tele Line Plug.

SH67K93/90 EVB ROM H ROM L. Application Notices for SH67K93/90 EVB SH69V93 SH67K93/90 EVB J2 GND. Port & CID interface Tele Line Plug. Application Notices for The (Evaluation Board) is used to evaluate the SH67K93/90 chip's functions for the development application program. It contains of a SH69V93 chip to evaluate the functions of SH67K93/90

More information

HALT function and wake-up feature reduce power consumption Six-level subroutine nesting Bit manipulation instructions Crystal or RC oscillator

HALT function and wake-up feature reduce power consumption Six-level subroutine nesting Bit manipulation instructions Crystal or RC oscillator 8-Bit Multimedia Keyboard Encoder OTP MCU Features Operating voltage: 2.4V~5.5V 32/34 bidirectional I/O lines One 8-bit programmable timer counter with overflow interrupts HALT function and wake-up feature

More information

HT82B40R/HT82B40A I/O 8-Bit MCU with USB Interface

HT82B40R/HT82B40A I/O 8-Bit MCU with USB Interface I/O 8-Bit MCU with USB Interface Features Operating voltage: f SYS =6M/2MHz: 3.3V~5.5V Low voltage reset function 34 bidirectional I/O lines (max.) 8-bit programmable timer/event counter with overflow

More information

HT49R70A-1/HT49C70-1/HT49C70L LCD Type 8-Bit MCU

HT49R70A-1/HT49C70-1/HT49C70L LCD Type 8-Bit MCU LCD Type 8-Bit MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V for HT49R70A-/HT49C70- f SYS =8MHz: 3.3V~5.5V for HT49R70A-/HT49C70- f SYS =500kHz:.2V~2.2V for HT49C70L 8 input lines 6 bidirectional

More information

HT48R70A-1/HT48C Bit I/O Type MCU

HT48R70A-1/HT48C Bit I/O Type MCU 8-Bit I/O Type MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V Low voltage reset function 56 bidirectional I/O lines (max.) interrupt input 26-bit programmable timer/event

More information

HT48R30A-1/HT48C30-1 I/O Type 8-Bit MCU

HT48R30A-1/HT48C30-1 I/O Type 8-Bit MCU I/O Type 8-Bit MCU Features Operating voltage: f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V Low voltage reset function 25 bidirectional I/O lines (max.) interrupt input shared with an I/O line 8-bit programmable

More information

HT82K96E. 8-Bit USB Multimedia Keyboard Encoder OTP MCU. Features. General Description

HT82K96E. 8-Bit USB Multimedia Keyboard Encoder OTP MCU. Features. General Description 8-Bit USB Multimedia Keyboard Encoder OTP MCU Features Operating voltage: f SYS =6M/2MHz: 4.4V~5.5V Low voltage reset function 32 bidirectional I/O lines (max.) 8-bit programmable timer/event counter with

More information

I/O Type 8-Bit OTP MCU with High Current LED Driver

I/O Type 8-Bit OTP MCU with High Current LED Driver I/O Type 8-Bit OTP MCU with 66 High Current LED Driver Features Operating voltage: f SYS =32768Hz: 2.2V~5.5V f SYS =4MHz: 2.2V~5.5V f SYS =8MHz: 3.3V~5.5V 2k4 program memory ROM 888 data memory RAM 8 bidirectional

More information

R-F Type Low Voltage 8-bit Mask MCU HT47C07L/HT47C08L

R-F Type Low Voltage 8-bit Mask MCU HT47C07L/HT47C08L HT47C07L/HT47C08L Revision: V.0 Date: December 23, 204 Table of Contents Features... 4 General... 4 Selection Table... 5 Block Diagram... 5 Pin Assignment... 6 Pin s... 7 HT47C07L... 7 HT47C08L... 8 Absolute

More information

HT48R11 8-bit OTP Microcontrollers

HT48R11 8-bit OTP Microcontrollers 8-bit OTP Microcontrollers Features Operating voltage: 3.0V~5.2V 8 bidirectional I/O lines Interrupt input 8-bit programmable timer/event counter with overflow interrupt On-chip crystal and RC oscillator

More information

HT95R54/HT95R55 CID Phone 8-Bit MCU

HT95R54/HT95R55 CID Phone 8-Bit MCU CID Phone 8-Bit MCU Features Operating voltage: f SYS =3.58MHz: 2.2V~5.5V f SYS =7.16MHz: 3.0V~5.5V f SYS =10.74MHz: 3.0V~5.5V f SYS =14.32MHz: 4.5V~5.5V Program Memory: 8K16 (HT95R54) 16K16 (HT95R55)

More information

Pin Assignment 2 ) # 2 ) % 2 ) $ 2 )! 2 ) 6 2 ) 2 )! " 4 # $ % /, & ' ' & % $ # "! 2 ) " : /, * ) 6 8,, * $ * 2 ) # 2 ) %

Pin Assignment 2 ) # 2 ) % 2 ) $ 2 )! 2 ) 6 2 ) 2 )!  4 # $ % /, & ' ' & % $ # ! 2 )  : /, * ) 6 8,, * $ * 2 ) # 2 ) % RF One Channel Mouse 8-bit OTP MCU Technical Document Tools Information FAQs Application Note HA0075E MCU Reset and Oscillator Circuits Application Note Features Operating voltage: f SYS = 27MHz: 2.0V~3.3V

More information

Using the HT16C2x I 2 C Interface for LCD Driving and Control

Using the HT16C2x I 2 C Interface for LCD Driving and Control Using the HT16C2x I 2 C Interface for LCD Driving and Control D/N:AN0280E Introduction The Holtek HT16C2x is a series of I 2 C interface, RAM mapping LCD drivers. They include the HT16C22/HT16C22G, HT16C23/HT16C23G,

More information

A/D Type 8-Bit OTP MCU HT45R2W

A/D Type 8-Bit OTP MCU HT45R2W HT45R2W Revision: 1.00 Date: February 08, 2012 Table of Contents Features... 5 CPU Features... 5 Peripheral Feature... 5 General... 6 Block Diagram... 6 Pin Assignment... 6 Pin... 7 Absolute Maximum Ratings...

More information

8-Bit Flash MCU with Op Amps & Comparators HT45F23/HT45F43

8-Bit Flash MCU with Op Amps & Comparators HT45F23/HT45F43 HT45F23/HT45F43 Revision : 1.20 Date : September 15, 2011 Contents Table of Contents Features...7 CPU Features...7 Peripheral Features...7 General Description...8 Block Diagram...9 Pin Assignment...9 Pin

More information

HT48RA0-2/HT48CA0-2 Remote Type 8-Bit MCU

HT48RA0-2/HT48CA0-2 Remote Type 8-Bit MCU Remote Type 8-Bit MCU Technical Document Tools Information FAQs Application Note HA006E Writing and Reading to the HT24 EEPROM with the HT48 MCU Series HA008E Controlling the HT62 LCD Controller with the

More information

HT1611/HT1611C Timer with Dialer Interface

HT1611/HT1611C Timer with Dialer Interface Features Operating voltage: 1.2V~1.7V Low operating current: 3µA (typ.) Dialing number and conversation time display Conversation timer (59 mins and 59 secs max.) 8 or 10-digit LCD display driver, 3V,

More information

HT36A4 Music Synthesizer 8-Bit MCU

HT36A4 Music Synthesizer 8-Bit MCU Music Synthesizer 8-Bit MCU Technical Document Tools Information FAQs Application Note Features Operating voltage: 2.4V~5.0V Operating frequency: 3.58MHz~2MHz (typ. 8MHz) 8 bidirectional I/O lines Two

More information

epsp6000 Product Specification RISC II Series Microcontroller DOC. VERSION 1.0

epsp6000 Product Specification RISC II Series Microcontroller DOC. VERSION 1.0 RISC II Series Microcontroller Product Specification DOC. VERSION 1.0 ELAN MICROELECTRONICS CORP. November 2010 Trademark Acknowledgments: IBM is a registered trademark and PS/2 is a trademark of IBM.

More information

Using the HT48R008 to Control a Bidirectional LED Array and Touch Keys

Using the HT48R008 to Control a Bidirectional LED Array and Touch Keys Using the HT48R008 to Control a Bidirectional LED Array and Touch Keys D/N: AN0397E Introduction The HT48R008 is an 8-bit high performance enhanced RISC architecture MCU which has the advantages of low

More information

Enhanced A/D+LCD Type 8-Bit OTP MCU HT46R0664

Enhanced A/D+LCD Type 8-Bit OTP MCU HT46R0664 Enhanced A/D+LCD Type 8-Bit OTP MCU HT46R0664 Revision: V.1.10 Date: December 14, 2012 Enhanced A/D+LCD Type 8-Bit OTP MCU Table of Contents Features... 6 CPU Features... 6 Peripheral Features... 6 General

More information

中显液晶 技术资料 中显控制器使用说明书 2009年3月15日 北京市海淀区中关村大街32号和盛大厦811室 电话 86 010 52926620 传真 86 010 52926621 企业网站.zxlcd.com

中显液晶 技术资料 中显控制器使用说明书 2009年3月15日 北京市海淀区中关村大街32号和盛大厦811室 电话 86 010 52926620 传真 86 010 52926621   企业网站.zxlcd.com http://wwwzxlcdcom 4 SEG / 6 COM DRIVER & CONTROLLER FOR DOT MATRIX LCD June 2 Ver Contents in this document are subject to change without notice No part of this document may be reproduced or transmitted

More information

HT48 & HT46 LCM Interface Design

HT48 & HT46 LCM Interface Design HT48 & HT46 LCM Interface Design D/N HA0013E Introduction The following note introduces a way of using 8 bit MCUs to control a DV16100NRB LCD display driver. The LCM is driven and controlled by a built-in

More information

HT1621. RAM Mapping 32 4 LCD Controller for I/O µc. Features. General Description. Selection Table

HT1621. RAM Mapping 32 4 LCD Controller for I/O µc. Features. General Description. Selection Table RAM Mapping 32 4 LCD Controller for I/O µc Features Operating voltage : 2.4V~5.2V Built-in 256kHz RC oscillator External 32.768kHz crystal or 256kHz frequency source input Selection of 1/2 or 1/3 bias,

More information

HT82K95E/HT82K95A USB Multimedia Keyboard Encoder 8-Bit MCU

HT82K95E/HT82K95A USB Multimedia Keyboard Encoder 8-Bit MCU USB Multimedia Keyboard Encoder 8-Bit MCU Features Operating voltage: f SYS =6M/2MHz: 3.3V~5.5V Low voltage reset function 32 bidirectional I/O lines (max.) 8-bit programmable timer/event counter with

More information

Semiconductor MSM6442 GENERAL DESCRIPTION FEATURES E2E This version: Sep. MSM Previous version: Mar. 1996

Semiconductor MSM6442 GENERAL DESCRIPTION FEATURES E2E This version: Sep. MSM Previous version: Mar. 1996 E2E0017-38-93 Semiconductor Semiconductor Built-in LCD Driver 4-Bit Microcontroller This version: Sep. 1998 Previous version: Mar. 1996 GENERAL DESCRIPTION The is a 4-bit microcontroller with a built-in

More information

SH69P21 EVB. Application Note for SH69P21 EVB SH69P21 EVB SH69P21

SH69P21 EVB. Application Note for SH69P21 EVB SH69P21 EVB SH69P21 SH69P21 EVB Application Note for SH69P21 EVB The SH69P21 EVB is used to evaluate the SH69P21 chip's function for the development of application program. It contains of a SH69V21 chip to evaluate the functions

More information

EasyPIC5 Development System

EasyPIC5 Development System EasyPIC5 Development System Part No.: MPMICRO-PIC-Devel- EasyPIC5 Overview EasyPIC5 is a development system that supports over 120 8-, 14-, 18-, 20-, 28- and 40-pin PIC MCUs. EasyPIC5 allows PIC microcontrollers

More information

MK6A20P 8Bit Microcontroller

MK6A20P 8Bit Microcontroller General Description 8Bit Microcontroller The is an 8 bit RISC high performance microcontroller It has 2Kx14bits OTP(One Time Programmable) ROM, 72 Bytes RAM, Timer/Counter, Interrupt, LVR(Low Voltage Reset)

More information

SSD1803. Product Preview. 100 x 34 STN LCD Segment / Common Mono Driver with Controller

SSD1803. Product Preview. 100 x 34 STN LCD Segment / Common Mono Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ SSD1803 Product Preview 100 x 34 STN LCD Segment / Common Mono Driver

More information

Using the HT16K33 in DVD Player Panel Applications

Using the HT16K33 in DVD Player Panel Applications Using the HT16K33 in DVD Player Panel Applications D/N:AN0363E Introduction The HT16K33 is a memory mapping and multi-function LED controller driver. The maximum display capacity in the device is 128 dots

More information

SHENZHEN TTK TECHNOLOGY CO.,LTD.

SHENZHEN TTK TECHNOLOGY CO.,LTD. General Description 8Bit Microcontroller The6C53BT is an 8 bit RISC high performance microcontroller. It is equipped with Kx4bits OTP(One Time Programmable) ROM, 32 Bytes RAM, Timer/Counter, Interrupt,

More information

16COM/80SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD

16COM/80SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD 6COM/80SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD INTRODUCTION The is a dot matrix LCD driver & controller LSI which is fabricated by low power CMOS technology It is capable of displaying or 2 lines with

More information

MK6A11P 8Bit Microcontroller

MK6A11P 8Bit Microcontroller General Description MK6AP 8Bit Microcontroller The MK6AP is an 8 bit RISC high performance microcontroller It is equipped with Kx4bits OTP(One Time Programmable) ROM, 48 Bytes RAM, Timer/Counter, Interrupt,

More information

HT48 & HT46 MCU UART Software Implementation Method

HT48 & HT46 MCU UART Software Implementation Method HT48 & HT46 MCU UART Software Implementation Method HT48 & HT46 MCU UART Software Implementation Method D/NHA0004E Introduction With low power consumption and high performance, Holtek s 8-bit microcontrollers

More information

SH69P48A EVB. Application Notes for SH69P48A EVB SH69V48A JP2 J4(ICE_J4) S1 IDD TEST JP1 74HC273 JP4 JP3 74HC273 JP6 STKOVE JP7 SW1 J5(ICE_J5)

SH69P48A EVB. Application Notes for SH69P48A EVB SH69V48A JP2 J4(ICE_J4) S1 IDD TEST JP1 74HC273 JP4 JP3 74HC273 JP6 STKOVE JP7 SW1 J5(ICE_J5) SH69P48A EVB Application Notes for SH69P48A EVB The SH69P48A EVB is used to evaluate the SH69P48A chip's function for the development of application program. It contains of a SH69V48A chip to evaluate

More information

16COM/40SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD

16COM/40SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD 6COM/4SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD INTRODUCTION is a dot matrix LCD driver & controller LSI which is fabricated by low power CMOS technology It can display, 2-line with 5 x 8 or 5 x dots

More information

Enhanced Flash MCU with EEPROM HT66F016/HT66F017 HT68F016/HT68F017 HT66F016R/HT66F017R HT68F016R/HT68F017R

Enhanced Flash MCU with EEPROM HT66F016/HT66F017 HT68F016/HT68F017 HT66F016R/HT66F017R HT68F016R/HT68F017R Enhanced Flash MCU with EEPROM HT66F016/HT66F017 HT68F016/HT68F017 HT66F016R/HT66F017R HT68F016R/HT68F017R Revision: 1.40 Date: November 22, 2016 Table of Contents General Description...7 Features...7

More information

ST2602B 8 BIT Integrated Microcontroller with 256K Bytes ROM

ST2602B 8 BIT Integrated Microcontroller with 256K Bytes ROM Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ ST2602B 8 BIT Integrated Microcontroller with 256K Bytes ROM PRELIMINARY Notice: Sitronix Technology Corp. reserves

More information

BL55077(A) LCD Driver

BL55077(A) LCD Driver BL55077(A) LCD Driver LCD Driver for 160 Display Units BL55077(A) General Description The BL55077(A) is a general LCD driver IC for 160 units LCD panel. It features a wide operating supply voltage range,

More information

MK6A12P 8Bit Microcontroller

MK6A12P 8Bit Microcontroller General Description MK6A12P The MK6A12P is an 8 bit RISC high performance microcontroller. It has 1Kx14bits OTP (One Time Programmable) ROM, 48 Bytes RAM, Timer/Counter, Interrupt, LVR(Low Voltage Reset)

More information

EU bit MCU with 10-bit A/D Converter. Features. Description. Ordering Information

EU bit MCU with 10-bit A/D Converter. Features. Description. Ordering Information 8-bit MCU with 10-bit A/D Converter Features 2.2V to 5.5V Input Voltage Range 14 I/O ports in RAM size: 128 x 8 bits The STACK RAM is included. Program ROM size: 4K x 8 bits OTP 10 bits A/D Converter input

More information

HT36B0 8-Bit Music Synthesizer MCU

HT36B0 8-Bit Music Synthesizer MCU 8-Bit Music Synthesizer MCU Features Operating voltage: 3.6V~5.0V Operating frequency: 3.58MHz~12MHz, RC typ. 11.059MHz 36 bidirectional I/O lines Two 16-bit programmable timer/event counters with overflow

More information

HT48RA0-5 Remote Type 8-Bit OTP MCU

HT48RA0-5 Remote Type 8-Bit OTP MCU Remote Type 8-Bit OTP MCU Features Operating voltage: f SYS =4MHz at V DD =2.0V~3.6V (LVR enabled) f SYS =4MHz at V DD =.8V~3.6V (LVR disabled) Oscillator types: External high frequency Crystal -- HXT

More information

DATA SHEET. Apr. 29, 2015 Version 1.0

DATA SHEET. Apr. 29, 2015 Version 1.0 DATA SHEET GPL833FXXA 8-bit LCD Controller/Driver with 96KB Flash Apr. 29, 2015 Version 1.0 GENERALPLUS TECHNOLOGY INC. reserves the right to change this documentation without prior notice. Information

More information