Hi , I try in a simple code to turn on / off a color of the RGB onboard led , when i include the “LoRaWan_APP.h” the led go crazy an change of color .
I disable the option in arduino "TOOLS =>LORAWAN_RGB = DISABLE
code:
#include “LoRaWan_APP.h” // when I comment this line , the led work fine
#include “CubeCell_NeoPixel.h”
CubeCell_NeoPixel pixels(1, RGB, NEO_GRB + NEO_KHZ400);
void setup() {
pinMode(Vext,OUTPUT);
digitalWrite(Vext,LOW); //SET POWER
pixels.begin(); // INITIALIZE NeoPixel strip object (REQUIRED)
pixels.clear(); // Set all pixel colors to ‘off’
}
void loop() {
pixels.setPixelColor(0, pixels.Color(0, 0, 100));
pixels.show(); // Send the updated pixel colors to the hardware.
delay(100); // Pause before next pass through loop
pixels.clear(); // Set all pixel colors to ‘off’
delay(1000); // Pause before next pass through loop
}
any suggestion to use the led with this library ??
thanks