You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
233 B

#ifndef _COMSTACK_HPP_
#define _COMSTACK_HPP_
#include <stdint.h>
class Comstack
{
public:
Comstack();
void input(uint8_t value);
private:
uint8_t counter;
const uint8_t nBytes = 5;
};
#endif // _COMSTACK_HPP_