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

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

3天内不再提示

如何制作Arduino雷达

454398 来源:wv 2019-08-28 11:06 次阅读

第1步:材料和程序

此构建所需的材料包括:

- 1个伺服

- 1个超声波传感器

- 1个蜂鸣器

- 1面包板

- 1 UNO R3 Arduino

- 电线堆

制作此雷达所需的程序:

- Arduino IDE

- 处理3.4

要将上述程序下载到您的计算机上,请点击以下链接:

- https://www.arduino.cc/en/main/software

-https://processing.org/download/

第2步:Arduino代码

这是arduino代码,它基本上控制伺服和传感器的运动和输入。这是从youtube视频https://www.youtube.com/watch?v=JvmIutmQd9U复制而来,似乎与我的arduino板和计算机很好地配合。

// Includes the servo library

#include 。

// Defines Trig and Echo pins of the Ultrasonic Sensor

const int trigPin = 10;

const int echoPin = 11;

#define buzzerPin A0 //Defines the pin A0 as an output to buzzerPin

// Variables for the duration and the distance

long duration;

int distance;

Servo myServo; // Creates a servo object for controlling the servo motor

void setup() {

pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output

pinMode(echoPin, INPUT); // Sets the echoPin as an Input

Serial.begin(9600);

myServo.attach(12); // Defines on which pin is the servo motor attached

}

void loop() {

// rotates the servo motor from 15 to 165 degrees

for(int i=15;i《=165;i++){

myServo.write(i);

delay(30);

distance = calculateDistance();// Calls a function for calculating the distance measured by the Ultrasonic sensor for each degree

Serial.print(i); // Sends the current degree into the Serial Port

Serial.print(“,”); // Sends addition character right next to the previous value needed later in the Processing IDE for indexing

Serial.print(distance); // Sends the distance value into the Serial Port

Serial.print(“。”); // Sends addition character right next to the previous value needed later in the Processing IDE for indexing

tone(buzzerPin, 10000 / distance);

}

// Repeats the previous lines from 165 to 15 degrees

for(int i=165;i》15;i--){

myServo.write(i);

delay(30);

distance = calculateDistance();

Serial.print(i);

Serial.print(“,”);

Serial.print(distance);

Serial.print(“。”);

tone(buzzerPin, 10000 / distance); //Produces a different tone according to the distance the object is from the sensor

}

}

// Function for calculating the distance measured by the Ultrasonic sensor

int calculateDistance(){

digitalWrite(trigPin, LOW);

delayMicroseconds(2);

// Sets the trigPin on HIGH state for 10 micro seconds

digitalWrite(trigPin, HIGH);

delayMicroseconds(10);

digitalWrite(trigPin, LOW);

duration = pulseIn(echoPin, HIGH); // Reads the echoPin, returns the sound wave travel time in microseconds

distance= duration*0.034/2;

return distance;

}

步骤3:处理代码

以下是我用于处理程序从超声波传感器获取信息的代码,并将其转换为它创建的显示。这是我从视频https://www.youtube.com/watch?v=JvmIutmQd9U复制的代码,该代码效果非常好,只需要进行一些调整。

p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px ‘Helvetica Neue’; color: #000000; -webkit-text-stroke: #000000}

p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px ‘Helvetica Neue’; color: #000000; -webkit-text-stroke: #000000; min-height: 12.0px}

span.s1 {font-kerning: none}

import processing.serial.*; // imports library for serial communication

import java.awt.event.KeyEvent; // imports library for reading the data from the serial port

import java.io.IOException;

Serial myPort; // defines Object Serial

// defubes variables

String angle=“”;

String distance=“”;

String data=“”;

String noObject;

float pixsDistance;

int iAngle, iDistance;

int index1=0;

int index2=0;

PFont orcFont;

void setup() {

size (1200, 700); // ***CHANGE THIS TO YOUR SCREEN RESOLUTION***

smooth();

myPort = new Serial(this,“/dev/cu.usbmodem143401”, 9600); // starts the serial communication

myPort.bufferUntil(‘。’); // reads the data from the serial port up to the character ‘。’. So actually it reads this: angle,distance.

}

void draw() {

fill(98,245,31);

// simulating motion blur and slow fade of the moving line

noStroke();

fill(0,4);

rect(0, 0, width, height-height*0.065);

fill(98,245,31); // green color

// calls the functions for drawing the radar

drawRadar();

drawLine();

drawObject();

drawText();

}

