ESP32移植Openharmony外设篇(6)光敏电阻ADC读取

打印 上一主题 下一主题

主题 777|帖子 777|积分 2331

光照传感器

模块简介

产物描述

光敏电阻(photoresistor orlight-dependent resistor,后者缩写为LDR)是一种基于内光电效应的半导体元件,它的阻值依靠于入射光强的变化 。入射光强增加,光敏电阻的阻值减小,入射光减弱,光敏电阻阻值增大。光敏电阻没有极性,使用时在其两端施加一个恣意方向的外加电压,通过丈量回路中的电流大小就可以反映入射光的强弱。
应用场景

光敏电阻属半导体光敏器件,具有敏捷度高,相应速度快,稳固性好的优点。
光敏电阻已经应用于照相机电子快门、火灾报警器、自动窗帘 、太阳跟踪系统 等光自动开关范畴。


光强与设备电阻值大小关系曲线


ESP32中的模数转换器 (ADC)

ESP32 有 两 个 ADC 单位,可以在以下场景使用:


  • 天生 ADC 单次转换效果
  • 天生一连 ADC 转换效果
Vref是ESP32 ADC内部用于丈量输入电压的参考电压。ESP32 ADC可以丈量从0 V到Vref的模拟电压。在差别的芯片中,Vref是差别的,中位数是1.1V。为了转换大于Vref的电压,输入电压在输入到ADC之前可以被衰减。有4种可用的衰减选项,衰减越高,可丈量的输入电压就越高
衰减
可丈量的输入电压范围
ADC_ATTEN_DB_0
100 mV ~ 950 mV
ADC_ATTEN_DB_2_5
100 mV ~ 1250 mV
ADC_ATTEN_DB_6
150 mV ~ 1750 mV
ADC_ATTEN_DB_11
150 mV ~ 2450 mV

ADC转换是将输入的模拟电压转换为数字值。由ADC驱动器APls提供的ADC转换效果是原始数据。在单读模式下,ESP32 ADC原始效果的分辨率为12位。


  • adc1_get_raw()
  • adc2_get_raw()
要根据ADC的原始效果盘算电压,可以使用这个公式:
 


其中
变量
作用
Vout
数字输出效果,代表的是电压。
Dout
ADC原始数字读取效果
Vmax
最大可丈量输入模拟电压
Dmax
输出ADC原始数字读取效果的最大值,在单次读取模式下为4095,在一连读取模式下为4095。
对于带有eFuse ADC校准位的板子,可以使用esp_adc_cal_raw_to_voltage()来得到校准的转换效果。这些效果代表了实际电压(单位:mV)。不需要通过公式来转换这些数据。如果在没有eFuse ADC校准位的板上使用ADC校准API,将产生警告。
注意事项:我们保举使用adc1而不是adc2,adc2被用作捆扎引脚(GPIO 0,2,15),因此无法与WIFI共用!

所以我们的步调以adc1的读取为例:
对于 ADC1 我们主要使用3个 API 函数:


  • esp_err_t adc1_config_width(adc_bits_width_t width_bit); 配置ADC1全部通道的捕获宽度。
  • esp_err_t adc1_config_channel_atten(adc1_channel_t channel, adc_atten_t atten); 配置ADC1某个通道的衰减。
  • int adc1_get_raw(adc1_channel_t channel); 读取 1 次 ADC 值。
示例:使用 ADC1 单次读取 channel 0 (GPIO36),位宽 12 BIT,衰减 11 db
  1. adc1_config_width(ADC_WIDTH_BIT_12);
  2. adc1_config_channel_atten(ADC1_CHANNEL_0,ADC_ATTEN_DB_11);
  3. int val = adc1_get_raw(ADC1_CHANNEL_0);
复制代码
参考代码

