ESPHome 2026.5.0b1
Loading...
Searching...
No Matches
spi_device.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace esphome::spi_device {
7
9 public spi::SPIDevice<spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_HIGH,
10 spi::CLOCK_PHASE_TRAILING, spi::DATA_RATE_1MHZ> {
11 public:
12 void setup() override;
13 void dump_config() override;
14
15 protected:
16};
17
18} // namespace esphome::spi_device
The SPIDevice is what components using the SPI will create.
Definition spi.h:429