Skip to content

Commit

Permalink
adding forgotten consts
Browse files Browse the repository at this point in the history
  • Loading branch information
barakwei committed Oct 5, 2014
1 parent 4941d8a commit 03495b4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions IRelectra.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,26 @@

#include "IRremote.h"

#define POWER_OFF 0
#define POWER_ON 1

#define MODE_COOL 0b001
#define MODE_HEAT 0b010
#define MODE_AUTO 0b011
#define MODE_DRY 0b100
#define MODE_FAN 0b101

#define FAN_LOW 0b00
#define FAN_MED 0b01
#define FAN_HIGH 0b10
#define FAN_AUTO 0b11

#define SWING_OFF 0b0
#define SWING_ON 0b1

#define SLEEP_OFF 0b0
#define SLEEP_ON 0b1

class IRelectra
{
public:
Expand Down

0 comments on commit 03495b4

Please sign in to comment.