
树莓派
perry0418
这个作者很懒,什么都没留下…
展开
-
树莓派keras、TensorFlow环境安装记录
1.安装arm版的TensorFlow,方法参考:https://github.com/samjabrahams/tensorflow-on-raspberry-pi2.安装kerassudo apt-get install libhdf5-serial-devsudo pip install h5py 安装过程大概需要30-40分钟sudo apt-get install python-s...原创 2018-07-11 09:32:55 · 4800 阅读 · 8 评论 -
树莓派3开启SSH和VNC
开启ssh1.首先安装树莓派设置工具raspi-configsudo apt-get install raspi-config 2.使用raspi-config工具enable ssh serversudo raspi-config选择interfacing options3.查看树莓派的IPifconfig4.在PC上使用xshell 连接ssh开启vncserver1.树莓派上安装vncs...原创 2018-07-11 15:20:37 · 2466 阅读 · 0 评论 -
树莓派3 raspbian系统 红外遥控器 lirc库使用笔记
目的:接入红外接受硬件,使用红外遥控器控制树莓派。硬件图:稍后补。接受口GPIO=18首先安装lirc库sudo apt-get updatesudo apt-get install lircsudo vi /boot/config.txt去掉/boot/config.txt文件中的dtoverlay=lirc-rpi前面的#并添加以下两句 gpio_in_...原创 2018-11-06 23:23:09 · 3392 阅读 · 0 评论 -
树莓派设置静态IP
vi /etc/dhcpcd.conf# 使用 vi 编辑文件,增加下列配置项 # 指定接口 eth0 或者wlan0interface wlan0# 指定静态IP,/24表示子网掩码为 255.255.255.0static ip_address=192.168.1.20/24# 路由器/网关IP地址static routers=192.168.1.1# 手动...原创 2018-11-10 13:32:07 · 2477 阅读 · 0 评论