
互动娱乐
文章平均质量分 74
okie-dokie
...
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
arduino 控制舵机
关于 Arduino http://item.taobao.com/item.htm?id=6804680647 http://item.taobao.com/item.htm?id=4328931317 DFRobot 的板越来越糙了(比别家散货还是好些的),倒是不影响使用。如果很注重外观可以考虑iteadStudio的板 http://itead.taobao.com/,...原创 2011-12-08 00:18:56 · 1527 阅读 · 0 评论 -
stickOS & cui32stem
http://www.seeedstudio.com/depot/customize-your-grove-kit-p-931.html?cPath=138 http://cpustick.com/stickos.htm 基于PIC的控制系统,内置StickOS,支持串口连接直接basic编程(这个比arduinoIDE响应快速得多,而且能看到源码),兼容arduino 闪个...2012-07-21 22:10:58 · 148 阅读 · 0 评论 -
arduino 控制 360度舵机
串口连接(波特率115200),, 正传;. 反转;/ 停止 http://arduino.cc/en/Reference/ServoWriteMicroseconds #include <Servo.h> Servo servo1; void setup() { Serial.begin(115200); Serial.pri...原创 2012-08-12 09:32:18 · 7165 阅读 · 0 评论 -
rpi wifi
/etc/network/interfaces --------- auto lo iface lo inet loopback iface eth0 inet dhcp auto wlan0 allow-hotplug wlan0 iface wlan0 inet dhcp wpa-conf /etc/wpa_supplicant/wpa_supplicant...原创 2013-11-19 17:10:16 · 223 阅读 · 0 评论 -
pyserial & arduino
首先,执行easy_install pyserial。python程序,向串口写一个数字。 import serial s = serial.Serial() s.port = 3 s.baudrate = 9600 s.stopbits = 1 s.open() #print s print s.readline().strip() s.write('10') p...原创 2014-02-21 16:04:41 · 710 阅读 · 0 评论