blink led with remote

Can i define currentMillis and previousMillis in the Setup() function?

Certainly.
But then they won't be in scope in loop().

AWOL:
Certainly.
But then they won't be in scope in loop().

Okay hold up, can i take back my last comment lol. Yes i just realized if i define it in setup() i wont be able to use in loop(). I also realized that it needs to be in loop so that currentMillis is constantly getting updated at the beginning of the loop.

Here is a sketch from a while back that may help you to visualize some things:

//**********************************************************************
 
#include "IRremote.h"
//LarryD

//Sketch to demonstrate using an IR hand remote to control Arduino outputs.
//The remote used here uses the NEC protocol.
//This remote sends the button code (example 0xFF629D) then a repeat code 0xFFFFFFFF
//The repeat code is re-sent as long as an IR remote button is pressed.
//The IR receiver used is the TSOP4838
 
/*  17 IR button remote layout   http://i.imgur.com/X1KIdqI.png
 
   ^
< OK  >  
   v
1  2  3 
4  5  6
7  8  9
*  0  # 
 
*/
 
 
const byte RECV_PIN = 7;   //IR receive pin
 
IRrecv irrecv(RECV_PIN);   //create instance of 'IRrecv'
decode_results results;    //create instance of 'decode_results'
 
unsigned long   TimerUp;   //UP arrow on the remote
boolean         TimerUpFlag = false;
 
unsigned long   TimerDown; //DOWN arrow on the remote
boolean         TimerDownFlag    = false;
 
unsigned long   TimerIntensity;
unsigned long   TimerIncDec;
boolean         intesityUpFlag   = false;
boolean         intesityDownFlag = false;
int             brightness;
 
unsigned long   dummy;
unsigned long * TimerPtr = &dummy; //pointer to the current timer
 
const byte upLED        = 13;  //turns on as long as the UP button is pressed
const byte downLED      = 12;  //turns on as long as the DOWN button is pressed
const byte leftLED      = 11;  //toggles on/off
const byte rightLED     = 10;  //toggles on/off
const byte intensityLED =  9;  //a LED which can have its intensity adjusted
 
 
//                           s e t u p ( )
//**********************************************************************
void setup()
{
  Serial.begin(9600);
  irrecv.enableIRIn(); //start receive
 
  pinMode(upLED,   OUTPUT);
  pinMode(downLED, OUTPUT);
  pinMode(leftLED, OUTPUT);
  pinMode(rightLED, OUTPUT);
  pinMode(intensityLED, OUTPUT); //this is a PWM output pin
 
} //                    E N D  O F  s e t u p ( )
 
 
 
//                            l o o p ( )
//**********************************************************************
void loop()
{
  if (irrecv.decode(&results)) //is there IR remote button code
  {
    //Serial.println(results.value);
    processButton(); //process button press
    irrecv.resume(); //restart for next button press
  }
 
  //**********************                                //Turn off upLED
  //if timing is enabled, is it time to stop
  if (TimerUpFlag && millis() - TimerUp >= 250ul)
  {
    TimerUpFlag = false; //disable timing
    TimerPtr = &dummy;   //pointer to dummy timer
    digitalWrite(upLED, LOW);
  }
 
  //**********************                                //Turn off downLED
  //if timing is enabled, is it time to stop
  if (TimerDownFlag && millis() - TimerDown >= 250ul)
  {
    TimerDownFlag = false; //disable timing
    TimerPtr = &dummy;     //pointer to dummy timer
    digitalWrite(downLED, LOW);
  }
 
  //**********************                                //LED intensity
  //are we still within the adjustment time
  if (millis() - TimerIntensity <= 300ul)
  {
    //is it time to increase/decrease the intensity
    if (millis() - TimerIncDec >= 200ul)
    {
      TimerIncDec = millis();
 
      if (intesityUpFlag == true) //Increase
      {
        brightness += 5;
        if (brightness > 255)
        {
          brightness = 255;
        }
      }
      else if (intesityDownFlag == true) //Decrease
      {
        brightness -= 5;
        if (brightness < 0)
        {
          brightness = 0;
        }
      }
 
      analogWrite(intensityLED, brightness);
      //Serial.println(brightness); //debug
    }
  }
  //stop increasing/decreasing intensity
  else
  {
    intesityUpFlag = false;
    intesityDownFlag = false;
  }
 
  //************************************
  //Other non blocking code goes here
  //************************************
 
} //                   E N D  O F  l o o p ( )
 
 
 
//======================================================================
//                       F U N C T I O N S
//======================================================================
 
