12 lines
206 B
Arduino
12 lines
206 B
Arduino
|
#include "Command.h"
|
||
|
Command command;//声明一个自己的该类的对象
|
||
|
void setup() {
|
||
|
// put your setup code here, to run once:
|
||
|
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
// put your main code here, to run repeatedly:
|
||
|
|
||
|
}
|