void serialEvent (Serial myPort) { // starts reading data from the Serial Port

// reads the data from the Serial Port up to the character ‘。’ and puts it into the String variable “data”。

data = myPort.readStringUntil(‘。’);

data = data.substring(0,data.length()-1);

index1 = data.indexOf(“,”); // find the character ‘,’ and puts it into the variable “index1”

angle= data.substring(0, index1); // read the data from position “0” to position of the variable index1 or thats the value of the angle the Arduino Board sent into the Serial Port

distance= data.substring(index1+1, data.length()); // read the data from position “index1” to the end of the data pr thats the value of the distance

// converts the String variables into Integer

iAngle = int(angle);

iDistance = int(distance);

}

void drawRadar() {

pushMatrix();

translate(width/2,height-height*0.074); // moves the starting coordinats to new location

noFill();

strokeWeight(2);

stroke(98,245,31);

// draws the arc lines

arc(0,0,(width-width*0.0625),(width-width*0.0625),PI,TWO_PI);

arc(0,0,(width-width*0.27),(width-width*0.27),PI,TWO_PI);

arc(0,0,(width-width*0.479),(width-width*0.479),PI,TWO_PI);

arc(0,0,(width-width*0.687),(width-width*0.687),PI,TWO_PI);

// draws the angle lines

line(-width/2,0,width/2,0);

line(0,0,(-width/2)*cos(radians(30)),(-width/2)*sin(radians(30)));

line(0,0,(-width/2)*cos(radians(60)),(-width/2)*sin(radians(60)));

line(0,0,(-width/2)*cos(radians(90)),(-width/2)*sin(radians(90)));

line(0,0,(-width/2)*cos(radians(120)),(-width/2)*sin(radians(120)));

line(0,0,(-width/2)*cos(radians(150)),(-width/2)*sin(radians(150)));

line((-width/2)*cos(radians(30)),0,width/2,0);

popMatrix();

}

void drawObject() {

pushMatrix();

translate(width/2,height-height*0.074); // moves the starting coordinats to new location

strokeWeight(9);

stroke(255,10,10); // red color

pixsDistance = iDistance*((height-height*0.1666)*0.025); // covers the distance from the sensor from cm to pixels

// limiting the range to 40 cms

if(iDistance《40){

// draws the object according to the angle and the distance

line(pixsDistance*cos(radians(iAngle)),-pixsDistance*sin(radians(iAngle)),(width-width*0.505)*cos(radians(iAngle)),-(width-width*0.505)*sin(radians(iAngle)));

}

popMatrix();

}

void drawLine() {

pushMatrix();

strokeWeight(9);

stroke(30,250,60);

translate(width/2,height-height*0.074); // moves the starting coordinats to new location

line(0,0,(height-height*0.12)*cos(radians(iAngle)),-(height-height*0.12)*sin(radians(iAngle))); // draws the line according to the angle

popMatrix();

}

void drawText() { // draws the texts on the screen

pushMatrix();

if(iDistance》40) {

noObject = “Out of Range”;

}

else {

noObject = “In Range”;

}

fill(0,0,0);

noStroke();

rect(0, height-height*0.0648, width, height);

fill(98,245,31);

textSize(25);

text(“10cm”,width-width*0.3854,height-height*0.0833);

text(“20cm”,width-width*0.281,height-height*0.0833);

text(“30cm”,width-width*0.177,height-height*0.0833);

text(“40cm”,width-width*0.0729,height-height*0.0833);

textSize(40);

text(“Ryan‘s Radar”, width-width*0.875, height-height*0.0277);

text(“Angle: ” + iAngle +“ °”, width-width*0.48, height-height*0.0277);

text(“Distance: ”, width-width*0.26, height-height*0.0277);

if(iDistance《40) {

text(“ ” + iDistance +“ cm”, width-width*0.225, height-height*0.0277);

}

textSize(25);

fill(98,245,60);

translate((width-width*0.4994)+width/2*cos(radians(30)),(height-height*0.0907)-width/2*sin(radians(30)));

rotate(-radians(-60));

text(“30°”,0,0);

resetMatrix();

translate((width-width*0.503)+width/2*cos(radians(60)),(height-height*0.0888)-width/2*sin(radians(60)));

rotate(-radians(-30));

text(“60°”,0,0);

resetMatrix();

translate((width-width*0.507)+width/2*cos(radians(90)),(height-height*0.0833)-width/2*sin(radians(90)));

rotate(radians(0));

text(“90°”,0,0);

resetMatrix();

translate(width-width*0.513+width/2*cos(radians(120)),(height-height*0.07129)-width/2*sin(radians(120)));

rotate(radians(-30));

text(“120°”,0,0);

resetMatrix();

translate((width-width*0.5104)+width/2*cos(radians(150)),(height-height*0.0574)-width/2*sin(radians(150)));

rotate(radians(-60));

text(“150°”,0,0);

popMatrix();

}

