最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

ESP32 光敏傳感器實驗

2023-06-15 08:29 作者:南冥的鳥  | 我要投稿

1.1 項目介紹:??????????????????????????????????????????????????????????????????

光敏傳感器它對環(huán)境光線最敏感,S輸出一個模擬信號,一般用來檢測周圍環(huán)境的光線的亮度,觸發(fā)單片機或繼電器模塊等。傳感器自帶2個定位孔,方便你將傳感器固定在其他設(shè)備。

相關(guān)資料下載鏈接:https://sourl.cn/YxyUvG


1.3連接 ?? ? ? ? ??

?


1.4測試代碼?

Arduino IDE測試程序

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

/* ?

?* Filename ???: Photoresistance

?* Description : Read the basic usage of ADC,DAC and Voltage

?* Auther ?????: http//www.keyestudio.com

*/

#define PIN_ANALOG_IN ?34 ?//the pin of the Photoresistance

void setup() {

??Serial.begin(9600);

}

//In loop(),the analogRead() function is used to obtain the ADC value,

//and then the map() function is used to convert the value into an 8-bit precision DAC value.

//The input and output voltage are calculated according to the previous formula,

//and the information is finally printed out.

void loop() {

??int adcVal = analogRead(PIN_ANALOG_IN);

??int dacVal = map(adcVal, 0, 4095, 0, 255);

??double voltage = adcVal / 4095.0 * 3.3;

??Serial.printf("ADC Val: %d, \t DAC Val: %d, \t Voltage: %.2fV\n", adcVal, dacVal, voltage);

??delay(200);

}

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

?

Thonny?IDE測試程序

# Import Pin, ADC and DAC modules.

from machine import ADC,Pin,DAC

import time

?

# Turn on and configure the ADC with the range of 0-3.3V

adc=ADC(Pin(34))

adc.atten(ADC.ATTN_11DB)

adc.width(ADC.WIDTH_12BIT)

?

# Read ADC value once every 0.1seconds, convert ADC value to DAC value and output it,

# and print these data to “Shell”.

try:

????while?True:

????????adcVal=adc.read()

????????dacVal=adcVal//16

????????voltage = adcVal / 4095.0 * 3.3

????????print("ADC Val:",adcVal,"DACVal:",dacVal,"Voltage:",voltage,"V")

????????time.sleep(0.1)

except:

????pass

?

1.5測試結(jié)果 ??????????????????????????????????????????

按照實驗接線圖連接好線,編譯并上傳代碼到ESP32,代碼上傳成功后,利用USB線上電后,打開串口監(jiān)視器,設(shè)置波特率為9600,串口監(jiān)視器顯示出光敏傳感器的ADC值,DAC值和電壓值,光照越強,可以看到ADC值,DAC值和電壓值變大。如下圖。

?



?


ESP32 光敏傳感器實驗的評論 (共 條)

分享到微博請遵守國家法律
康乐县| 平山县| 黄山市| 建宁县| 长治县| 土默特右旗| 阿坝| 谷城县| 都昌县| 西乡县| 潼南县| 奉节县| 云龙县| 楚雄市| 汤原县| 临泉县| 荥阳市| 宁陵县| 定远县| 浦城县| 林芝县| 克什克腾旗| 龙江县| 金沙县| 宜兰县| 道真| 衢州市| 锦州市| 五常市| 佛冈县| 三门峡市| 舞钢市| 绥德县| 新田县| 汤阴县| 朝阳区| 宁强县| 济宁市| 黑河市| 攀枝花市| 仙居县|