> For the complete documentation index, see [llms.txt](https://docs.petoi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.petoi.com/chinese/biboard/li-cheng/shu-zi-mo-ni-zhuan-huan-qi.md).

# 4. 数字-模拟转换器

DAC的用途和ADC正好相反，DAC是将数字信号转换成模拟信号输出。

还记得NyBoard开机的那一段音乐？那是使用PWM发出的，PWM采用高速开关调节占空比来输出电压。

相比PWM，DAC会直接输出电压而无需计算占空比。ESP32集成了1个2路8位DAC，数值为 0 - 255。电压范围是 0 - 3.3V。所以DAC的输出电压计算公式如下：

$$
DAC = （int）TargetV / 3.3V \* 255
$$

例程如下：

```
#define DAC1 25 

void setup() {  
}

void loop() {
  
  // 8bit DAC, 255 = 3.3V, 0 = 0.0V 
  for(int i = 0; i < 255; i++){
    dacWrite(DAC1, i);
    delay(10);
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.petoi.com/chinese/biboard/li-cheng/shu-zi-mo-ni-zhuan-huan-qi.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
