hpgl_xy/stm32f103t8u6/src/hpgl.h
2021-04-04 20:33:45 +02:00

12 lines
154 B
C

#pragma once
#include <stdbool.h>
typedef struct
{
bool pen_down;
unsigned int x;
unsigned int y;
} HPGL_Movement_t;
void HPGL_Poll(void);