Send DHT11 & SHT10 sensors data through LoRa SX1272 board.

Dependencies:   SX1272Lib mbed

Fork of SX1272PingPong by Semtech

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.h Source File

main.h

00001 /*
00002  / _____)             _              | |
00003 ( (____  _____ ____ _| |_ _____  ____| |__
00004  \____ \| ___ |    (_   _) ___ |/ ___)  _ \
00005  _____) ) ____| | | || |_| ____( (___| | | |
00006 (______/|_____)_|_|_| \__)_____)\____)_| |_|
00007     ( C )2014 Semtech
00008 
00009 Description: Contains the callbacks for the IRQs and any application related details
00010 
00011 License: Revised BSD License, see LICENSE.TXT file include in the project
00012 
00013 Maintainer: Miguel Luis and Gregory Cristian
00014 Last update: Antoine Boisadam
00015 */
00016 #ifndef __MAIN_H__
00017 #define __MAIN_H__
00018 
00019 /*
00020  * Callback functions prototypes
00021  */
00022 /*!
00023  * @brief Function to be executed on Radio Tx Done event
00024  */
00025 void OnTxDone( void );
00026 
00027 /*!
00028  * @brief Function executed on Radio Tx Timeout event
00029  */
00030 void OnTxTimeout( void );
00031 
00032 /*!
00033  * @brief Function executed on Radio Fhss Change Channel event
00034  */
00035 void OnFhssChangeChannel( uint8_t channelIndex );
00036 
00037 /*!
00038  * @brief Function executed on CAD Done event
00039  */
00040 void OnCadDone( void );
00041 
00042 #endif // __MAIN_H__