mirror of
https://github.com/esphome/esphome.git
synced 2025-04-15 07:10:33 +01:00
16 lines
376 B
C++
16 lines
376 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/automation.h"
|
|
#include "esphome/components/canbus/canbus.h"
|
|
|
|
namespace esphome {
|
|
namespace esp32_can {
|
|
class ESP32Can : public canbus::Canbus {
|
|
public:
|
|
ESP32Can() {};
|
|
ESP32Can(const std::string &name){};
|
|
void send(int can_id, uint8_t *data){};
|
|
};
|
|
} // namespace esp32_can
|
|
} // namespace esphome
|