结构和函数 - 不命名类型

Struct & Function - Does not name a type

我正在尝试使用函数和结构将十六进制颜色字符串转换为 RGB 值,然后 return 数据

我已经完成了大部分工作,但我有点难以理解我的 Struct 和 Function 应该如何协同工作。

这是我的代码 return 错误 RGB does not name a type

//Define my Struct
struct RGB {
  byte r;
  byte g;
  byte b;
};

//Create my function to return my Struct
 RGB getRGB(String hexValue) {
  char newVarOne[40];
  hexValue.toCharArray(newVarOne, sizeof(newVarOne)-1);
  long number = (long) strtol(newVarOne,NULL,16);
  int r = number >> 16;
  int g = number >> 8 & 0xFF;
  int b = number & 0xFF;

  RGB value = {r,g,b}
  return value;
}

//Function to call getRGB and return the RGB colour values
void solid(String varOne) {

  RGB theseColours;
  theseColours = getRGB(varOne);

  fill_solid(leds, NUM_LEDS, CRGB(theseColours.r,theseColours.g,theseColours.b));
  FastLED.show();
}

出错的行是:

RGB getRGB(String hexValue) {

有人可以解释一下我做错了什么以及如何解决吗?

如果您使用的是 C 编译器(而不是 C++),您要么必须对结构进行 typedef,要么在使用类型的任何地方使用 struct 关键字。

所以它是:

typedef struct RGB {
  byte r;
  byte g;
  byte b;
} RGB;

然后:

RGB theseColours;

struct RGB {
  byte r;
  byte g;
  byte b;
};

然后:

struct RGB theseColours;

但是,如果您使用的是 C++ 编译器,那么如果您告诉我们错误发生在哪一行,可能会有所帮助。