mirror of
https://github.com/esphome/esphome.git
synced 2025-03-21 10:08:15 +00:00
24 lines
616 B
C++
24 lines
616 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/hal.h"
|
|
#include "esphome/components/spi/spi.h"
|
|
|
|
namespace esphome {
|
|
namespace adc128s102 {
|
|
|
|
class ADC128S102 : public Component,
|
|
public spi::SPIDevice<spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_LOW, spi::CLOCK_PHASE_LEADING,
|
|
spi::DATA_RATE_10MHZ> {
|
|
public:
|
|
ADC128S102() = default;
|
|
|
|
void setup() override;
|
|
void dump_config() override;
|
|
float get_setup_priority() const override;
|
|
uint16_t read_data(uint8_t channel);
|
|
};
|
|
|
|
} // namespace adc128s102
|
|
} // namespace esphome
|