//                   p r o c e s s B u t t o n ( )
//**********************************************************************
//process IR remote button presses
void processButton()
{
  switch (results.value)
  {
    //**********************
    case 0xFF629D:                                           //UP Arrow
      {
        Serial.println("UP");
        TimerPtr = &TimerUp;  //point to this timer
        TimerUpFlag = true;   //enable timing
        digitalWrite(upLED, HIGH);
        TimerUp = millis();
      }
      break;
 
    //**********************
    case 0xFFA857:                                           //DOWN Arrow
      {
        Serial.println("DOWN");
        TimerPtr = &TimerDown;  //point to this timer
        TimerDownFlag = true;   //enable timing
        digitalWrite(downLED, HIGH);
        TimerDown = millis();
      }
      break;
 
    //**********************
    case 0xFF22DD:                                           //LEFT Arrow
      {
        Serial.println("LEFT");
        digitalWrite(leftLED, !digitalRead(leftLED));   //Toggle LED
      }
      break;
 
    //**********************
    case 0xFFC23D:                                           //RIGHT Arrow
      {
        Serial.println("RIGHT");
        digitalWrite(rightLED, !digitalRead(rightLED)); //Toggle LED
      }
      break;
 
    //**********************
    case 0xFF42BD:                                           // * button
      {
        Serial.println("*");
        TimerPtr = &TimerIntensity;  //point to this timer
        intesityUpFlag = true;       //enable intensity up adjustment
        intesityDownFlag = false;
        TimerIncDec = millis();
        TimerIntensity = millis();
      }
      break;
 
    //**********************
   case 0xFF52AD:                                           // # button
      {
        Serial.println("#");
        TimerPtr = &TimerIntensity;  //point to this timer
        intesityDownFlag = true;     //enable intensity down adjustment
        intesityUpFlag = false;
        TimerIncDec = millis();
        TimerIntensity = millis();
      }
      break;
 
    //**********************
    case 0xFF02FD:
      Serial.println("OK");
      break;
 
    //**********************
    case 0xFF6897:
      Serial.println("1");
      break;
 
    //**********************
    case 0xFF9867:
      Serial.println("2");
      break;
 
    //**********************
    case 0xFFB04F:
      Serial.println("3");
      break;
 
    //**********************
    case 0xFF30CF:
      Serial.println("4");
      break;
 
    //**********************
    case 0xFF18E7:
      Serial.println("5");
      break;
 
    //**********************
    case 0xFF7A85:
      Serial.println("6");
      break;
 
    //**********************
    case 0xFF10EF:
      Serial.println("7");
      break;
 
    //**********************
    case 0xFF38C7:
      Serial.println("8");
      break;
 
    //**********************
    case 0xFF5AA5:
      Serial.println("9");
      break;
 
    //**********************
    case 0xFF4AB5:
      Serial.println("0");
      break;
 
    //**********************
    case 0xFFFFFFFF: //Repeat code
      {
        Serial.println("REPEAT");
        *TimerPtr = millis();       //reset the current timer
      }
      break;
 
  } // END switch case
 
} //             E N D  o f  p r o c e s s B u t t o n ( )
 
//**********************************************************************
 
//======================================================================
//                        E N D  O F  C O D E
//======================================================================

larryd ill have to read through that later when im off work, but thank you im sure ill find it useful. Here is my latest and greatest code if anyone cares and has been following along.

#include <IRremote.h>
#include <IRremoteInt.h>
 
int RECV_PIN = 0;
int RELAY_PIN = 1;
int LED_PIN = 2;
int BLINK_PIN = 3;

bool signal_on = 0;
bool led_on = 0;

unsigned long previousMillis = 0;
 
IRrecv irrecv(RECV_PIN);
decode_results results;
 
void setup()
{
  pinMode(RELAY_PIN, OUTPUT);
  pinMode(LED_PIN, OUTPUT);
  pinMode(BLINK_PIN, OUTPUT);
  pinMode(RECV_PIN, INPUT);
  irrecv.enableIRIn();

  digitalWrite(RELAY_PIN, LOW);
  digitalWrite(LED_PIN, LOW);
  digitalWrite(BLINK_PIN, LOW);
}
 
void loop() {


unsigned long currentMillis = millis();

 if (currentMillis - previousMillis >= 250) {

	previousMillis = currentMillis;
	led_on = !led_on;
	digitalWrite(BLINK_PIN, led_on);
	
}

  if (irrecv.decode(&results)) {
      signal_on = !signal_on);
      digitalWrite(RELAY_PIN, signal_on ? HIGH : LOW);
      digitalWrite(LED_PIN, signal_on ? HIGH : LOW);     
    irrecv.resume();
  }

}

