# delayMicroseconds

## 函数原型

```cpp
void delayMicroseconds(unsigned int us);
```

## 作用

是程序停止执行一段时间，就像 Linux 下 C 中的 `usleep()`

## 参数

* `us`

  如你所加，程序暂停的时间，单位**微秒**

## 示例

```cpp
delayMicroseconds(1314);    // 延时 1314 微秒
delayMicroseconds(521);     // 延时 521 微秒
```


---

# Agent Instructions: 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:

```
GET https://arduino.doc.skyone.host/core/time/delaymicroseconds.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
