blob: 4d2e3a11f4ac8b35b8862f758e50ad8bf5aa56b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "ino-event.h"
#include "emb-logging.h"
#include "Arduino.h"
/**************************************************/
/* EventHandlers - These need to be in the sketch */
/**************************************************/
extern void eventHandler_addStitchAbs(InoPattern*, double, double, int, int);
/**************************************************/
/* EventSenders */
/**************************************************/
void inoEvent_addStitchAbs(InoPattern* p, double x, double y, int flags, int isAutoColorIndex)
{
eventHandler_addStitchAbs(p, x, y, flags, isAutoColorIndex);
}
/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */
|