我放弃。谷歌也没有回答我或文档。这里有什么问题?
" 在 x.cpp:7 中包含的文件中:/Users/user/Dropbox/Projects/Arduino/libraries/Range/Range.h:27: 错误:数字常量 /Users/user/Dropbox/Projects/Arduino/ 之前的预期标识符库/Range/Range.h:27: 错误:数字常量前应有 ',' 或 '...'
//
// Range.h
// Handles range to ground and altitude
//
// Created by x on 2013-03-27.
//
//
#ifndef RANGE_H_
#define RANGE_H_
#include "NewPing.h"
#define BOTTOM_RF_PIN 5
#define BOTTOM_RF_ECHO_PIN 10
#define BOTTOM_RF_MAX 200
class Range {
public:
Range();
void init();
float toGround();
float toCeiling();
float altitude();
private:
NewPing bottomRF(BOTTOM_RF_PIN, BOTTOM_RF_ECHO_PIN, BOTTOM_RF_MAX);
};
#endif /* RANGE_H_ */