0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示

如何将1个或多个Arduino与树莓派结合使用

454398 来源:网络整理 作者:网络整理 2019-11-19 11:12 次阅读

步骤1:RaspberryPi电路

如何将1个或多个Arduino与树莓派结合使用

您将需要一种将RaspberryPi线路连接到面包板的方法。您可以使用公/母跳线,但是本页上列出的Adafruit的Pi补鞋匠将使其变得更容易:http://www.adafruit.com/search?q=cobbler

对于您还将需要的RaspberryP电路:

RaspberryPi

面包板

跳线

2-LED,我用了一个红色和绿色。

2-330-560欧姆电阻,用于LED。

1-按钮开关

1-10K电阻,下拉电阻用于开关。

使用这些部件复制上图中的电路。

除了http://www.adafruit上Adafruit的电阻器外,您还可以获取所需的一切。 .com/

或在Sparkfun上https://www.sparkfun.com/

Sparkfun还提供了一个不错的电阻器组合,其中包括您需要的每个电阻值中的25个,您可以在这里https://www.sparkfun.com/products/10969。

第2步:Arduino电路

第一个Arduino使用了从RaspberryPi调用的pinMode(),digitalRead(),digitalWrite(),analogRead()和pwmWrite()函数。这是我知道将最简单的方法添加到RaspberryPi的模数转换器。请注意,connectionPi使用pwmWrite而不是AnalogWrite,它更准确。

第二个Arduino只是在RaspberryPi的控制下,闪烁了13针上的内置LED。这只是表明它确实可以控制多个Arduino。它还显示了connectionPi的多线程功能的很好但简单的使用。

如果只有一个Arduino,您仍然可以尝试该程序,第5步是使用一个arduino的程序。

我在原型屏蔽板上构建了Arduino电路,但我展示了

对于Arduino电路,您将需要:

2-Arduinos

2-连接到的USB电缆RaspberryPi

面包板

跳线

2-LED,我使用了一个红色和一个绿色。

2-330-560欧姆电阻,用于LED。

1-按钮开关

1-电阻传感器

2-10K电阻,开关和传感器的下拉电阻。

使用这些部件复制上图中的电路。

我在电阻传感器中使用了力敏电阻,但是光电管或弯曲传感器也能正常工作。您也可以使用电位计。要为电位器接线,请忘掉10K电阻,将中间引线连接到该引脚,一端引线连接到正极轨,另一端接地。

步骤3:代码

为您的RaspberryPi下载此程序。

使用以下命令对其进行编译:

gcc -o DRCtest DRCtest.c -lwiringPi -lpthread

并使用以下命令运行它:

sudo 。/DRCtest

/************************************************************************

* DRCtest.c - Test program for Drogon Remote Control. (DRC)

*

* On the first Arduino:

* LEDs are connected to pins nine and eleven, with 560 Ohm current limiting resistors.

* A push button switch is connected to pin five, with a 10K pull-down resistor.

* A resistive sensor is connected to analog pin zero, with a 10K pull-down resistor.

* The only connection to the RaspberryPi is the USB cable.

* The program in the RaspberryPi is controling the Arduino.

* The DRC.ino program must be installed and running.

*

* Nothing is connected to the second Arduino.

*

* On the RaspberryPi:

* LEDs are connected to pins nine and eleven, with 560 Ohm current limiting resistors.

* A push button switch is connected to pin five, with a 10K pull-down resistor.

* The pin numbers for the RaspberryPi use the wiringPi pin numbering scheme.

*

* The loop() function does a digitalRead of the push button on the Arduino

* and digitalWrites the value to the both red LEDs

* Next it performs an analogRead of the force sensitive resistor, divides

* the value by four, and pwmWrites the value to both green LEDs.

* Then is does a digitalRead of the push button on the RaspberryPi

* and digitalWrites the value to the both red LEDs

*

************************************************************************/#include

#include

#include

#define BASE 100

#define BASE2 200/*****************************************************************************

* The second thread blinks the built in LED on pin 13 of the Second Arduino.

* The code here runs concurrently with the main program in an infinite loop.

*****************************************************************************/

PI_THREAD(arduino2)

{

for(;;)

{

digitalWrite(BASE2+13, HIGH); // Turn pin 13 on.

delay(500);

digitalWrite(BASE2+13, LOW); // Turn pin 13 off.

delay(500);

}

}/**************************************************************************

* setup() function

**************************************************************************/

