51 single-chip microcomputer realizes single-key repeated keystroke detection

Publisher:chinapxfLatest update time:2016-06-13 Source: eefocus Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere
/*****************************************************************************

Copyright: 2013-07-27.version1.0
File name: key.c
Description: Self-made single key recognition to achieve repeated key function
Author: 
Version: version1.0
Date: 2013.7.27
History: None
**************************************************************/
#include
sbit key=P0^0;
int num=0;

/****************************************************
Function: delay_press()
Description: The delay function when the key is pressed
Calls: None
Called By: key_test()
Table Accessed: None
Table Updated: None
Input: void 
Output: None
Return: 1->press
     0->release
Others: None
******************************************************/
int delay_press(void)
{
 int press=1;
 int i,j;
 for(i=0;i<255;i++)
  for(j=0;j<255;j++)
   press=1;
 press=0;
 return press;
}

/****************************************************
Function: delay()
Description: Delay function
Calls: None
Called By: key_test()
Table Accessed: None
Table Updated: None
Input: void 
Output: None
Return: void 
Others: None
******************************************************/
void delay(void)
{
 int i,j;
 for(j=0;j<25;j++)
  for(i=0;i<25;i++);
}

/********************************************************
Function: key_test()
Description: Single key recognition function
Calls: delay()
Called By: main()
Table Accessed: None
Table Updated: None
Input: void 
Output: num, press the key once and num will increase by one
Return: void 
Others: None
******************************************************/
void key_test(void)
{
 if(!key)
 {
  delay();
  if(!key)
  {
   num++;
   if(num>255)
   num=0; 
  }
 }while(delay_press()); 
}
/*****************************************************
Function: main()
Description: The main function of the program
Calls: key_test()
Called By: None
Table Accessed: None
Table Updated: None
Input: void 
Output: None
Return: void 
Others: None
******************************************************/
void main(void)
{
 //int i;
 while(1)
 {
  key_test();
  P2=~num; 
 }
}

Reference address:51 single-chip microcomputer realizes single-key repeated keystroke detection

Previous article:51 MCU simple control program for wireless module nRF24L01
Next article:Use 51 MCU buttons to set ZTW ESC

Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号