看到树莓派上一个3.5mm耳机口,从来没用过,折腾一下。 ...
分类:
其他好文 时间:
2018-07-13 15:11:14
阅读次数:
144
deb http://mirrors.ustc.edu.cn/raspbian/raspbian/ stretch main contrib non-free rpi# Uncomment line below then 'apt-get update' to enable 'apt-get sou ...
分类:
Web程序 时间:
2018-06-14 18:20:30
阅读次数:
215
一、树莓派介绍 Raspberry Pi(中文名为“树莓派”,简写为RPi,或者RasPi/RP)是为计算机编程教育而设计,只有信用卡大小的卡片式电脑,其系统基于Linux。树莓派底层是一个完整的Linux操作系统,而不像Android的底层还是一个精简过的Linux嵌入式版本。树莓派是一个开放源代 ...
分类:
其他好文 时间:
2018-06-10 11:49:31
阅读次数:
586
最近在开发智能家居项目hestia-rpi项目中,由于代码结构层级划分不合理,导致了循环引用(import)module失败的问题,错误如下: 1 2 3 4 5 6 7 8 9 10 Traceback (most recent call last): File "./main.py", line ...
分类:
编程语言 时间:
2018-04-21 23:36:09
阅读次数:
256
树莓派3B连接无线网配置,因为自带无线网卡,所以还是很方便的。 ...
分类:
其他好文 时间:
2018-04-16 11:08:55
阅读次数:
154
import RPi.GPIO as GPIOfrom socket import *from time import ctimeimport time host = '192.168.1.100'port = 8000buffsize = 1000ADDR = (host,port)server ...
分类:
其他好文 时间:
2018-02-16 17:38:36
阅读次数:
206
修改树莓派的升级源为国内地址方法,要修改两个文件: 1. /etc/apt/sources.list deb http://mirror.sysu.edu.cn/raspbian/ wheezy main contrib non-free rpi deb http://mirrordirector. ...
分类:
其他好文 时间:
2018-02-11 14:28:00
阅读次数:
1560
1.什么是树莓派 Raspberry Pi(中文名为“树莓派”,简写为RPi,或者RasPi/RPi)是为学生计算机编程教育而设计,只有信用卡 大小的卡片式电脑,其系统基于Linux。 树莓派由注册于英国的慈善组织“Raspberry Pi 基金会”开发,Eben·Upton/埃·厄普顿为项目带头人 ...
分类:
其他好文 时间:
2017-09-22 22:29:18
阅读次数:
172
在基于intel平台安装的RPi desktop关机或者重启时,会存在挂起的问题,一直卡着不动。 页面停留在:plymouth-reboot.service。 经过查询,可能的解决办法如下: https://ubuntu-mate.community/t/solved-boot-raspberry- ...
分类:
其他好文 时间:
2017-09-04 19:00:34
阅读次数:
1202
一、wiringpi写法 可以使用shell指令查看GPIO对应情况: 官方网站:http://wiringpi.com/ 二、bcm2835 GPIO口配置:http://elinux.org/RPi_Low-level_peripherals bcm2835官网:http://www.airsp ...
分类:
其他好文 时间:
2017-08-21 00:21:06
阅读次数:
244