惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园_首页
H
Help Net Security
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
The Cloudflare Blog
腾讯CDC
Jina AI
Jina AI
Last Week in AI
Last Week in AI
月光博客
月光博客
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
爱范儿
爱范儿
N
Netflix TechBlog - Medium
F
Fortinet All Blogs

Arduino

ESP32 设备怎么连接 wap2 企业 WiFi(校园网) 好冷清,我来问下初初级问题:入门套件买啥 你们都用什么 ide 去写 arduino? 问下玩 arduino 大佬关于板子的问题 一杯茶一包烟,一个串口调一天…… 有没有办法“复制”UART 信号 有懂 arduino 的吗, 求助一个 arduino nano 控制舵机的问题 绝地求生的硬件宏 - 咋实现键盘鼠标监听的? 有玩 Arduino 的吗,创建了一个 TG 讨论群 又是我, Arduino UNO R3 学习板到了,开始小白之路,又来请教低级问题了 小白问两个很低级的问题,大佬勿喷 串口 WiFi 透传 DT-06,完美兼容蓝牙 HC-06,可以方便制作 WiFi 小车 出售一个 arduino 小车底盘 有没有支持 Arduino 的便宜机械臂?精度不高即可,用来做原型 基于 ESPDuino 的智慧物联开发宝典 Arduino-HTTP 透传使用说明 V 友,有玩 Arduino 开发板的吗? 吊~~~~~~~~~~~~~ [浙江杭州] Android 、ios 高级研发工程师 看过来~~~~~ 想免费做一个 PCB 礼物送朋友或者爱人吗?看过来,教你 30 分钟设计一个 PCB 文件。 Arduino+ nRF24L01 通信不稳定怎么解决? 用 Arduino 做了一个简陋的 Morse 电码机,仅供娱乐 用四个舵机做了一个蓝牙遥控的微型小车 性价比最高的 Arduino WiFi 扩展板 Sublime Text 3 + Arduino IDE + Mac 不能 Select Arduino folder 问题解决 arduino 总算支持中文输入法了... 一个公网 TCP 调试接口给大家 Arduino Day 2015 eclipse 搭建 Arduino 开发环境 Piccolo - the tiny CNC-bot
新手,碰到了一个问题求指点
IanPeverell · 2014-06-04 · via Arduino

新人,最近刚学的Arduino,之前看过谭浩强的C语言(手动斜眼)
今天想联系一下,然后就编了一个程序,结果.......
程序是
const int LED 9
int i = 0;
void setup()
{
pinMode(LED, OUTPUT);
}
void loop()
{
for(i=0; i<255; i++)
{
analogWrite(LED, i);
delay(10);
}
for(i = 255; i > 0; i--)
{
analogWrite(LED, i);
delay(10);
}
}
报错是
sketch_jun04a:1: error: expected initializer before numeric constant
sketch_jun04a.ino: In function 'void setup()':
sketch_jun04a:6: error: 'LED' was not declared in this scope
sketch_jun04a.ino: In function 'void loop()':
sketch_jun04a:11: error: 'i' was not declared in this scope
sketch_jun04a:13: error: 'LED' was not declared in this scope
sketch_jun04a:19: error: 'LED' was not declared in this scope