结构和函数 - 不命名类型

Struct & Function - Does not name a type

本文关键字:类型 函数 结构      更新时间:2023-10-16

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

我已经设法完成了大部分工作,但我有点难以理解我的结构和函数应该如何协同工作。

这是我的代码,返回错误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++编译器,那么如果您告诉我们错误发生在哪一行可能会有所帮助。