Is this slow response time normal?

Post here about your Arduino projects, get help - for Adafruit customers!

Moderators: adafruit_support_bill, adafruit

Is this slow response time normal?

Postby ubestbsteppin » Thu Nov 08, 2012 7:20 pm

I'm new to arduino's and am curious if the response time I'm seeing between a button press and LED illumination or normal. Here is the part of my code that I'm talking about:

Code: Select all
void  loop()
{
    DateTime now = RTC.now();
  setTime(now.hour(),now.minute(),now.second(),now.day(),now.month(),now.year()); // set time & date
  Alarm.delay(1000);
  Alarm.delay(1000);
  btn2val = digitalRead(btn2);
  if (btn2val == LOW) {
  do1();
  }
  btn1val = digitalRead(btn1);
  if (btn1val == LOW) {
    Serial.println("Button 1 pressed");
    do2();
  }
  btn3val = digitalRead(btn3);
  if (btn3val == LOW) {
    do3();
  }
}


Each of the functions illuminate an LED and write to an LCD. Like this:

Code: Select all
void do2()
{
digitalWrite(rgbledPin1, HIGH);   
digitalWrite(rgbledPin2, HIGH);
lcd.clear();
lcd.print("Positive");
   delay(3000);
lcd.clear();
lcd.print("Ready for input");

}


The issue is that I have to hold down the button for about 1 second before the function will run. I was thinking that maybe the loop just doesn't run fast enough to detect the button press unless it is held down. Is that correct?
ubestbsteppin
 
Posts: 23
Joined: Fri Aug 05, 2011 6:16 pm

Re: Is this slow response time normal?

Postby adafruit_support_bill » Fri Nov 09, 2012 6:01 am

It looks like you have a lot of delays in your code. These will slow down the loop and your button-press detection.
User avatar
adafruit_support_bill
 
Posts: 15995
Joined: Sat Feb 07, 2009 9:11 am


Return to Arduino

Who is online

Users browsing this forum: Exabot [Bot] and 8 guests

Stuff to buy from the Adafruit store and links to product documentation!


New Products [102]

Raspberry Pi[80]
 
FLORA[23]
 
Bunnie Studios[9]
 
FPGA[1]
 
mbed[11]
Arduino[60]
 
NETduino[14]
 
BeagleBone[24]
 
Android[6]
 
XBee[10]
More Dev Boards[30]


 
BoArduino[8]
 
SpokePOV[4]
 
TV-B-Gone[4]
 
MiniPOV[3]
 
SIM reader[3]
 
Microtouch[5]
 
Clocks & Watches[18]
 
Drawdio[4]
 
Brain Machine[1]
 
Game of Life[2]
 
MintyBoost[2]
More DIY Kits[16]


 
MaKey MaKey[3]
 
Tweet-a-Watt[5]
 
Young Engineers[33]
 
Discover Electronics[2]
 
Snap Circuits[4]
 
littleBits[3]
 
Project packs[8]


 
Breakout Boards[33]
LCDs & Displays[48]
Components & Parts[69]
Batteries & Power[49]
EL Wire/Tape/Panel[52]
LEDs[109]
 
Wireless[14]
Cables[60]
 
Lasers[6]
Sensors/Parts[145]
 
Enclosures/Cases[11]
 
Solar[11]
 
RFID / NFC[13]
Prototyping[70]
 
iDevices[13]
Tools[71]
 
Wearables[39]
 
CNC[37]
 
Robotics[29]
 
3D printing[1]
 
Materials[24]


 
Stickers[41]
 
Skill badges[55]
 
Books[25]
 
Circuit Playground[7]
 
Gift Certificates[4]