mirror of
https://github.com/Oleg-Stepanenko-owo/IEBUS
synced 2025-06-29 02:36:47 +00:00
29 lines
471 B
C++
29 lines
471 B
C++
/*
|
|
*/
|
|
#ifndef AVCLanBT_h
|
|
#define AVCLanBT_h
|
|
|
|
#include <avr/pgmspace.h>
|
|
#include "Arduino.h"
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
class AVCLanBT
|
|
{
|
|
public:
|
|
void begin (); // initialisation, obligatory method
|
|
|
|
void println( char*);
|
|
void print(const char*);
|
|
|
|
private:
|
|
};
|
|
|
|
extern AVCLanBT avclanBT;
|
|
|
|
#endif
|
|
|
|
|