mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 15:46:14 +01:00
12 lines
193 B
C++
12 lines
193 B
C++
#ifndef CamParser_H
|
|
#define CamParser_H
|
|
#include <Arduino.h>
|
|
#include "IODevice.h"
|
|
|
|
class CamParser {
|
|
public:
|
|
static bool parseN(Print * stream, byte paramCount, int16_t p[]);
|
|
};
|
|
|
|
|
|
#endif |