gpio_light_test.c
  1. /*
  2. * Copyright (c) 2022 Hunan OpenValley Digital Industry Development Co., Ltd.
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. *    http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. #include <stdio.h>
  16. #include "cmsis_os2.h"
  17. #include "ohos_run.h"
  18. #include "esp_system.h"
  19. #include "nvs_flash.h"
  20. #include "esp_log.h"
  21. #include "driver/gpio.h"
  22. #include "driver/ledc.h"
  23. #include "driver/adc.h"
  24. #include "esp_adc_cal.h"
  25. #define SYS_DELAY_TICKS 200
  26. #define TASK_STACK_SIZE 4096
  27. #define TASK_PRIO 25
  28. #define DEFAULT_VREF 1100                        // 默认参考电压,单位mV
  29. static esp_adc_cal_characteristics_t *adc_chars; // 分配内存使用
  30. #define myADC_heat_sensitive_channel ADC_CHANNEL_6 // GPIO34 光敏传感器Ao输入
  31. #define AD_Value1_Channnel myADC_heat_sensitive_channel // 重新定义一个, 为例后续更好的更改
  32. #define width ADC_WIDTH_BIT_12 // ADC分辨率 12位
  33. #define atten ADC_ATTEN_DB_11  // ADC衰减   11 dB 衰减,输入电压范围为 0-3.3V。
  34. #define unit ADC_UNIT_1        // ADC1
  35. #define NO_OF_SAMPLES 128      // 采样次数, 目的: 多次采样, 滤波
  36. /**
  37. * @description: ADC初始化
  38. * @return {无}
  39. */
  40. void myADC_Init()
  41. {
  42.   adc1_config_width(ADC_WIDTH_BIT_12);                                   // 12位分辨率
  43.   adc1_config_channel_atten(AD_Value1_Channnel, atten);                  // 配置ADC通道
  44.   adc_chars = calloc(1, sizeof(esp_adc_cal_characteristics_t));          // 分配内存
  45.   esp_adc_cal_characterize(unit, atten, width, DEFAULT_VREF, adc_chars); // 对ADC特性进行初始化
  46. }
  47. /**
  48. * @description: 获取传感器的AD值和电压值
  49. * @param {int16_t} *AD_Value1 第一个传感器的AD值的地址
  50. * @param {float*} Voltage1    第一个传感器的电压值的地址
  51. * @return {*}
  52. */
  53. void myADC_GetAdAndVoltage_Value(int16_t *AD_Value1, float *Voltage1)
  54. {
  55.   uint32_t adc_reading1 = 0;
  56.   for (int i = 0; i < NO_OF_SAMPLES; i++)
  57.   {                                                   // 多次采样, 滤波
  58.     adc_reading1 += adc1_get_raw(AD_Value1_Channnel); // 采集光照值
  59.   }
  60.   adc_reading1 /= NO_OF_SAMPLES; // 得到滤波后的数据
  61.   // esp_adc_cal_raw_to_voltage返回的是mV, 想得到单位V, 除以1000
  62.   *AD_Value1 = (int16_t)adc_reading1;                                       // 转换为int16_t类型
  63.   *Voltage1 = esp_adc_cal_raw_to_voltage(adc_reading1, adc_chars) / 1000.0; // 获取光照电压值
  64. }
  65. int16_t light_AdVal;
  66. float light_Voltage;
  67. static void gpio_test(void)
  68. {
  69.   myADC_Init();
  70.   while (1)
  71.   {
  72.     myADC_GetAdAndVoltage_Value(&light_AdVal, &light_Voltage);
  73.     printf("gz adc cal: %d\t gz v: %.2f \n", light_AdVal, light_Voltage);
  74.     sleep(2); // 延时
  75.   }
  76. }
  77. static void gpio_example_task(void)
  78. {
  79.   osThreadAttr_t attr;
  80.   int g_taskID;
  81.   attr.name = "adc_test";
  82.   attr.attr_bits = 0U;
  83.   attr.cb_mem = NULL;
  84.   attr.cb_size = 0U;
  85.   attr.stack_mem = NULL;
  86.   attr.stack_size = TASK_STACK_SIZE;
  87.   attr.priority = TASK_PRIO;
  88.   g_taskID = osThreadNew((osThreadFunc_t)gpio_test, NULL, &attr);
  89.   if (g_taskID == NULL)
  90.   {
  91.     printf("Failed to create Test GPIO thread!\n");
  92.   }
  93. }
  94. OHOS_APP_RUN(gpio_example_task);
