mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-10-31 08:31:29 +01:00
34 lines
797 B
ReStructuredText
34 lines
797 B
ReStructuredText
Custom SPI Device
|
|
=================
|
|
|
|
Lots of devices communicate using the SPI protocol. If you want to integrate
|
|
a device into ESPHome that uses this protocol you can pretty much use almost
|
|
all Arduino-based code because the ``SPI`` library is also available in ESPHome.
|
|
|
|
See the other custom component guides for how to register components and make
|
|
them publish values.
|
|
|
|
Please refer to the SPI library docs for more information.
|
|
|
|
.. code-block:: cpp
|
|
|
|
#include "esphome.h"
|
|
|
|
class MyCustomComponent : public Component {
|
|
public:
|
|
void setup() override {
|
|
SPI.pins(SCK_PIN, MISO_PIN, MOSI_PIN, CS_PIN);
|
|
SPI.begin();
|
|
}
|
|
void loop() override {
|
|
SPI.beginTransaction(...)
|
|
|
|
SPI.write(0x42);
|
|
}
|
|
};
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :ghedit:`Edit`
|