首页 > 其他分享 >fix apt-get install wiringpi errors All In One

fix apt-get install wiringpi errors All In One

时间:2023-05-03 23:12:17浏览次数:41  
标签:errors .. get fix wiringPi echo install cd make

fix apt-get install wiringpi errors All In One

修复 E: 软件包 wiringpi:armhf 没有可安装候选 错误

C 语言版本 wiringpi

error ❌

$ sudo apt-get install wiringpi

pi@raspberrypi:~/Desktop $ sudo apt-get install wiringpi
正在读取软件包列表... 完成
正在分析软件包的依赖关系树... 完成
正在读取状态信息... 完成
没有可用的软件包 wiringpi:armhf,但是它被其它的软件包引用了。
这可能意味着这个缺失的软件包可能已被废弃,
或者只能在其他发布源中找到

E: 软件包 wiringpi:armhf 没有可安装候选
pi@raspberrypi:~/Desktop $

pi@raspberrypi:~/Desktop $ gcc -o b-led c-led.c -lwiringPi
c-led.c:1:9: fatal error: wiringPi.h: 没有那个文件或目录
    1 | #include<wiringPi.h>
      |         ^~~~~~~~~~~~
compilation terminated.

solution ✅

$ sudo apt-get update
# $ sudo apt-get install build-essential

$ git clone https://github.com/WiringPi/WiringPi.git

$ cd WiringPi/ && ./build

test ✅

$ gpio -v

$ gpio readall
pi@raspberrypi:~/WiringPi $ gpio -v
gpio version: 2.70
Copyright (c) 2012-2018 Gordon Henderson
This is free software with ABSOLUTELY NO WARRANTY.
For details type: gpio -warranty

Raspberry Pi Details:
  Type: Pi 3, Revision: 02, Memory: 1024MB, Maker: Embest 
  * Device tree is enabled.
  *--> Raspberry Pi 3 Model B Rev 1.2
  * This Raspberry Pi supports user-level GPIO access.
pi@raspberrypi:~/WiringPi $

image

pi@raspberrypi:~/WiringPi $ gpio readall
 +-----+-----+---------+------+---+---Pi 3B--+---+------+---------+-----+-----+
 | BCM | wPi |   Name  | Mode | V | Physical | V | Mode | Name    | wPi | BCM |
 +-----+-----+---------+------+---+----++----+---+------+---------+-----+-----+
 |     |     |    3.3v |      |   |  1 || 2  |   |      | 5v      |     |     |
 |   2 |   8 |   SDA.1 |   IN | 1 |  3 || 4  |   |      | 5v      |     |     |
 |   3 |   9 |   SCL.1 |   IN | 1 |  5 || 6  |   |      | 0v      |     |     |
 |   4 |   7 | GPIO. 7 |   IN | 1 |  7 || 8  | 0 | IN   | TxD     | 15  | 14  |
 |     |     |      0v |      |   |  9 || 10 | 1 | IN   | RxD     | 16  | 15  |
 |  17 |   0 | GPIO. 0 |   IN | 0 | 11 || 12 | 0 | IN   | GPIO. 1 | 1   | 18  |
 |  27 |   2 | GPIO. 2 |   IN | 0 | 13 || 14 |   |      | 0v      |     |     |
 |  22 |   3 | GPIO. 3 |   IN | 0 | 15 || 16 | 0 | IN   | GPIO. 4 | 4   | 23  |
 |     |     |    3.3v |      |   | 17 || 18 | 0 | IN   | GPIO. 5 | 5   | 24  |
 |  10 |  12 |    MOSI |   IN | 0 | 19 || 20 |   |      | 0v      |     |     |
 |   9 |  13 |    MISO |   IN | 0 | 21 || 22 | 0 | IN   | GPIO. 6 | 6   | 25  |
 |  11 |  14 |    SCLK |   IN | 0 | 23 || 24 | 1 | IN   | CE0     | 10  | 8   |
 |     |     |      0v |      |   | 25 || 26 | 1 | IN   | CE1     | 11  | 7   |
 |   0 |  30 |   SDA.0 |   IN | 1 | 27 || 28 | 1 | IN   | SCL.0   | 31  | 1   |
 |   5 |  21 | GPIO.21 |   IN | 1 | 29 || 30 |   |      | 0v      |     |     |
 |   6 |  22 | GPIO.22 |   IN | 1 | 31 || 32 | 0 | IN   | GPIO.26 | 26  | 12  |
 |  13 |  23 | GPIO.23 |   IN | 0 | 33 || 34 |   |      | 0v      |     |     |
 |  19 |  24 | GPIO.24 |   IN | 0 | 35 || 36 | 0 | IN   | GPIO.27 | 27  | 16  |
 |  26 |  25 | GPIO.25 |   IN | 0 | 37 || 38 | 0 | IN   | GPIO.28 | 28  | 20  |
 |     |     |      0v |      |   | 39 || 40 | 0 | IN   | GPIO.29 | 29  | 21  |
 +-----+-----+---------+------+---+----++----+---+------+---------+-----+-----+
 | BCM | wPi |   Name  | Mode | V | Physical | V | Mode | Name    | wPi | BCM |
 +-----+-----+---------+------+---+---Pi 3B--+---+------+---------+-----+-----+
