我学习了一个学期的Comp Sci,这里什么都没有。
我需要调用一个常量int来用于FastLED条带中的LED数量。长话短说,我正试图取代......
#include "FastLED.h"
#define NUM_LEDS_RT 174
#define DATA_PIN_RT 6
#define CLOCK_PIN_RT 5
...
CRGB led[NUM_LEDS_RT + NUM_LEDS_MID + NUM_LEDS_LF + NUM_LEDS_FIRE];
FastLED.addLeds<WS2801, DATA_PIN_RT, CLOCK_PIN_RT, BGR> (led, NUM_LEDS_RT);
使用我自己的库,我创建了LED条带的结构,保存上述信息,由程序的驱动程序文件播种。一切都应该处于正常工作状态,但我无法通过这个第一个错误。例如,包含我的数据的对象是由...构建的
Strip::Strip(int data, int clock, int num)
{
#define DATA_Pin data
#define CLOCK_Pin clock
#define NUM_LEDS num
}
并由司机播种为......
Strip RIGHT(6, 5, 174);
简单地说,是否有办法调用对象具有常量值?发生的错误表明RIGHT.name不是常量变量,并且接收“Led.cpp:39:错误:错误的模板参数数量(4,应该是3)”或其中的一些变体。
请帮忙!如果您需要任何进一步的信息,请告诉我。谢谢!
编辑:添加了更多代码供参考: 剥离类
#ifndef Strip_h
#define Strip_h
#include "Arduino.h"
#include <String>
#include "C:/Program Files (x86)/Arduino/libraries/FastLED/FastLED.h"
class Strip
{
public:
Strip(int data, int clock, int num);
private:
int DATA_Pin;
int CLOCK_Pin;
int NUM_LEDS;
};
#endif
#include "Strip.h"
Strip::Strip(int data, int clock, int num)
{
DATA_Pin = data;
CLOCK_Pin = clock;
NUM_LEDS = num;
}
Led Class
#ifndef Led_h
#define Led_h
include "C:/Program Files (x86)/Arduino/libraries/FastLED/FastLED.h"
#include "Strip.h"
class Led
{
public:
Led(const Strip& name);
Led(const Strip& name, const Strip& name2);
Led(const Strip& name, const Strip& name2, const Strip& name3);
Led(const Strip& name, const Strip& name2, const Strip& name3, const Strip& name4);
private:
};
#endif
Led::Led(const Strip& const Strip&, const Strip& name2, const Strip& name3, const Strip& name4)
{
CRGB led[name.NUM_LEDS + name2.NUM_LEDS + name3.NUM_LEDS + name4.NUM_LEDS];
FastLED.addLeds<WS2801, name.DATA_Pin, name.CLOCK_Pin, BGR>(led, name.NUM_LEDS);
FastLED.addLeds<WS2801, name2.DATA_Pin, name2.CLOCK_Pin, BGR>(led, name.NUM_LEDS, name.NUM_LEDS + name2.NUM_LEDS);
FastLED.addLeds<WS2801, name3.DATA_Pin, name3.CLOCK_Pin, BGR>(led, name.NUM_LEDS + name2.NUM_LEDS, name.NUM_LEDS + name2.NUM_LEDS + name3.NUM_LEDS);
FastLED.addLeds<WS2801, name4.DATA_Pin, name4.CLOCK_Pin, BGR>(led, name.NUM_LEDS + name2.NUM_LEDS + name3.NUM_LEDS, name.NUM_LEDS + name2.NUM_LEDS + name3.NUM_LEDS + name4.NUM_LEDS);
}
驱动程序
#include "Led.h"
#include "MusicChip.h"
#include "Shapes.h"
#include "Strip.h"
const Strip RIGHT(6, 5, 174);
const Strip MID(4, 3, 200);
const Strip LEFT(22, 23, 177);
const Strip FIRE(10, 12, 97);
void setup()
{
delay(1000); // Sanity Check, allows input to settle
Serial.begin(9600);
Led running(RIGHT, MID, LEFT, FIRE);
MusicChip MAIN(0, 8, 7);
}
答案 0 :(得分:0)
创建const对象的正确语法就像你拥有它一样:
const Strip RIGHT(6, 5, 174);
请注意,为了调用带有const引用的函数,您不需要实际拥有const对象。您可以只传递非const对象,并将它们视为const,以便进行该函数调用。
Yuu提到模板问题。很难说,因为你没有发布错误消息以及它们发生的地方,但是这里的代码无可救药地被打破了:
FastLED.addLeds<WS2801, name.DATA_Pin, name.CLOCK_Pin, BGR>(led, name.NUM_LEDS);
以及之后的其他行。必须在编译时解析模板参数。您不能像现在这样在模板参数列表中放置变量。