一、前言
矩陣鍵盤 TTP229 是一種常見的電容觸摸式鍵盤芯片,通常用于電子設(shè)備中的鍵盤輸入控制。以下是關(guān)于 TTP229 的一些介紹:
1. **工作原理**:
- TTP229 是一種電容觸摸式鍵盤控制芯片,通過檢測(cè)觸摸電容變化來實(shí)現(xiàn)按鍵檢測(cè)。每個(gè)按鍵通常設(shè)置為一個(gè)電容觸摸面,當(dāng)用戶觸摸按鍵時(shí),會(huì)改變對(duì)應(yīng)電容的值,TTP229 通過檢測(cè)這些值的變化來確定哪個(gè)按鍵被按下。
2. **特點(diǎn)**:
- **多通道**:TTP229 可以支持多達(dá) 16 個(gè)觸摸通道,因此適合設(shè)計(jì)多按鍵的鍵盤或面板。
- **低功耗**:通常情況下,TTP229 在工作時(shí)的功耗較低,適合于需要長時(shí)間運(yùn)行的電池供電設(shè)備。
- **簡單接口**:通常通過串行接口(如 I2C 或 SPI)與主控芯片通信,易于集成到各種嵌入式系統(tǒng)中。
3. **應(yīng)用**:
- **電子產(chǎn)品**:常見用于各種小型家電、消費(fèi)電子產(chǎn)品的按鍵控制。
- **工業(yè)設(shè)備**:用于控制面板或設(shè)備操作界面的按鍵輸入。
- **教育和DIY項(xiàng)目**:因其易用性和可靠性,經(jīng)常被用于教育實(shí)驗(yàn)和DIY電子項(xiàng)目中。
4. **使用注意事項(xiàng)**:
- **環(huán)境干擾**:電容觸摸技術(shù)受到環(huán)境干擾的影響較大,應(yīng)盡量避免在強(qiáng)電磁場(chǎng)或靜電干擾較多的環(huán)境中使用。
- **地線連接**:確保設(shè)備的地線連接良好,以保證按鍵觸摸的準(zhǔn)確性和穩(wěn)定性。
總體來說,TTP229 是一種常用的電容觸摸式鍵盤芯片,適合于需要簡單而有效的觸摸按鍵輸入控制的各種應(yīng)用場(chǎng)景。
二、資料獲取
關(guān)注微信公眾號(hào)--星之援工作室 發(fā)送關(guān)鍵字(TTP229)
網(wǎng)上開源的項(xiàng)目資料,可自行移植
????
三、設(shè)備使用
接線
PB6 -> SCL
PB7 -> SDI
四、代碼編寫
?main.c
實(shí)現(xiàn)函數(shù)調(diào)用
#include "sys.h"
#include "delay.h"
#include "usart.h"
#include "usmart.h"
#include "string.h"
#include "rtc.h"
#include "malloc.h"
#include <stdio.h>
#include "key.h"
#include "led.h"
#include "common.h"
#include "TTP229.h"
struct stuIoT stuAliOSIoT;
u8 USART1_TX_BUF[USART_REC_LEN]; //串口1,發(fā)送緩存區(qū)
__align(4) u8 dtbuf[50]; //打印緩存器
int main(void)
{
u8 t=0;
u8 key=0XFF;
int times = 0;
u16 nSecond = 0;
unsigned int NowHour,NowMinute,NowSecond;
u8 dtbuf[50]; //打印緩存器
memset(dtbuf,'?',50);
//初始化
//延時(shí)函數(shù)初始化
delay_init();
uart_init(115200); //串口1:Debug,初始化為115200
USART_RX_STA=0;
memset(USART_RX_BUF, 0, sizeof(USART_RX_BUF));
LED_Init();
Touch_Configuration();
while(RTC_Init()) //RTC初始化 ,一定要初始化成功
{
printf("RTC ERROR! nr");
delay_ms(800);
printf("RTC Trying...nr");
}
USART1_Send_String("System Init OK 20211201 rn");
//主循環(huán)
while(1)
{
times++;
if(t!=calendar.sec)
{
t=calendar.sec;
sprintf((char *)dtbuf,"%02d:%02d:%02d rn",calendar.hour,calendar.min,calendar.sec);
nSecond++;
}
key = Touch_KeyScan();
if(key!=0)
{
sprintf((char *)dtbuf,"TouchKey No.:%02d rn",key);
USART1_Send_String((char *)dtbuf);
//delay_ms(500);
}
}
}
TTP229.c
#include "TTP229.h"
#include "delay.h"
void Touch_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOB, ENABLE ); //使能GPIOB時(shí)鐘
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; //端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP ; //推挽輸出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //50Mhz速度
GPIO_Init(GPIOB, &GPIO_InitStructure);
SDA_OUT();
TTP_SDO = 0;
TTP_SCL = 0;
Touch_Read();
}
uint16_t Touch_Read2(void)
{
uint8_t i = 0;
uint16_t real_Value = 0;
SDA_OUT();
TTP_SDO = 1;
delay_us(100);
TTP_SDO = 0;
delay_us(20);
SDA_IN();
for (i = 0; i < 16; i ++)
{
TTP_SCL = 1;
delay_us(200);
TTP_SCL = 0;
if (TTP_SDI == 1)
{
real_Value |= (1 << i);
}
delay_us(200);
}
delay_ms(2);
return real_Value;
}
uint16_t Touch_Read(void)
{
uint8_t i = 0;
uint16_t real_Value = 0;
SDA_OUT();
TTP_SDO = 1;
delay_us(100);
TTP_SDO = 0;
delay_us(20);
SDA_IN();
for (i = 0; i < 16; i ++)
{
TTP_SCL = 1;
delay_us(100);
TTP_SCL = 0;
delay_us(1);
if (TTP_SDI == 1)
{
real_Value |= (1 << i);
}
}
delay_ms(2);
return real_Value;
}
uint16_t Previous = 0;
uint16_t Current = 0;
uint8_t Touch_KeyScan(void)
{
uint8_t key = 0;
Current = Touch_Read();
if ((Current & 0x0001) && !(Previous & 0x0001))
{
key = 1;
}
else if ((Current & 0x0002) && !(Previous & 0x0002))
{
key = 2;
}
else if ((Current & 0x0004) && !(Previous & 0x0004))
{
key = 3;
}
else if ((Current & 0x0008) && !(Previous & 0x0008))
{
key = 4;
}
else if ((Current & 0x0010) && !(Previous & 0x0010))
{
key = 5;
}
else if ((Current & 0x0020) && !(Previous & 0x0020))
{
key = 6;
}
else if ((Current & 0x0040) && !(Previous & 0x0040))
{
key = 7;
}
else if ((Current & 0x0080) && !(Previous & 0x0080))
{
key = 8;
}
else if ((Current & 0x0100) && !(Previous & 0x0100))
{
key = 9;
}
else if ((Current & 0x0200) && !(Previous & 0x0200))
{
key = 10;
}
else if ((Current & 0x0400) && !(Previous & 0x0400))
{
key = 11;
}
else if ((Current & 0x0800) && !(Previous & 0x0800))
{
key = 12;
}
else if ((Current & 0x1000) && !(Previous & 0x1000))
{
key = 13;
}
else if ((Current & 0x2000) && !(Previous & 0x2000))
{
key = 14;
}
else if ((Current & 0x4000) && !(Previous & 0x4000))
{
key = 15;
}
else if ((Current & 0x8000) && !(Previous & 0x8000))
{
key = 16;
}
Previous = Current;
return key;
}
TTP229.h
#ifndef __TTP229_H__
#define __TTP229_H__
#include "sys.h"
//#define SDA_IN() {GPIOB->CRL&=0X0FFFFFFF;GPIOB->CRL|=8<<8;}
//#define SDA_OUT() {GPIOB->CRL&=0X0FFFFFFF;GPIOB->CRL|=3<<8;}
#define SDA_IN() {GPIOB->CRL&=0X0FFFFFFF;GPIOB->CRL|=0X80000000;}
#define SDA_OUT() {GPIOB->CRL&=0X0FFFFFFF;GPIOB->CRL|=0X30000000;}
#define TTP_SCL PBout(6)
#define TTP_SDO PBout(7)
#define TTP_SDI PBin(7)
extern uint16_t Touch_Read(void);
extern uint16_t Touch_Read2(void);
extern void Touch_Configuration(void);
extern uint8_t Touch_KeyScan(void);
#endif
五、參考
物聯(lián)網(wǎng)畢設(shè) -- 智能門禁系統(tǒng)(STM32+人臉+RFID+密碼+APP+WIFI)https://blog.csdn.net/herui_2/article/details/139135120?spm=1001.2014.3001.5501
聯(lián)系方式 微信號(hào):13648103287