上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 71 下一页

2014年2月16日

【ARDUINO】HC-05蓝牙不配对问题

摘要: 除了刷主从之外,不配对的原因有1:已经配对其他设备,需用AT+RMAAD来移除。2、默认为蓝牙由绑定指令设置,需改为任意地址连接模式AT+CMODE=1//#define AT 2#define LED 12void setup(){ pinMode(LED,OUTPUT); //pinMode(AT,OUTPUT); Serial.begin(38400); delay(100); Serial.println("AT+CMODE=1"); delay(100); Serial.println("AT+RMAAD");}void loop(){ dig 阅读全文

posted @ 2014-02-16 09:26 colipso 阅读(3748) 评论(0) 推荐(0) 编辑

【ARDUINO】串口无法打开问题

摘要: 1、查看是否串口被锁sudo arduinols /var/locksudo rm /var/lock/LCK..ttyACM*2、查看arduino安装位置dpkg -S XXXX3、原因是debug波特率设为38400,需改为9600~/.arduino/preferences.txtserial.debug_rate=9600参考:http://forum.arduino.cc/index.php?PHPSESSID=9pqtgjb0efgfa9qiqd415bccu1&topic=122816.0 阅读全文

posted @ 2014-02-16 09:17 colipso 阅读(1714) 评论(0) 推荐(0) 编辑

2014年2月15日

【ARDUINO】蓝牙(HC-05)透传

摘要: 1、蓝牙连接ARDUINO工作模式:VCC-5.5V GND-GND TXD-RX RXD-TX 工作模式下默认波特率38400AT模式,在工作模式的基础上KEY-VCC/5.5V设置从模式:#define LED 12void setup(){ pinMode(LED,OUTPUT); Serial.begin(38400); delay(100); Serial.println("AT+ORGL"); delay(100); Serial.println("AT+NAME=S_HC_05");}void loop(){ digitalWrite(LE 阅读全文

posted @ 2014-02-15 23:32 colipso 阅读(2879) 评论(1) 推荐(0) 编辑

2014年2月4日

【Raspberry pi+python+mysql】红外传感器-发邮件-存数据库

摘要: 1、mysqlhttp://dev.mysql.com/doc/refman/5.5/en/tutorial.htmlmysql+pythonhttp://dev.mysql.com/doc/connector-python/en/connector-python-examples.html先打开数据库连接:conn=mdb.connect(host="localhost",user='root',passwd='******',db='sensor',charset='utf8')再取得指针cur=conn. 阅读全文

posted @ 2014-02-04 14:45 colipso 阅读(1254) 评论(0) 推荐(0) 编辑

2014年1月29日

【Raspberry Pi】crontab 定时任务

摘要: 在linux上做定时任务一般用crond两种方法上文已列,但昨天写的crond命令却一直都没有运行,上网查,有说是环境变量的,也有说是时间问题的,都改过,但还没有效。今天再次认真读了一遍crontab的说明,发现昨天的命令理解错了,少打了一个星号,再改多打一个空格也不行,又改,在非root用户下貌似也不行。最后用root权限来写终于成功:sudo crontab -u root -e*/1 * * * * echo "try it" >> /tmp/test.txt*/1 * * * * python /home/pi/Myprogramme/get_tempe 阅读全文

posted @ 2014-01-29 21:57 colipso 阅读(1377) 评论(0) 推荐(0) 编辑

2014年1月28日

【Raspberry Pi】定时运行python程序读温湿度传感器数据&发邮件

摘要: 1、定时执行脚本http://tech.it168.com/a2011/0707/1214/000001214830_all.shtml/sbin/service crond start //启动服务 /sbin/service crond stop //关闭服务 /sbin/service crond restart //重启服务 /sbin/service crond reload //重新载入配置 可以将这个服务在系统启动的时候也自动启动: 在/etc/rc.d/rc.local这个脚本的末尾加上: /sbin/service crond start 1.直接用cronta... 阅读全文

posted @ 2014-01-28 22:30 colipso 阅读(3394) 评论(0) 推荐(0) 编辑

【Raspberry Pi】修改时区

摘要: Raspberry Pi没有时钟模块,所以每次断电都会丢失时间,但它有联网获取时间的预设。但要修改默认时区http://outofmemory.cn/code-snippet/2899/shumei-pai-setting-shiqu-timesudo dpkg-reconfigure tzdata 阅读全文

posted @ 2014-01-28 21:32 colipso 阅读(572) 评论(0) 推荐(0) 编辑

【Raspberry Pi】DHT11 温度湿度传感器数据读取

摘要: 时序图参考厂家说明书:DHT11数字湿温度传感器的原理和应用范例四个阵脚连接:VCC接3.3伏电源,Dout接GPIO口,我接的是物理12针脚,NC留空,GND接地。波折1:电阻被错接进了VCC,于是看了无数遍时序图,改了无数遍的驱动无论怎么改都是读不出数据。波折2:偶然看了网上的DHT11上拉电阻电路图才发现错误,于是果断去掉电阻。但为了显示传感器工作正常在电源和VCC间接了个发光二极管进去,数据倒是读出来了,但各种错误。(原因不明)去掉了电阻,去掉了led,优化了写的python,读数正常。再一次赞一个python。写DHT11的驱动需要注意时序之间很紧密,python执行任何程序都要花费 阅读全文

posted @ 2014-01-28 19:16 colipso 阅读(8986) 评论(1) 推荐(0) 编辑

2014年1月27日

【Raspberry Pi】读取DHT11温度湿度波折

摘要: 从网上找到了DHT11厂家说明书,尝试用python根据时序图写数据获取驱动,但发现python的高层特性导致在做底层代码时例如控制20us时延这类需求就没什么好的办法。还是得回到C-wiringPi 控制gpio官网https://projects.drogon.net/raspberry-pi/wiringpi/http://blog.csdn.net/xukai871105/article/details/17881433 阅读全文

posted @ 2014-01-27 23:08 colipso 阅读(1019) 评论(0) 推荐(0) 编辑

2014年1月25日

【Raspberry Pi】webpy+mysql+GPIO 实现手机控制

摘要: 1、mysqlhttp://dev.mysql.com/doc/refman/5.5/en/index.html安装sudo apt-get install updatesudo apt-get install mysql-server-5.5 mysql-client-5.52、安装web.pysudo apt-get install python-pipsudo pip install web.pyhtml模板$def with(todos) $if todos=='me': My test Hello World ... 阅读全文

posted @ 2014-01-25 17:09 colipso 阅读(1375) 评论(0) 推荐(0) 编辑

上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 71 下一页

导航