闪电 发表于 2022-1-20 09:59:59

ADCWiPy 类 – 模数转换

ADCWiPy 类 – 模数转换笔记此类是 WiPy 的非标准 ADC 实现。它可以像 machine.ADC在 WiPy 上一样简单地使用,但在下面的文档中命名,machine.ADCWiPy以将其与更通用的 machine.ADC类区分开来。
用法:import machine

adc = machine.ADC()             # create an ADC object
apin = adc.channel(pin='GP3')   # create an analog pin on GP3
val = apin()                  # read an analog value


构造函数classmachine.ADCWiPy(id=0, *, bits=12)创建与给定引脚关联的 ADC 对象。这允许您随后读取该引脚上的模拟值。有关更多信息,请查看 引脚排列和备用功能表。警告ADC 引脚输入范围为 0-1.4V(1.8V 是它可以承受的绝对最大值)。当 GP2、GP3、GP4 或 GP5 重新映射到 ADC 模块时,1.8 V 是最大值。如果这些引脚用于数字模式,则允许的最大输入电压为 3.6V。

方法ADCWiPy.channel(id, *, pin)创建一个模拟引脚。如果仅给出通道 ID,则将选择正确的引脚。或者,只能通过引脚并选择正确的通道。例子:# all of these are equivalent and enable ADC channel 1 on GP3
apin = adc.channel(1)
apin = adc.channel(pin='GP3')
apin = adc.channel(id=1, pin='GP3')


ADCWiPy.init()启用 ADC 模块。ADCWiPy.deinit()禁用 ADC 模块。

类 ADCChannel — 从内部或外部源读取模拟值ADC 通道可以连接到 MCU 的内部点或 GPIO 引脚。ADC 通道是使用 ADC.channel 方法创建的。machine.adcchannel()读取通道值的快速方法。adcchannel.value()读取通道值。adcchannel.init()重新初始化(并有效启用)ADC 通道。adcchannel.deinit()禁用 ADC 通道。

ChinaPaype 发表于 2022-2-17 23:58:30

-

Completely I share your opinion. In it something is also idea good, agree with you.

ChinaPaype 发表于 2022-3-25 22:55:02

-

Has come on a forum and has seen this theme. Allow to help you?

DavidLop 发表于 2022-5-30 13:03:36

-

I am am excited too with this question. Prompt, where I can read about it?

Karenpoics 发表于 2022-6-6 09:08:39

-

The made you do not turn back. That is made, is made.

ArthurNaw 发表于 2022-11-22 07:50:51

-

I will know, I thank for the information.

zhuoer 发表于 2022-11-23 09:11:35

Has come on a forum and has seen this theme. Allow to help you?
MLB fans, get cheap cheap baseball jerseys at camisetasbeisboles.com.If you are looking for New York Yankees jerseys, camisetasbeisboles.com is what you are looking for. We have it all here. Get your favorite player baseball jersey, or even get a personalized baseball jersey for yourself or a loved one.

dujie 发表于 2023-2-9 16:54:04

I am am excited too with this question. Prompt, where I can read about it?
The American football team aesthetic is increasingly appealing to followers of urban fashion, even making their clothes part of their everyday look. The NFL jerseysyou find here are designed to be part of a casual outfit that you can wear on the street or to the game. Trust our store tiendacamisetasnfl.com for the best collection of American football jerseys and make it your proudest!

over 发表于 2023-2-20 10:16:01

The made you do not turn back. That is made, is made.
I currently buy 90% of my NBA jerseys from this store, basketreplicas.com. I got to know it through a friend of mine, of course good things have to be shared, this store supports multiple payment channels. There are many NBA series jerseys in it, and the retro NBA jerseys are also retained. There are also star jerseys inside, such as: James jerseys, Kobe jerseys, Curry jerseys, etc. Don't miss the free shipping event for orders over 99€!

zhao 发表于 2023-2-27 11:40:43

I will know, I thank for the information.
Currently I buy 90% of my NBA jerseys from this store nuovemaglienba.it. I got to know it through a friend of mine, of course good things have to be shared, this store supports multiple payment channels. There are many NBA series jerseys in it, and the retro NBA jerseys are also retained. There are also star jerseys inside, such as: James jerseys, Kobe jerseys, Curry jerseys, etc. Don't miss the free shipping event for orders over 99€!
页: [1]
查看完整版本: ADCWiPy 类 – 模数转换