天天看点

Arduino结构体变量使用

Arduino结构体变量使用

程序源码:

/*****本文使用arduino nano********/
//声明 B
struct B
{
   
  char c;
  short s;
  double d;
};
//声明 Stu
struct Stu
{
   
  //成员变量
           

继续阅读