Eclipse+AVR插件,找不到Serial定义-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 3950|回复: 1

Eclipse+AVR插件,找不到Serial定义

[复制链接]
发表于 2021-7-1 13:41 | 显示全部楼层 |阅读模式
本帖最后由 大柳树伯爵 于 2021-7-1 14:09 编辑





#include "Arduino.h"
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;

// the setup routine runs once when you press reset:
void setup() {
  // initialize the digital pin as an output.
  pinMode(led, OUTPUT);
}

// the loop routine runs over and over again forever:
void loop() {
  digitalWrite(led, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);               // wait for a second
  digitalWrite(led, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);               // wait for a second
  Serial.println("test");
}

int main(void)
{
    init();
    setup();

    while (1)
    {
        loop();
    }

    return 0;

}


代码如上,请教在非Arduino IDE环境下,应该如何引入核心库头文件,谢谢!

发表于 2021-8-16 17:18 | 显示全部楼层


















您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 06:36 , Processed in 0.075752 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表