mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
35 lines
712 B
YAML
35 lines
712 B
YAML
description: ESP32 I2S Controller
|
|
|
|
include: ["i2s-controller.yaml"]
|
|
|
|
compatible: "espressif,esp32-i2s"
|
|
|
|
properties:
|
|
port:
|
|
type: int
|
|
required: true
|
|
description: |
|
|
The port number, defined by i2s_port_t.
|
|
Depending on the hardware, these values are available: I2S_NUM_0, I2S_NUM_1
|
|
pin-bclk:
|
|
type: int
|
|
required: true
|
|
description: BCK pin
|
|
pin-ws:
|
|
type: int
|
|
required: true
|
|
description: WS pin
|
|
pin-data-out:
|
|
type: int
|
|
default: GPIO_PIN_NONE
|
|
description: DATA OUT pin
|
|
pin-data-in:
|
|
type: int
|
|
default: GPIO_PIN_NONE
|
|
description: DATA IN pin
|
|
pin-mclk:
|
|
type: int
|
|
required: false
|
|
default: GPIO_PIN_NONE
|
|
description: MCLK pin
|