void setup(void)

{

wiringPiSetup();

drcSetupSerial(BASE, 20, “/dev/ttyACM0”, 115200);

drcSetupSerial(BASE2, 20, “/dev/ttyACM1”, 115200);

int x = piThreadCreate(arduino2); // Start second thread.

if (x != 0) printf(“It didn‘t start. ”);

// Pins on Arduino:

pinMode (BASE+11, PWM_OUTPUT); // Reset pin to maximum value

pwmWrite(BASE+11, 255); // after PWM write.

pinMode (BASE+5, INPUT); // Pin 5 used for digitalRead.

pinMode (BASE+9, PWM_OUTPUT); // Pin 9 used for pwmWrite.

// Pin A0 is used for analogRead.

// Pins on second Arduino:

pinMode (BASE2+13, OUTPUT); // Pin 13 used for digitalWrite.

// Pins on RaspberryPi:

pinMode(0, OUTPUT); // Pin 0 used for digitalWrite.

pinMode(5, INPUT); // Pin 5 used for digitalRead.

pinMode(1, PWM_OUTPUT); // Pin 1 used for pwmWrite.

}/**************************************************************************

* loop() function

**************************************************************************/

void loop(void)

{

digitalWrite(BASE+11, digitalRead(BASE+5)); // If Arduino button is pressed

digitalWrite(0, digitalRead(BASE+5)); // turn on both red LEDs.

pwmWrite(BASE+9, (analogRead(BASE)/4)); // Varies the brightness of both green

pwmWrite(1, (analogRead(BASE)/4)); // LEDs according to pressure applied

// to the force sensitive resistor.

digitalWrite(BASE+11, digitalRead(5)); // If RaspberryPi button is pressed

digitalWrite(0, digitalRead(5)); // turn on both red LEDs.

}/**************************************************************************

* main() function

**************************************************************************/

int main (void)

{

setup();

for(;;)

{

loop();

}

return 0 ;

}

第4步:将它们放在一起

将第6步中的Arduino草图上传到您将要使用的Arduino。

关闭RaspberryPi并连接RaspberryPi电路。插入USB端口之前必须先关闭RaspberryPi,否则RaspberryPi不会将它们注册为正确的设备。第一个Arduino是/dev/ttyACM0,第二个是/dev/ttyACM1。如果您没有将Arduinos插入正确的USB端口,则会将命令发送到错误的Arduino。在B +型上,第一个Arduino在与GPIO接头相同的顶部USB端口中。第二个Arduino在下面的底部USB端口中。如果您使用的是USB集线器,则必须在各个端口之间切换以查看其工作原理

打开RaspberryPi并使用以下命令运行该程序:

sudo 。/DRCtest

按下RaspberryPi电路上的按钮应点亮红色LED。 RaspberryPi电路和第一个Arduino。

按下第一个Arduino上的按钮也会点亮两个红色LED。

改变电阻传感器会导致绿色LED的亮度发生变化。

在第二个Arduino上,板载引脚13指示器LED应当闪烁并熄灭。

如果第一次不起作用,请关闭所有设备并反转USB端口。

步骤5:使用一个Arduino运行程序

如果没有第二个Arduino,您仍然可以尝试演示。

下载此版本的程序并使用以下命令进行编译:

gcc- o DRCtest-1 DRCtest-1.c -lwiringPi

并使用以下命令运行程序:

sudo 。/DRCtest-1

仅使用一个Arduino您可以在关闭电源的情况下将Arduino插入任何USB端口,然后它将正常工作。

责任编辑:wv

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • Arduino
    +关注

    关注

    188

    文章

    6469

    浏览量

    187094
  • 树莓派
    +关注

    关注

    116

    文章

    1707

    浏览量

    105649
