respberry Pi
KerNEL.AC.CN
IT自由职业人,资深攻城狮,拥有自己创客工场,拥有新零售SAAS平台和360度人脸识别开放平台。
爱好自驾游,业余投资,喜交天下朋友...
展开
-
Install dlib and face_recognition on a Raspberry Pi
Instructions tested with a Raspberry Pi 2 with an 8GB memory card. Probably also works fine on a Raspberry Pi 3.StepsDownload the latest Raspbian Jessie Light image. Earlier versions of Raspbian won...转载 2019-02-15 09:14:48 · 330 阅读 · 0 评论 -
轻松两步让你的树莓派说中文
Joyuer Joyuer树莓派是我们的好朋友,它作为一台 24 小时值守的微型电脑,可以帮我们实现很多应用,如定时天气播报、朗读新信息等。不过,很多应用要求树莓派能够具备语音播报的能力,这一功能并不随机附送,我们只好自己实现。传统的树莓派 TTS(Text-To-Speech)工具我在网上搜到的有命令行工具 espeak 和原谷歌翻译的 API,前者语音合成效果较差(有限支持中文,效果较差,...转载 2019-02-23 19:01:14 · 1665 阅读 · 0 评论 -
安装dlib和face_recognition在Raspberry Pi上
Instructions tested with a Raspberry Pi 2 with an 8GB memory card. Probably also works fine on a Raspberry Pi 3.StepsDownload the latest Raspbian Jessie Light image. Earlier versions of Raspbia...转载 2019-02-24 16:04:21 · 1984 阅读 · 0 评论 -
修复Linux损坏的文件系统
fsckThe file system consistency check utility most of the time is able to find and recover damaged filesystems. My systems do a filesystem check at every boot, and they get a reboot regularly. Th...转载 2019-02-24 16:54:12 · 5833 阅读 · 0 评论 -
raspberry pi(树莓派)上安装和使用MySQL,并通过Navicat远程访问配置脱坑记录
材料: 树莓派 3B 系统版本:2017-09-07-raspbian-stretch.img Win 7电脑1、在安装之前首先对树莓派更新源文件$ sudo apt-get update$ sudo apt-get upgrade2.、安装MySQL 使用管理员权限运行apt-get获取最新的MySQL:$ sudo apt-get...转载 2019-03-30 16:19:46 · 1114 阅读 · 0 评论 -
raspiberry pi 成功连接联通4G
用的是联通卡,百度了很多相关案例均不成功,最后去除INIT2, 加上Carrier Check = no 成功上网!/etc/wvdial.conf 有效配置内容如下:[Dialer Defaults]#Auto DNS = onInit1 = ATZ#Init2 = ATQ0 V1 E1 S0=0Init3 = AT+CGDCONT=1,"IP","3GNET"Carrier C...原创 2019-04-29 09:59:19 · 751 阅读 · 0 评论 -
树莓派3B开热点并自动启动
创建WiFi热点使用的GitHub上一个开源项目:https://github.com/oblique/create_ap#将代码copy到本地,安装sudo git clone https://github.com/oblique/create_apcd create_apsudo make install#安装依赖的库sudo apt-get install util-...转载 2019-04-29 10:58:57 · 676 阅读 · 1 评论 -
Create a Wi-Fi hotspot in less than 10 minutes with Pi Raspberry!
Have you ever needed to create a second Wi-Fi network in addition to your primary network?If you (or someone close to you) have a business (coffee, restaurant, hairdresser or doctor, in short, a...转载 2019-05-11 00:33:28 · 369 阅读 · 0 评论 -
树莓派使用红外感应传感器
一个简单的被动式红外线传感器可以让你检测运动状态。这个传感器有三个引脚,可用于连接到Raspberry Pi的GPIO端。当该模块检测到运动状态时,其中一个引脚会输出高电压,输出电压大约为3.3V。如果持续检测到运动状态,那么该引脚的电压则保持该电压水平,直至检测不到运动状态时才会恢复为零。另两个引脚分别为5V和GND,连接好后代码如下:import RPi.GPIO as GPIOimpo...转载 2019-07-31 00:29:48 · 736 阅读 · 0 评论