步骤4:超声波传感器支架

由于我对此项目的启发并未包含任何类型的支架来固定超声波传感器在适当的位置,我决定3D打印这个支架是一个好主意,让完成的设计看起来更整洁,并使一切更容易组合。保持超声波传感器的部分最终相对紧密地安装在超声波传感器周围,在保持其就位方面做得很好。然而,在下面切出的用于伺服臂进入的孔有点太大,所以我需要添加很多胶水来保持它的位置。但总的来说,它的效果非常好,并且设计看起来很漂亮。

第5步:激光切割盒设计

实施此框以使项目具有干净和专业的外观。它在隐藏所有电线和arduino板本身方面做得很好。为了创建实际的盒子设计,我使用网站http://www.makercase.com/来获得手指边缘以将盒子的每一侧连接在一起。这是一个非常有用的网站,因为它节省了我大量的时间,并且非常容易使用。从雷达的成品中可以看出,我在设计的侧面和顶部切出了测量孔,以便允许项目的部分需要在外面。这包括用于伺服的孔,我从下面粘到盒子上,连接到超声波传感器,蜂鸣器,以及从计算机到arduino板本身。这是相当大的(盒子里有很多空间),但至少它给你很大的工作空间,没有任何东西是狭窄的。如果你自己做一个盒子设计,你肯定可以做得更小,一切都会适合。

步骤6:接线构造

根据arduino代码,超声波传感器必须连接到引脚10 11.虽然和所有超声波传感器一样,它也必须连接到地和5V引脚。伺服必须连接到引脚12(myServo.attach(12);),它还必须连接到地和5V引脚。至于蜂鸣器,它只接地和模拟输出引脚A0。一旦你为雷达附加了所有必要的物品,你的电路应该看起来有点像上图。此外,尽量保持一切整洁!一旦电路在盒子里,电线都非常缠结,有可能一根或两根电线滑出不到位置并导致雷达发生故障。它发生在我身上,我发现它从那时起就保持整洁,减少了这些事件的发生。

步骤7:组装

使用强力超级胶水组装激光切割盒,因此完成后不会有碎片分开雷达。我发现更容易使用一些书来支撑盒子的一侧,这样我就可以粘上相邻的一面。在那里拿着它约5分钟后,我会继续到下一侧,依此类推。记住不要粘上其中一端,因为你显然需要放入并取出雷达。一旦盒子上的胶水硬化,您就可以继续装配。首先,我将蜂鸣器粘在外壳的顶部(如上图所示),然后当它干燥时,我将电线穿过相对的孔并将它们连接到蜂鸣器上。当谈到伺服系统时,我将伺服的小翼粘在盒子下面,所以只有伺服的顶部显示出来。这使得整个产品看起来既美观又保持其实用性,伺服头可随时轻松访问。然后使用3D打印支架中的超声波传感器,使用胶水将支架连接到伺服系统,以确保其安全。完成后,您的项目即可进行测试!

步骤8:执行

首先将计算机连接到arduino板。接下来,打开两个程序。加载arduino代码后,将其上传到主板。这应该开始伺服和蜂鸣器,因此会产生噪音,伺服也会相应转动。然后,当加载处理代码时,单击运行,如果一切顺利运行,则应显示雷达的动画。如果没有发生这种情况,请检查您使用的端口名称是否与代码中的名称完全相同。例如,如果我使用端口“/dev/cu.usbmodem143401”,请确保处理中的代码行显示“myPort = new Serial(this,”/dev/cu.usbmodem143401“,9600);”。这应该解决所有问题,它应该运行顺利。启动和运行的过程都可以在上面的视频链接上看到它正在工作和检测对象。

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

    关注

    50

    文章

    2856

    浏览量

    117110
  • Arduino
    +关注

    关注

    187

    文章

    6455

    浏览量

    186445
