1.9k 2 分钟

# 接线图 # 树莓派管脚图 # 代码 # C #include <stdio.h>#include <wiringPi.h>#include <pcf8591.h>#define PCF 120int main (void){ int value ; wiringPiSetup () ; // Setup pcf8591 on base pin 120, and address 0x48 pcf8591Setup (PCF, 0x48) ; while(1) // loop...
1.9k 2 分钟

# 接线图 # 树莓派管脚图 # 代码 # C #include <wiringPi.h>#include <stdio.h>#define HallPin 0#define Gpin 1#define Rpin 2void LED(char* color){ pinMode(Gpin, OUTPUT); pinMode(Rpin, OUTPUT); if (color == "RED") { digitalWrite(Rpin, HIGH); digitalWrite(Gpin,...
2.7k 2 分钟

# 接线图 # 树莓派管脚图 # 代码 # C #include <stdio.h>#include <wiringPi.h>#include <pcf8591.h>#define PCF 120int main (void){ int res, tmp, status; wiringPiSetup (); // Setup pcf8591 on base pin 120, and address 0x48 pcf8591Setup (PCF, 0x48); status = 0; while(1) //...
2.7k 2 分钟

# 接线图 # 树莓派管脚图 # 代码 # C #include <stdio.h>#include <wiringPi.h>#include <pcf8591.h>#include <math.h>#define PCF 120#define DOpin 0void Print(int x){ switch(x) { case 1: printf("\n***************\n" ); printf(...
3.1k 3 分钟

# 接线图 # 树莓派管脚图 # 代码 # C #include <stdio.h>#include <wiringPi.h>#include <pcf8591.h>#define PCF 120#define uchar unsigned charint AIN0 = PCF + 0;int AIN1 = PCF + 1;int AIN2 = PCF + 2;char *state[6] = {"home", "up", "down",...
1.8k 2 分钟

# 前言 涉及到 PostgreSQL 10.0 数据库和 postgis 2.4 数据库扩展,基于 docker 安装,在此进行总结和记录~ # 创建命令 docker run --name postgis -d -e POSTGRES_USER=postgres -e POSTGRES_PASS=postgres -e POSTGRES_DBNAME=gis -e ALLOW_IP_RANGE=0.0.0.0/0 -p 5432:5432 -v /home/wy/postgre_data:/var/lib/postgresql -v...
3.4k 3 分钟

# 下载 OIDv4_ToolKit 数据集 git clone https://github.com/EscVM/OIDv4_ToolKit.git# 安装依赖pip install -r .\requirements.txt# 下载 Apple 和 Orange 的数据集 python .\main.py downloader --classes Apple Orange --type_csv all# 转换标签格式 编写 python 脚本如下: from genericpath import isfileimport osimport cv2 as cvroot_dir...
274 1 分钟

# 模型转换 进入 C:\Program Files (x86)\Intel\openvino_2021.4.582\deployment_tools\model_optimizer 目录下,运行: pip install -r requirements_onnx.txt -i https://pypi.tuna.tsinghua.edu.cn/simple python .\mo_onnx.py --input_model...
986 1 分钟

# 前言 前置文章:技巧 - 用 Docker 科学上网 # Ubuntu 配置 sudo apt-get install python3-pip pip install shadowsocks 跳转到 ~/.local/bin 目录下,运行 ./sslocal -s 部署了shadowsocks的云服务器的ip地址 -p 54285 -k shadowsocks的密码 -l 54285 -t 600 -m aes-256-cfb 即可将 Ubuntu 连接到云服务器的 shadowsocks 上。 或新建一个 sslocal 配置文件,如...
1.8k 2 分钟

# 接线图 # 树莓派管脚图 # 代码 # C #include <stdio.h>#include <wiringPi.h>#include <pcf8591.h>#define PCF 120int main (void){ int value ; wiringPiSetup () ; // Setup pcf8591 on base pin 120, and address 0x48 pcf8591Setup (PCF, 0x48) ; while(1) // loop...