light sensor

Dependencies:   X_NUCLEO_IKS01A1 LoRaWAN-lib SX1276Lib mbed

Fork of LoRaWAN-SX1276-Application-Demo by Uttam Bhat

Committer:
ubhat
Date:
Sat Sep 09 00:26:19 2017 +0000
Revision:
6:25f847c99aa2
Parent:
0:42863a11464a
Changed packet format to Senet Packet Format for numeric stream on M2X

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ubhat 0:42863a11464a 1 /*
ubhat 0:42863a11464a 2 / _____) _ | |
ubhat 0:42863a11464a 3 ( (____ _____ ____ _| |_ _____ ____| |__
ubhat 0:42863a11464a 4 \____ \| ___ | (_ _) ___ |/ ___) _ \
ubhat 0:42863a11464a 5 _____) ) ____| | | || |_| ____( (___| | | |
ubhat 0:42863a11464a 6 (______/|_____)_|_|_| \__)_____)\____)_| |_|
ubhat 0:42863a11464a 7 (C)2015 Semtech
ubhat 0:42863a11464a 8
ubhat 0:42863a11464a 9 Description: Serial display management
ubhat 0:42863a11464a 10
ubhat 0:42863a11464a 11 License: Revised BSD License, see LICENSE.TXT file include in the project
ubhat 0:42863a11464a 12
ubhat 0:42863a11464a 13 Maintainer: Uttam Bhat
ubhat 0:42863a11464a 14 */
ubhat 0:42863a11464a 15 #ifndef __SERIAL_DISPLAY_H__
ubhat 0:42863a11464a 16 #define __SERIAL_DISPLAY_H__
ubhat 0:42863a11464a 17
ubhat 0:42863a11464a 18 #include "board.h"
ubhat 0:42863a11464a 19 #include "vt100.h"
ubhat 0:42863a11464a 20 #include "Comissioning.h"
ubhat 0:42863a11464a 21 #include "LoRaMac.h"
ubhat 0:42863a11464a 22 #include "Common.h"
ubhat 0:42863a11464a 23 #include "LoRaDeviceStateProc.h"
ubhat 0:42863a11464a 24
ubhat 0:42863a11464a 25 void SerialDisplayJoinUpdate( void );
ubhat 0:42863a11464a 26 void SerialDisplayTxUpdate( void );
ubhat 0:42863a11464a 27 void SerialDisplayRxUpdate( void );
ubhat 0:42863a11464a 28 void SerialDisplayHex( uint8_t *pData, uint8_t len );
ubhat 0:42863a11464a 29 void SerialAcclMetrDisplay( uint8_t statusReg );
ubhat 0:42863a11464a 30 void DisplayNetworkParam( void );
ubhat 0:42863a11464a 31
ubhat 0:42863a11464a 32 #endif // __SERIAL_DISPLAY_H__