复制代码
BUILD.gn
  1. # Copyright (c) 2022 Hunan OpenValley Digital Industry Development Co., Ltd.
  2. # Licensed under the Apache License, Version 2.0 (the "License");
  3. # you may not use this file except in compliance with the License.
  4. # You may obtain a copy of the License at
  5. #
  6. #     http://www.apache.org/licenses/LICENSE-2.0
  7. #
  8. # Unless required by applicable law or agreed to in writing, software
  9. # distributed under the License is distributed on an "AS IS" BASIS,
  10. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. # See the License for the specific language governing permissions and
  12. # limitations under the License.
  13. import("//kernel/liteos_m/liteos.gni")
  14. module_name = get_path_info(rebase_path("."), "name")
  15. kernel_module(module_name){
  16.     sources = [
  17.         "adc_light_test.c",
  18.     ]
  19.     include_dirs = [
  20.         "//drivers/hdf_core/framework/include/platform/",
  21.         "//drivers/hdf_core/framework/include/utils/",
  22.         "//drivers/hdf_core/framework/support/platform/include/adc",
  23.         "//drivers/hdf_core/adapter/khdf/liteos_m/osal/include/",
  24.         "//drivers/hdf_core/framework/include/core/",
  25.         "//drivers/hdf_core/framework/include/osal/",
  26.         "//drivers/hdf_core/interfaces/inner_api/utils",
  27.         "//device/soc/esp/esp32/components/driver/include",
  28.         "//device/soc/esp/esp32/components/esp_adc_cal/include",
  29.         "//device/soc/esp/esp32/components/driver/esp32/include",
  30.     ]
  31. }
复制代码
编译并烧录



在源码根目录下使用hb工具对写好的代码举行编译


选择mini级系统
同理 产物选择esp公司下的esp32


选择完毕后在源码根目录下执行hb build -f 举行编译


编译完成后会有如下界面,而且编译后的代码固件位于:out\esp32\esp32


实验现象



按下ESP32开发板上的EN键,即可观察到实验现象:


打开手机手电筒对准传感器可以观察到传感器感应到灯光并通过串口助手打印提示信息!



  1. # Copyright (c) 2022 Hunan OpenValley Digital Industry Development Co., Ltd.
  2. # Licensed under the Apache License, Version 2.0 (the "License");
  3. # you may not use this file except in compliance with the License.
  4. # You may obtain a copy of the License at
  5. #
  6. #     http://www.apache.org/licenses/LICENSE-2.0
  7. #
  8. # Unless required by applicable law or agreed to in writing, software
  9. # distributed under the License is distributed on an "AS IS" BASIS,
  10. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. # See the License for the specific language governing permissions and
  12. # limitations under the License.
  13. import("//kernel/liteos_m/liteos.gni")
  14. module_name = get_path_info(rebase_path("."), "name")
  15. kernel_module(module_name){
  16.     sources = [
  17.         "uart_example.c",
  18.     ]
  19.     include_dirs = [
  20.         "//drivers/hdf_core/framework/include/platform/",
  21.         "//drivers/hdf_core/framework/include/utils/",
  22.         "//drivers/hdf_core/framework/support/platform/include/gpio",
  23.         "//drivers/hdf_core/adapter/khdf/liteos_m/osal/include/",
  24.         "//drivers/hdf_core/framework/include/core/",
  25.         "//drivers/hdf_core/framework/include/osal/",
  26.         "//device/soc/esp/esp32/components/driver/include",
  27.         "//device/soc/esp/esp32/components/esp_adc_cal/include",
  28.         "//device/soc/esp/esp32/components/driver/esp32/include",
  29.     ]
  30. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

雁过留声

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表