Los Putacos / Mbed OS WearableDevice_Nucleo

Dependencies:   MPU9250_SPI SDFileSystem XBeeLib

event.cpp

Committer:
gusteibolt
Date:
2017-10-12
Revision:
7:ebaaff27840b
Parent:
6:939df52d75c9
Child:
8:ba93a973f967

File content as of revision 7:ebaaff27840b:

/*
* Los Putacos
* Copyright (C) 2017, All rights reserved.
* ________________________________________ 
*
* Created by: Gustavo Campana, Michael Schmidt, Miguel Lopez
*       Date: 12-Oct-2017
*    Version: V0.1
*/
#include "mbed.h"

extern Serial pc;


void print_stinrg(char c = '*') {
    pc.putc(c);
}

void print_event(void const *argv) {
    pc.printf((const char*)argv);
}

void blink_event(DigitalOut pin){
    pin = 1;
}