Skip to content

Commit

Permalink
feat::temperature module
Browse files Browse the repository at this point in the history
-add header file
  • Loading branch information
abdullahbagyapan committed Apr 18, 2024
1 parent eb5a8b3 commit 6a095fe
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions temperature/temperature.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
@module: TEMPERATURE
@author: Abdullah Bagyapan
@date: 18/04/2024
*/

/*================================== Libraries ==================================*/

#include "stdint.h"


/*================================== Functions ==================================*/


/*
@brief: Initialize temperature sensor
@author Abdullah Bagyapan
@date 18/04/2024
@param None
@return None
*/
void TEMPERATURE_Init(void);



/*
@brief: Read data from temperature sensor
@author Abdullah Bagyapan
@date 18/04/2024
@param None
@return The data, read from sensor
*/
uint8_t TEMPERATURE_Read(void);

0 comments on commit 6a095fe

Please sign in to comment.