开发板:nanopi-neo (可适用其他开发板)
环境系统:ubuntu core
//先安装WiringPi库
git clone https://github.com/friendlyarm/WiringNP
cd WiringNP/
chmod 755 build
./build
vi test.c
#include <wiringPi.h>
int main(void)
{
wiringPiSetup() ;
pinMode (7, OUTPUT) ;
for(;;)
{
digitalWrite(7, HIGH) ;
delay (500) ;
digitalWrite(7, LOW) ;
delay (500) ;
}
}
//编译和运行test
gcc -Wall -o test test.c -lwiringPi -lpthread
sudo ./test
版权声明:本文为博主原创文章,转载请注明文章来源,有需要帮忙可加QQ:871263854