树莓派项目汇总(整理)

来源:互联网 发布:three.js 教程 编辑:程序博客网 时间:2024/05/26 05:50

几个网站和论坛推荐




树莓派可用软件包一览

  http://www.raspberryconnect.com/raspbian-packages-list


http://www.raspberrypi-spy.co.uk/


极客工坊:

http://www.geek-workshop.com/forum-50-1.html

爱板网

http://www.eeboard.com/bbs/forum.php

树莓派论坛(推荐)

http://www.shumeipai.net/forum.php

树莓派爱好者论坛

http://bbs.shumeipai.org/forum.php

爱上树莓派

http://www.raspicn.com/forum-38-1.html

Arduino 中文社区

http://www.arduino.cn/forum.php

国外树莓派

http://www.forum-raspberrypi.de/




项目:

项目集合整理第一波 http://www.codelast.com/?p=5013


第二波:


1,GPIO控制流水灯      http://www.codelast.com/?p=5155

2,驱动12864液晶显示视频 http://shamiao.com/raspi/5

3,基于USB摄像头的运动视频捕捉和远程web视频监控

4,关于树莓派的30个应用点子

5,树莓派驱动 LCD   http://v.youku.com/v_show/id_XNTA4MTg4MTE2.html

6,树莓派烧写安卓系统   http://www.shumeipai.net/thread-656-1-1.html

7,树莓派读取温湿度传感器 http://blog.csdn.net/liang890319/article/details/8739683,

8,树莓派驱动步进电机http://www.eeboard.com/bbs/thread-5802-1-1.html

                                                                http://www.shumeipai.net/thread-540-1-1.html


9,树莓派+yeelink 实现远程摄像头监控   http://bbs.yeelink.net/thread-108-1-1.html

5分钟一点也不夸张, 在你熟悉Yeelink使用的情况下, 你真的只需几分钟就可以搭建一套在线图像监控, 神马入室小偷啥的, 还能逃过你的千里眼 当然, 要是使用motion来获取图像, 还能做到画面动作检测, 有兴趣的同学可以继续发挥哦. 废话少说, 来看看几分钟怎么做到的吧.

1. 将USB摄像头接到Pi上, 安装驱动, 我所使用的版本(2012-10-28-wheezy-raspbian.img)已经包含了V4L2驱动, 略去xxx字. 有问题的话Google一下
pi@raspberrypi ~ $ ls -l /dev/video0 
crw-rw---T 1 root video 81, 0 Jan  1  1970 /dev/video0

2. 安装抓图软件fswebcam
pi@raspberrypi ~ $ sudo apt-get install fswebcam

3. 登录Yeelink, 在用户中心增加一个设备, 再为之增加一个图像传感器.

4. 在/home/pi下准备脚本yeelink.sh, 内容为以下两行命令, 其中的ApiKey和URL请改为自己设备对应的信息.
sudo fswebcam -d /dev/video0 -r 320x240 --bottom-banner --title "RaspberryPi @ Yeelink" --no-timestamp /home/pi/yeelink.jpg
curl --request POST --data-binary @"/home/pi/yeelink.jpg" --header "U-ApiKey: xxxxxxxxxxxxxxxxxxxx"http://api.yeelink.net/v1.0/device/1022/sensor/1294/photos

为脚本增加可执行权限
pi@raspberrypi ~ $ chmod +x yeelink.sh

5. 将脚本加入cronjob
pi@raspberrypi ~ $ crontab -e

加入下面一行, 让脚本每分钟运行一次, 保存退出.
*/1 * * * * /home/pi/yeelink.sh


搞定, 至此我们的监控就开始运行了, 上网页上看看效果吧
http://www.yeelink.net/devices/1022




树莓派修改office文件 播放ppt

sudo apt-get update

sudo apt-get install libreoffice

http://www.raspberryconnect.com/officesoftware/item/125-libreoffice-raspberry-pi


整理中.....

原创粉丝点击