Category Archives: Raspberry-Pi
三种树莓派温度控制风扇方案整理
三种树莓派温度控制风扇方案整理
不知道为什么Pi3的温度升高的不快(使用桌面环境时升温快),而Pi2的温度升高的很快,也很高,所以就准备买个小风扇给两个小派降降温,但是那个几块钱的风扇噪音真不是吹的,于是就像弄个程序让风扇根据条件转动。走了不少弯路,愿给各位同仁借鉴。 Continue reading 三种树莓派温度控制风扇方案整理
获取树莓派的CPU和GPU温度(Python)
在这篇文章里我将为你展示如何使用Python做一个简单的程序来监视你的树莓派温度。可能你还不知道,树莓派内置了一个传感器你可以用来获取树莓派的CPU和GPU温度。 Continue reading 获取树莓派的CPU和GPU温度(Python)
Raspberry Pi 迅雷
Xware 版本
Xware1.0.31_armel_v5te_glibc.zip
下载地址:http://g.xunlei.com/thread-12545-1-1.html
Xware1.0.05_armel_v5te_glibc.zip
下载地址:http://g.xunlei.com/thread-208-1-1.html Continue reading Raspberry Pi 迅雷
GPS for Raspberry pi
最近很多朋友都想在树莓派上使用gps,遇到很多问题,所以今天单独为大家写一个简单的教程,方便大家使用gps! Continue reading GPS for Raspberry pi
raspberry pi fan control
Almost the most simple code to control raspberry pi fan. Continue reading raspberry pi fan control
使用 RPi.GPIO 模块的输出(Output)功能
1、首先对 RPi.GPIO 进行设置(根据这里的描述) Continue reading 使用 RPi.GPIO 模块的输出(Output)功能
使用 RPi.GPIO 模块的输入(Input)功能
这篇日志的内容应该算是《RPi.GPIO 模块使用基础》Input 部分的扩展讲解,详细讲解了 Input 部分的一些高级应用技巧。
目前有几种途径可以在您的程序中获得 GPIO 的输入信息。第一种也是最简易的一种为在某个时间点检查输入值。这即是所谓的“轮询(polling)”,而且如果您的程序在错误的时间里进行了读取,可能会错过某个输入值。在循环中运用轮询,有可能使处理器资源紧张。另一种对 GPIO 输入进行响应的方式可以使用“中断(interruots)”(边缘检测(edge detection))。边缘可以是从 HIGH 到 LOW 的过度(下降临界值(falling edge))或从 LOW 到 HIGH 的过度(上升临界值(rising edge))。 Continue reading 使用 RPi.GPIO 模块的输入(Input)功能
RPi.GPIO 模块使用基础
RPi.GPIO 模块程序包提供了一个在 Raspberry Pi 中控制 GPIO 的类。
注意,该模块不适合应用到追求实时性或计数周期的应用中。这是由于您无法预测 Ptyhon 何时繁忙,以及资源回收的时间。而且它是运行在基于 Linux 核心的系统中,也不合适用于实时应用 – 原因在于其它进程可能获得更高的 CPU 优先级。如果您一定要追求实时操作的性能,可以考虑购买一块 Arduino 主板http://www.arduino.cc! Continue reading RPi.GPIO 模块使用基础
All about Raspberry Pi GPIO
Introduction
Relative to its size the Raspberry Pi is a powerhorse of a computer – it can drive HDMI displays, process mouse, keyboard, and camera inputs, connect to the Internet, and run full-featured Linux distributions. But it’s more than just a small computer, it’s a hardware prototyping tool! The Pi has bi-directional I/O pins, which you can use to drive LEDs, spin motors, or read button presses. Continue reading All about Raspberry Pi GPIO