I found that the number of RGBs on board doesn’t match the number on the software mBlock
RGB number incorrect
Qube2
#2
I can confirm this same happen on my side, latest FW is installed. “set led led on board 1…” from mBlock will change led labeled LED2, “set led led on board 2…” will change LED1.
Same if I compile and upload following Arduino code:
#include <Arduino.h>
#include <Wire.h>
#include <Servo.h>
#include <SoftwareSerial.h>
#include <MeMCore.h>
double angle_rad = PI/180.0;
double angle_deg = 180.0/PI;
MeRGBLed rgbled_7(7, 7==7?2:4);
void setup(){
rgbled_7.setColor(1,20,0,0);
rgbled_7.show();
rgbled_7.setColor(2,0,20,0);
rgbled_7.show();
}
void loop(){
}
So one should keep this in mind.