Firmware

Dependencies:   BMI160 ADT7410 Thermistor DS1621 max32630fthr Adafruit_FeatherOLED

Committer:
condato_mbed
Date:
Thu Jul 09 15:56:48 2020 +0000
Revision:
0:556294574340
coldchainlogger

Who changed what in which revision?

UserRevisionLine numberNew contents of line
condato_mbed 0:556294574340 1 #include "mbed.h"
condato_mbed 0:556294574340 2 #include <BLE.h>
condato_mbed 0:556294574340 3 #include "ble/BLE.h"
condato_mbed 0:556294574340 4
condato_mbed 0:556294574340 5 void periodicCallback(void);
condato_mbed 0:556294574340 6 void writeLedCallback(void);
condato_mbed 0:556294574340 7 void disconnectionCallback(const Gap::DisconnectionCallbackParams_t *);
condato_mbed 0:556294574340 8 void updateSensorValue();
condato_mbed 0:556294574340 9 void printMacAddress();
condato_mbed 0:556294574340 10 void writeCharCallback(const GattWriteCallbackParams *params);
condato_mbed 0:556294574340 11 void disconnect();
condato_mbed 0:556294574340 12 void whenConnected(const Gap::ConnectionCallbackParams_t *);
condato_mbed 0:556294574340 13 void onDataSent(unsigned count);
condato_mbed 0:556294574340 14 void gattServer_onUpdatesEnabled(GattAttribute::Handle_t handle);
condato_mbed 0:556294574340 15 void gattServer_onUpdatesDisabled(GattAttribute::Handle_t handle);
condato_mbed 0:556294574340 16 void gattServer_onConfirmationReceived(GattAttribute::Handle_t handle);
condato_mbed 0:556294574340 17 void after_BL();
condato_mbed 0:556294574340 18 void BT_false();
condato_mbed 0:556294574340 19 void BT_true();
condato_mbed 0:556294574340 20 void log_count();
condato_mbed 0:556294574340 21 void messdaten_count();
condato_mbed 0:556294574340 22 void unixtime_to_char_array();
condato_mbed 0:556294574340 23 int array_to_int(int z);
condato_mbed 0:556294574340 24 void bleInitComplete(BLE::InitializationCompleteCallbackContext *params);
condato_mbed 0:556294574340 25 void BLE_handler();