Espruino/libs/bluetooth/jswrap_bluetooth.h
Michael Dietz d99807f97c ble interface now workig. use the Bluetooth class and call enable_com to
start programming espruino in hjavascript from ble
2015-09-23 16:23:19 +02:00

10 lines
267 B
C

#include <stdbool.h>
#include "jspin.h"
// public static methods.
void jswrap_nrf_bluetooth_init(void);
void jswrap_nrf_bluetooth_send_string(Pin* string_to_send, int length);
void jswrap_nrf_bluetooth_enable_com(void);
void jswrap_nrf_bluetooth_disable_com(void);