常见的传感器到了日本人手里
简单的做好了就不简单。 认真学习,提高自己, 貌似就是费加罗气体传感器+灰尘传感器+人体红外+光传感器 请问为什么Arduino 1.0编程时不能输入中文注释? /*用记事本编辑即可使用中文注释Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
// 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
} zzzddd9000 发表于 2013-6-29 22:09 static/image/common/back.gif
/*用记事本编辑即可使用中文注释
Blink
Turns on an LED on for one second, then off for one secon ...
是用记事本写好再复制到里面去么? yes 就是的 学以致用是第一要务~~~:P 妖孽 发表于 2013-6-29 21:54 static/image/common/back.gif
请问为什么Arduino 1.0编程时不能输入中文注释?
站内收缩有解决办法 果然还是靠外形 赋予了很高的灵感,实践是最重要的。 因为这里贴图比较难,直接给个链接吧。
有成语说到:独具匠心,请看看日本人是怎么下功夫的:
http://blog.sina.com.cn/s/blog_4cf1c72e0101obki.html
http://blog.sina.com.cn/s/blog_4cf1c72e0101obkw.html 极客岂能不要精致。
页:
[1]