mirror of
https://github.com/synthead/timex-datalink-arduino.git
synced 2026-07-27 19:55:50 +00:00
13 lines
249 B
C++
13 lines
249 B
C++
#ifndef NOTEBOOK_ADAPTER_H
|
|
#define NOTEBOOK_ADAPTER_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
namespace NotebookAdapter {
|
|
void emulate_command_mode(uint8_t serial_byte);
|
|
void emulate_data_mode(uint8_t serial_byte);
|
|
void emulate(uint8_t serial_byte);
|
|
}
|
|
|
|
#endif
|