收藏 人收藏

    评论

    相关推荐

    树莓传感器使用方法 树莓 Raspberry Pi 4优缺点

    开发和物联网应用。以下是一些基本的树莓传感器使用方法: 1. 连接传感器 GPIO引脚 :树莓的GPIO(通用输入/输出)引脚允许直接连
    的头像 发表于 12-06 10:35 438次阅读

    树莓Arduino的区别是什么

    在当今的科技世界中,树莓(Raspberry Pi)和Arduino是两经常被提及的名字。它们都是开源硬件平台,但它们的目标、功能和用途却大相径庭。
    的头像 发表于 11-11 11:14 763次阅读

    树莓gpio有什么用,树莓gpio接口及编程方法

    一、树莓GPIO的用途 树莓(Raspberry Pi)是一款小巧、功能强大的单板计算机,广泛应用于编程教育、物联网项目、家庭媒体中心等领域。GPIO(General Purpos
    的头像 发表于 10-22 18:09 865次阅读

    什么是树莓树莓是什么架构的

    什么是树莓 树莓(Raspberry Pi,简写为RPi,别名为RasPi/RPI)是由英国“Raspberry Pi 慈善基金会”开发的一款为学习计算机编程教育而设计的微型电脑。
    的头像 发表于 10-22 17:33 879次阅读

    树莓和51单片机哪个有优势

    树莓和51单片机是两种不同的硬件平台,它们各自有其特点和优势。在决定使用哪一之前,我们需要了解它们的基本特性、应用场景和开发难度。 1. 简介 1.1
    的头像 发表于 09-02 09:04 822次阅读

    树莓的功能用途是什么

    树莓(Raspberry Pi)是一款由英国树莓基金会研发的信用卡大小的单板计算机,自2012年推出以来,已经发展出多个型号和版本。
    的头像 发表于 08-30 18:01 2691次阅读

    树莓4b和什么性能计算机相当

    树莓4B与何种性能的计算机相当,这个问题涉及到多个方面的比较,包括处理器性能、内存大小、接口丰富度以及应用场景等。以下是从这些方面进行的综合分析: 1. 处理器性能
    的头像 发表于 08-30 17:01 997次阅读

    树莓装ubuntu和raspbian哪个更好

    树莓(Raspberry Pi)是一款由英国树莓基金会开发的单板计算机,广泛应用于教育、科研、物联网等领域。树莓
    的头像 发表于 08-30 15:41 1324次阅读

    树莓5,Raspberry Pi 5 评测

    会触发安全关机。这种关机更像是待机模式,树莓的功耗为1.4瓦。按下电源按钮启动树莓5。你还可以编程操作系统,
    发表于 06-19 14:51

    新手入门如何选择Arduino树莓

    树莓2的主频速度和内存量两主要方面都远高于Arduino树莓可以被看作一台完全独立的计算
    发表于 04-28 14:56 631次阅读
    新手入门如何选择<b class='flag-5'>Arduino</b>与<b class='flag-5'>树莓</b><b class='flag-5'>派</b>?

    如何将LED连接到Arduino板并使其闪烁

     在本快速入门指南中,您将学习如何将 LED 连接到 Arduino 板并使其闪烁。
    的头像 发表于 02-11 10:53 2224次阅读
    <b class='flag-5'>如何将</b>LED连接到<b class='flag-5'>Arduino</b>板并使其闪烁

    如何将按钮连接到Arduino

    在本快速入门指南中,您将学习如何将按钮连接到Arduino板,并根据按钮是否被按下来读取HIGHLOW。您将使用电路板上随附的发光二极管 (LED)通过按钮打开和关闭,以便验证按钮按下代码是否正常工作。
    的头像 发表于 02-11 10:52 3852次阅读
    <b class='flag-5'>如何将</b>按钮连接到<b class='flag-5'>Arduino</b>板

    如何将增量旋转编码器与Arduino连接

    在本教程中,您将学习如何将增量旋转编码器与Arduino连接,以读取旋钮的运动。这对于在机器人和其他应用程序中创建用户界面读取机械位置非常有用。
    的头像 发表于 02-11 10:00 1440次阅读
    <b class='flag-5'>如何将</b>增量旋转编码器与<b class='flag-5'>Arduino</b>连接

    树莓主板如何连接电脑

    连接树莓派到电脑是一非常有用的功能,它可以让我们在电脑上进行树莓的操作和管理。本文详细介绍如何连接
    的头像 发表于 01-07 15:40 1976次阅读

    基于树莓的环境监测系统

    树莓(Raspberry Pi)是一种小型而功能强大的计算机,其性能和功能足以支持许多应用领域。在环境监测系统中,树莓也被广泛应用。本文
    的头像 发表于 01-04 15:15 2714次阅读