Here is my latest and greatest code if anyone cares and has been following along.

You didn't compile that, did you?

PaulS:
You didn't compile that, did you?

No i cant do it at work because i dont have the IDE here. Ive been editing it in notepad and then email it to myself so i can have it when i get home. Is there another obvious thing wrong lol?

signal_on = !signal_on);

.

larryd:
signal_on = !signal_on);

.

Just to make sure we are on the same page. Take out the extra ) after !signal_on?

signal_on = !signal_on);

This should be:

signal_on = !signal_on;

These are not good pins to use as they are connected to RX TX

int RECV_PIN  = 0;
int RELAY_PIN = 1;

Consider using these:

int RECV_PIN  = 2;
int RELAY_PIN = 3;
int LED_PIN   = 4;
int BLINK_PIN = 5;

Most remotes (NEC) I have used, send a repeat code (0xFFFFFFFF) after the switch code.

I your remote does this, you may want to filter the repeat code out.

digitalWrite(RELAY_PIN, signal_on ? HIGH : LOW);
digitalWrite(LED_PIN, signal_on ? HIGH : LOW);

Why not?

digitalWrite(RELAY_PIN, signal_on);
digitalWrite(LED_PIN, signal_on);

.

Okay ill try those pins. The problem is that pin 5 is the reset pin on my attiny, is that going to affect anything. Im not sure how the reset pin actually works. And youre right about using

digitalWrite(RELAY_PIN, signal_on);
digitalWrite(LED_PIN, signal_on);

the example code i based my work off of showed it the other way but that seems way more complicated.

I don't have an attiny, pick the pins you want.

.

These are the pins. Any ideas which ones would be best to use?

images.jpg

I plead ignorance, as mentioned don't have a tiny. :frowning:

Looks like 0,1,2,5 might be okay.

.

larryd:
Looks like 0,1,2,5 might be okay.

.

Sorry. I tried to link the image the first time but it looks like it didnt work so i just attatched an image of it on my last post. So a pin layout like this should be correct?

int RECV_PIN = 0;
int RELAY_PIN = 1;
int LED_PIN = 2;
int BLINK_PIN = 5;

You will just have to try it.

.

I definitely will. Im off in 2 hours. I will let you know how it works so you know, also so future people know how to fix the problem.

I went home and had a couple issues but here is the final code that worked perfectly. I will be making a final version without the two leds so it just controls the leds. They were only there for testing purposes but now i am working on the final copy. I will be starting another project today and hope to finish it by the end of the weekend. It will have to do with IR control of a motor. Look for my thread in the forums if youre interested.

#include <IRremote.h>
#include <IRremoteInt.h>
int RECV_PIN = 0;
int RELAY_PIN = 1;
int LED_PIN = 2;
int BLINK_PIN = 4;
int ON_TIME = 10000;

bool signal_on = 0;
bool led_on = 0;

unsigned long previousMillis = 0;
IRrecv irrecv(RECV_PIN);
decode_results results;
void setup()
{
  pinMode(RELAY_PIN, OUTPUT);
  pinMode(LED_PIN, OUTPUT);
  pinMode(BLINK_PIN, OUTPUT);
  pinMode(RECV_PIN, INPUT);
  irrecv.enableIRIn();

  digitalWrite(RELAY_PIN, LOW);
  digitalWrite(LED_PIN, LOW);
  digitalWrite(BLINK_PIN, LOW);
}
void loop() {


  unsigned long currentMillis = millis();

  if (currentMillis - previousMillis >= 250) {

    previousMillis = currentMillis;
    led_on = !led_on;
    digitalWrite(BLINK_PIN, led_on);

  }

  if (irrecv.decode(&results)) {
    signal_on = !signal_on;
    digitalWrite(RELAY_PIN, signal_on ? HIGH : LOW);
    digitalWrite(LED_PIN, signal_on ? HIGH : LOW);
    irrecv.resume();
  }

}

FYI
If a remote sends a repeat code after an initial code, use this to ignore the repeat code.

 if (irrecv.decode(&results))
  {
    if (results.value != 0xFFFFFFFF) //NEC repeat code
    {
      signal_on = !signal_on;
      digitalWrite(RELAY_PIN, signal_on);
      digitalWrite(LED_PIN, signal_on);
    }
    
    irrecv.resume();
  }

.