189|1

96

帖子

5

TA的资源

一粒金砂(中级)

楼主
 

【Follow me第二季第4期】任务汇总 [复制链接]

  本帖最后由 qwert1213131 于 2024-12-25 21:00 编辑

主要使用Arudino进行任务开发;选用了开发板Arduino® Nano RP2040 Connect作为主要器件,并订购了排针和 一个5键的ADC按键模块;

 

安装IDE

开发板原理图

 

 

任务1

主要使用了ADC按键,通过adc外设来读取不同的按键值,然后打印所按按键的值,并同时让LED彩灯显示随机颜色

 
#include <WiFiNINA.h>
int sensorPin = A0;        // select the input pin for the potentiometer
int ledPin = LED_BUILTIN;  // select the pin for the LED

int sensorValue = 0;  // variable to store the value coming from the sensor

int adc_key_val[5] = { 30, 80, 120, 150, 600 };
int NUM_KEYS = 5;

int key = -1;
int oldkey = -1;


void setup() {
  Serial.begin(115200);
  randomSeed(analogRead(sensorPin));

  pinMode(ledPin, OUTPUT);
  analogWrite(LEDR, (255));
  analogWrite(LEDG, (255));
  analogWrite(LEDB, (255));

}

void loop() {
  // read the value from the sensor:
  sensorValue = analogRead(sensorPin);
  // Serial.println(sensorValue);
  key = get_key(sensorValue);
  digitalWrite(ledPin, LOW);
  if (key != oldkey) {
    delay(50);
    sensorValue = analogRead(sensorPin);
    key = get_key(sensorValue);
    if (key != oldkey) {
      oldkey = key;
      if (key >= 0) {
        digitalWrite(ledPin, HIGH);
        analogWrite(LEDR, random(255));
        analogWrite(LEDG, random(255));
        analogWrite(LEDB, random(255));
        Serial.println("Hello DigiKey & EEWorld!");

        switch (key) {
          case 0: Serial.println("s1 OK"); break;
          case 1: Serial.println("s2 OK"); break;
          case 2: Serial.println("s3 OK"); break;
          case 3: Serial.println("s4 OK"); break;
          case 4: Serial.println("s5 OK"); break;
        }
      }
    }
  }
  delay(100);
  
}


int get_key(unsigned int input) {
  int k;
  for (k = 0; k < NUM_KEYS; k++) {
    if (input < adc_key_val[k]) {
      return k;
    }
  }

  if (k > NUM_KEYS) k = -1;
  return k;
}

 

 

任务2

主要使用板载的IMU传感器,将获取的的6轴数据打印到串口终端,并使用自带的绘图仪显示波形

#include <Arduino_LSM6DSOX.h>

float Ax, Ay, Az;
float Gx, Gy, Gz;

void setup() {
  Serial.begin(115200);

  while(!Serial);

  if (!IMU.begin()) {
    Serial.println("Failed to initialize IMU!");
    while (1);
  }

  Serial.print("Accelerometer sample rate = ");
  Serial.print(IMU.accelerationSampleRate());
  Serial.println("Hz");
  Serial.println();

  Serial.print("Gyroscope sample rate = ");  
  Serial.print(IMU.gyroscopeSampleRate());
  Serial.println("Hz");
  Serial.println();

}

void loop() {

  if (IMU.accelerationAvailable()) {
    IMU.readAcceleration(Ax, Ay, Az);

    // Serial.println("Accelerometer data: ");
    Serial.print(Ax);
    Serial.print('\t');
    Serial.print(Ay);
    Serial.print('\t');
    Serial.print(Az);
    Serial.print('\t');
    // Serial.println();
  }

  if (IMU.gyroscopeAvailable()) {
    IMU.readGyroscope(Gx, Gy, Gz);
    
    // Serial.println("Gyroscope data: ");
    Serial.print(Gx);
    Serial.print('\t');
    Serial.print(Gy);
    Serial.print('\t');
    Serial.println(Gz);
    Serial.println();
  }

delay(50);

}

任务3

主要通过读取板载pdm麦克风数据,显示在串口上,若声音超过阈值范围则对板载LED进行开关操作

#include <WiFiNINA.h>
#include <PDM.h>

bool LED_SWITCH = false;

// default number of output channels
static const char channels = 1;

// default PCM output frequency
static const int frequency = 20000;

// Buffer to read samples into, each sample is 16-bits
short sampleBuffer[512];

// Number of audio samples read
volatile int samplesRead;

