> For the complete documentation index, see [llms.txt](https://hyundai-robotics.gitbook.io/hi6-robot-language/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyundai-robotics.gitbook.io/hi6-robot-language/7-enet-module/3-enet/3-enet-member-func/enet-send_bbuf.md).

# send\_bbuf

### 설명

이더넷 객체로 [BBuf](/hi6-robot-language/7-enet-module/4-bbuf.md) 객체를 송신합니다.

### 문법

`{ENet객체}.send_bbuf {BBuf객체}`

### 파라미터

| 항목     | 의미                    | 기타 |
| ------ | --------------------- | -- |
| BBuf객체 | 송신할 Binary Buffer 객체. |    |

### 리턴값

송신한 바이트 수

### 사용 예

```python
var bbuf=enet.BBuf()
var arr=[ -3, 0, 1 ]
bbuf.append("s4", arr)
var nitem=cli.send_bbuf(bbuf)
```