pi@raspberrypi:~/WiringPi $ 

image

demos

#include<wiringPi.h>

#define GPIO_PIN 25

int main()
{
  // wiringPi 模式
  if(wiringPiSetup() < 0) {
    return 1;
    // 设置 PIN 为输出针脚
    pinMode(GPIO_PIN, OUTPUT);
    for (int i = 0; i < 10; i++)
    {
      // 写入 高电平
      digitalWite(GPIO_PIN, 1);
      delay(200);
      // 写入 低电平
      digitalWite(GPIO_PIN, 0);
      delay(200);
    }
  }
  return 0;
}


/*

https://aka.ms/vcpkg

vcpkg
C/C++ dependency manager from Microsoft
For all platforms, buildsystems, and workflows

 */

(

标签:errors,..,get,fix,wiringPi,echo,install,cd,make
From: https://www.cnblogs.com/xgqfrms/p/17369876.html

相关文章

  • go krotos proto编译引用外部包 was not found or had errors
    前言kratosprotos生成pb.go文件时,会出现引用其他proto文件报错wasnotfoundorhaderrors,因找不到此文件而无法编译。解决首先我们先了解下protoc中import的两条规则:import不允许使用相对路径;import导入路径应该从根开始的绝对路径这个根开始的绝对路径指......
  • [网络安全]Less-1 GET - Error based - Single quotes - String:基于错误的GET单引号
    判断注入类型GET1and1=2仍有正常回显,说明该漏洞类型不是数字型注入。GET1'and'1'='2没有回显,说明该漏洞类型为字符型注入。判断注入点个数GETid=1'orderby4--+回显UnknownGETid=1'orderby3--+回显如下:说明注入点个数为3个即可构造语句如下-1'unionselect......
  • MFC-GetHeaderCtrl获取列头指针
     CHeaderCtrl*phead=mylist4.GetHeaderCtrl();   ......
  • MFC-GetPixel获取指定点的颜色
     COLORREFcol1=GetPixel(hdc1,100,100);//获取指定点的颜色/*参数1:HDChdc设备环境句柄参数2:intX指定点的X轴坐标,按逻辑单位表示坐标参数3:intY指定点的Y轴坐标,按逻辑单位表示坐标返回值:返回值是该象像点的RGB值。如果指定的像素......
  • MFC-CListCtrl-GetFirstSelectedItemPosition获取第一个选定项的位置
     POSITIONpos=mylist4.GetFirstSelectedItemPosition();//获取第一个选定项的位置/*返回值:成功返回行号;NULL,如果项未被选定*/str.Format(_T("pos=%d\r\n"),pos);OutputDebugString(str);   ......
  • MFC-CListCtrl-GetItemState获取指定行的状态
     for(inti=0;i<mylist4.GetItemCount();i++){UINTn=mylist4.GetItemState(i,LVIS_SELECTED);//获取指定行的状态/*参数1:intnItem行号参数2:UINTnMask要获取的状态LVIS_SELECTED=2选中状态LVIS_FOC......
  • MFC-GetItemText获取文本
     CStringstr1=mylist4.GetItemText(1,1);//获取文本/*参数1:intnItem行号参数2:intnSubItem列号*/OutputDebugString(str1);   ......
  • MFC-GetExtendedStyle获取扩展样式
     DWORDExStyles=mylist4.GetExtendedStyle();//获取扩展样式DWORDoldstyle=mylist4.SetExtendedStyle(ExStyles|LVS_EX_FULLROWSELECT);//设置扩展样式/*指定的扩展样式LVS_EX_GRIDLINES//绘制表格LVS_EX_SUBITEMIMAGES//......
  • cpp future,get,sleep_for,third variable
    #include<chrono>#include<condition_variable>#include<ctime>#include<fstream>#include<future>#include<iomanip>#include<iostream>#include<map>#include<mutex>#include<random>#inc......
  • C++-std::this_thread::get_id()-获取线程id
    C++-std::this_thread::get_id()-获取线程idstd::this_thread::get_id()头文件:<thread>函数:std::this_thread::get_id()用例:std::thread::idthread_id=std::this_thread::get_id();std::thread对象的成员函数get_id()头文件:<thread>函数:std::thread::idget_id()用例:......