This commit is contained in:
Tobias Reisinger 2019-11-15 01:23:43 +01:00
commit d8ad2c205a
12 changed files with 253 additions and 0 deletions
models

10
models/relay.c Normal file
View file

@ -0,0 +1,10 @@
#include <stdlib.h>
#include "relay.h"
relay*
relay_init(uint8_t index)
{
(void)index;
return NULL;
}