收藏 人收藏

    评论

    相关推荐

    定华雷达仪表学堂:如何判断雷达物位计正常工作

    雷达物位计作为物位计行业的新兴测量仪表,在行业内的应用日益广泛,根据雷达物位计的一些具体情况判断雷达物位计是否正常工作,下面我们介绍如何判断出雷达物位计是否正常工作。 1.首先检查
    的头像 发表于 09-10 16:26 187次阅读

    光学雷达和激光雷达的区别是什么

    光学雷达和激光雷达是两种不同的遥感技术,它们在原理、应用、优缺点等方面都存在一定的差异。以下是对光学雷达和激光雷达的比较: 定义和原理 光学雷达
    的头像 发表于 08-29 17:20 814次阅读

    相控阵雷达的原理和分类 相控阵雷达的特点

    相控阵雷达是一种利用相位控制技术来实现波束形成和方向控制的先进雷达系统。它的工作原理、分类和特点在现代电子战和民用雷达系统中具有重要意义。
    的头像 发表于 04-10 17:38 3423次阅读

    如何用Arduino制作一个简易自动喂鱼器

    如果你家里养有鱼,并想找到一种自动化喂食的方法,这个项目可能会对你有所启发。 在这个教程中,作者将展示如何制作自己的基于Arduino的自动喂鱼器,让小鱼不在饿肚子。 自动喂鱼器的工作原理非常
    发表于 03-28 11:25

    雷达检测概率曲线的影响因素

    在阅读雷达书籍和相关论文时发现,雷达的检测概率Pd和信噪比有一个函数关系 我的问题是如果这个函数关系是通用的,那么在门限一定的情况下,不同的雷达的检测概率曲线是不是都一样了?如果不是,那么
    发表于 03-27 19:54

    生命体征监测雷达模组

    SW-UWB-M-A2X2 是一款工作于 UWB 频段的超宽带人体监测雷达模组,可以在设定区域内以极高的灵敏度非接触式感应人体的存在,测量人体的呼吸和心率,长时间监测后可以生成睡眠质量的分析报告
    发表于 03-06 09:51

    如何制作自己的Arduino电容计

    在这个项目中,您将学习如何制作自己的Arduino电容计(测量电容器的值,范围从pF到1000的uF)。一般来说,电子爱好者喜欢设计自己的小工具而不是购买。在这个项目中,我们使用两种电容测量方法,即
    的头像 发表于 02-25 15:10 1387次阅读
    如何<b class='flag-5'>制作</b>自己的<b class='flag-5'>Arduino</b>电容计

    arduino如何停止loop循环

    Arduino的loop循环是其主要的程序执行部分,该循环将在Arduino开发板上持续运行,并且只有在程序被重新上传或开发板断电重启时才会停止。然而,在某些情况下,你可能需要在程序执行过程中停止或
    的头像 发表于 02-14 16:24 3878次阅读

    arduino中while循环怎么跳出

    Arduino 是一款开源的硬件平台,广泛应用于各种物联网和嵌入式系统项目。在 Arduino 上编写代码时,循环结构起到了至关重要的作用。而其中的 while 循环更是常用于需要根据特定条件重复
    的头像 发表于 02-14 16:22 2218次阅读

    如何使用Arduino制作智能垃圾箱

    在这个项目中,我将向您展示如何使用Arduino制作智能垃圾箱,当您带着垃圾接近时,垃圾箱的盖子会自动打开。
    的头像 发表于 02-11 12:22 2727次阅读
    如何使用<b class='flag-5'>Arduino</b><b class='flag-5'>制作</b>智能垃圾箱

    使用Arduino Nano制作一个4×4×4 LED立方体

    在这个项目中,我们将使用 Arduino Nano 制作一个很酷的 4×4×4 LED立方体。LED 立方体,也称为 LED矩阵,可以照亮您的房间、学习空间或创客区域,使其看起来非常酷炫。此外,它非常容易构建,并帮助您在电子和编码方面发挥创意。
    的头像 发表于 02-11 12:07 2939次阅读
    使用<b class='flag-5'>Arduino</b> Nano<b class='flag-5'>制作</b>一个4×4×4 LED立方体

    雷达测速的基本原理 雷达测速的优势有哪些

    雷达测速的基本原理: 雷达测速是一种常见的交通工具超速监控手段,它借助雷达技术可以准确测量车辆的速度。它的基本原理是利用雷达波束的多普勒效应来测量目标物的速度。
    的头像 发表于 02-03 14:10 1775次阅读

    2023年Arduino开放原码报告:持续茁壮的Arduino生态系!

    所谓出钱就是买一片Arduino开发板或是付费订阅Arduino Cloud云端服务,或单纯资金赞助;出力就是撰写Arduino相关的程序并无私的分享程序代码或回报错误或投入翻译等,笔者即有若干翻译新版
    的头像 发表于 01-25 16:45 1246次阅读
    2023年<b class='flag-5'>Arduino</b>开放原码报告:持续茁壮的<b class='flag-5'>Arduino</b>生态系!

    Arduino制作循迹小车教程

    Arduino制作循迹小车完全教程
    发表于 01-05 11:09 4次下载

    Arduino的功能及其限制

    Arduino是一种开源电子原型平台,它基于易于使用的硬件和软件,可以用于制作各种嵌入式系统。然而,尽管Arduino非常强大,但它也有一些功能上的限制。本文将详细介绍Arduino
    的头像 发表于 12-21 14:15 1075次阅读