void setup() {
  Serial.begin(9600);
  pinMode(LEDB, OUTPUT);
  while (!Serial);
  // Configure the data receive callback
  PDM.onReceive(onPDMdata);

  // Optionally set the gain
  // Defaults to 20 on the BLE Sense and -10 on the Portenta Vision Shields
  // PDM.setGain(30);

  // Initialize PDM with:
  // - one channel (mono mode)
  // - a 16 kHz sample rate for the Arduino Nano 33 BLE Sense
  // - a 32 kHz or 64 kHz sample rate for the Arduino Portenta Vision Shields
  if (!PDM.begin(channels, frequency)) {
    Serial.println("Failed to start PDM!");
    while (1);
  }
}

void loop() {
  // Wait for samples to be read
  if (samplesRead) {

    // Print samples to the serial monitor or plotter
    for (int i = 0; i < samplesRead; i++) {
      if (channels == 2) {
        Serial.print("L:");
        Serial.print(sampleBuffer[i]);
        Serial.print(" R:");
        i++;
      }
      Serial.println(sampleBuffer[i]);

      if (sampleBuffer[i] > 6000 || sampleBuffer[i] <= -6000) {
        LED_SWITCH = !LED_SWITCH;
        if (LED_SWITCH) {
          Serial.println();
          digitalWrite(LEDB, HIGH);
          Serial.println("ON!");
          Serial.println();
          delay(1000);
        }
        else {
          Serial.println();
          digitalWrite(LEDB, LOW);
          Serial.println("OFF!");
          Serial.println();
          delay(1000);
        }
      }
    }

    // Clear the read count
    samplesRead = 0;
  }
}

/**
   Callback function to process the data from the PDM microphone.
   NOTE: This callback is executed as part of an ISR.
   Therefore using `Serial` to print messages inside this function isn't supported.
 * */
void onPDMdata() {
  // Query the number of available bytes
  int bytesAvailable = PDM.available();

  // Read into the sample buffer
  PDM.read(sampleBuffer, bytesAvailable);

  // 16-bit, 2 bytes per sample
  samplesRead = bytesAvailable / 2;
}

 

非常感谢平台提供的机会,arduino已经包装了很多底层函数,也有很多库可以直接使用,不需要考虑太多底层的运行,对于创建应用很是方便。

可编译下载的代码:download.eeworld.com.cn/detail/qwert1213131/635441


 

最新回复

arduino已经包装了很多底层函数,也有很多库可以直接使用,不需要考虑太多底层的运行 这个确实很不错   详情 回复 发表于 2024-12-26 07:29
点赞(1) 关注
 
 

回复
举报

6749

帖子

0

TA的资源

五彩晶圆(高级)

沙发
 

arduino已经包装了很多底层函数,也有很多库可以直接使用,不需要考虑太多底层的运行

这个确实很不错

 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
推荐帖子
电子商务:未来的路该怎么走

电子商务:未来的路该怎么走看后你会发现

硬件工程师必读攻略

硬件工程师必读攻略

电路设计漫谈之27, 28

陆续在其它论坛上发了一些自己做电路设计的感想。在这里发一新贴试试水。以前的发表的漫谈1-26有兴趣的话可以google一下。每贴子 ...

声音检测系统

# 声音检测系统 ##声音检测系统 ###声音检测系统用来捕获声音,并将声音的时域图和频谱图显示出来,检测系统的界面如下: 5 ...

有奖直播开播啦!今天上午10:00,示波器基础培训等您来!!!

546868 直播时间:2021年6月29日(周二)上午10:00-11:30 直播主题:示波器基础培训 直播简介: 通常我们在测试时,会 ...

【花雕动手做】有趣好玩的音乐可视化系列小项目(04)---WS2812条灯

本帖最后由 eagler8 于 2021-10-8 19:08 编辑 偶然脑子发热心血来潮,想要做一个声音可视化的系列专题。这个专题的难度有点高 ...

MS8211改锂电池

本帖最后由 dcexpert 于 2022-2-5 11:26 编辑 MS8211是用2节AAA电池供电的,比用9V电池方便。但是使用AAA电池也有一个问题是 ...

出一些ic芯片,需要的联系。

610271610270610269610268610267610266610265610264610263610262610261610260610259610258610256610255610254610314610313610312 ...

CMOS集成电路设计手册

CMOS集成电路设计手册

【Follow me第二季第1期】基础任务二:监测环境温度和光线,通过板载LED展示舒适程度

任务理解 热敏电阻温度传感器 A9 和 光线传感器 A8 ,都已经集成在了主板,获取两个传感器的值映射到NeoPixel灯带 8 ...

关闭
站长推荐上一条 1/5 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表