From 1057cddaa2c82b8d0fd0ec87a2523b7454da3889 Mon Sep 17 00:00:00 2001 From: Sujay Phadke Date: Thu, 1 Dec 2016 11:35:32 +0530 Subject: [PATCH] solve Arduino IDE library warnings 1. get rid of unrecognized category warning in Arduino IDE. It doesn't seem to support multiple categories 2. add esp8266 to the list of architctures to avoid warnings about incompatible architecture. This library works on esp8266 --- library.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library.properties b/library.properties index 77cf2b0..e086eaf 100644 --- a/library.properties +++ b/library.properties @@ -4,7 +4,7 @@ author=sui77 maintainer=sui77,fingolfin sentence=Operate 433/315Mhz devices. paragraph=Use your Arduino or Raspberry Pi to operate remote radio controlled devices. This will most likely work with all popular low cost power outlet sockets. -category=Device Control, Signal Input/Output +category=Device Control url=https://github.com/sui77/rc-switch -architectures=avr -includes=RCSwitch.h \ No newline at end of file +architectures=avr,esp8266 +includes=RCSwitch.h