Project Software
Below is the listing for main.c from the project.
/*==============================================================================
* Digital Thermometer demo project
*
* uses
* DS18x4: MAXIM DS18B20 Digital Thermometer component (v 0.0)
* Read temperature simultaneously from up to 8 DS18B20 sensors
*
* 11/05/2017
* Example project for CY8CKIT-049
* Built with Creator 4.0
* Includes timer to monitor SW1 - Resets PSoC after 2 sec, puts into bootloader
* SW1 is also monitored to initiate the OneWire comms
*
* 17/03/2018
* Project rebuilt with updated component using Creator 4.1
*
* ===========================================================================================
* PROVIDED AS-IS, NO WARRANTY OF ANY KIND, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
* FREE TO SHARE, USE AND MODIFY UNDER TERMS: CREATIVE COMMONS - SHARE ALIKE
* ===========================================================================================
*/
#include <project.h>
//#include <stdio.h> //sprintf
/*
#if defined (__GNUC__)
// Add an explicit reference to the floating point printf library
// to allow the usage of floating point conversion specifiers.
// This is not linked in by default with the newlib-nano library.
asm (".global _printf_float");
#endif
*/
static volatile CYBIT flag_Timer = 0 ;
/* Function Prototypes */
void Initialize(void);
void ReportTemperature (void); /* convert temperature code to deg C and send to UART */
//==============================================================================
// Timer Interrupt
//==============================================================================
CY_ISR(isr_Timer) /* ISR Timer to report temperature at regular intervals */
{
flag_Timer = 1;
isr_Timer_ClearPending();
}
//==============================================================================
// Reset PSoC Interrupt
//==============================================================================
CY_ISR (isr_Reset_Butn) /* Made it here then call a sw Reset */
{
Bootloadable_Load();
}
//==============================================================================
// Init PSoC
//==============================================================================
void Initialize(void)
{
UART_Start(); /* UART start */
UART_UartPutString("Temperature sensor Maxim DS18B20:\r\n");
OneWire_Start(); /* OneWire start */
Timer_1_Start(); /* Reset button timer start */
isr_Reset_StartEx(isr_Reset_Butn); /* Attach handler */
Timer_2_Start(); /* Clock report timer start */
isr_Timer_StartEx(isr_Timer); /* Attach handler */
}
//==============================================================================
// Convert temperature code to degC and
// Send result to Terminal using UART
//==============================================================================
void ReportTemperature(void)
{
char strMsg[80]={0}; /* output UART buffer */
char buf[8]; /* temp buffer */
static uint32 counter = 0; /* sample counter */
float res;
counter++;
/*
//example using GetTemperatureAsFloat() function
sprintf(strMsg,"%lu\t %.2f\t %.2f\t %.2f\t %.2f\t %.2f\t %.2f\t %.2f\t %.2f\r\n",
counter,
OneWire_GetTemperatureAsFloat(0),
OneWire_GetTemperatureAsFloat(1),
OneWire_GetTemperatureAsFloat(2),
OneWire_GetTemperatureAsFloat(3)
OneWire_GetTemperatureAsFloat(4),
OneWire_GetTemperatureAsFloat(4),
OneWire_GetTemperatureAsFloat(6),
OneWire_GetTemperatureAsFloat(7) //25675 ticks
);
*/
strcat(strMsg, itoa10(counter, buf)); strcat(strMsg, "\t");
strcat(strMsg, OneWire_GetTemperatureAsString(0)); strcat(strMsg, "\t");
strcat(strMsg, OneWire_GetTemperatureAsString(1)); strcat(strMsg, "\t");
strcat(strMsg, OneWire_GetTemperatureAsString(2)); strcat(strMsg, "\t");
strcat(strMsg, OneWire_GetTemperatureAsString(3)); strcat(strMsg, "\t");
strcat(strMsg, OneWire_GetTemperatureAsString(4)); strcat(strMsg, "\t");
strcat(strMsg, OneWire_GetTemperatureAsString(5)); strcat(strMsg, "\t");
strcat(strMsg, OneWire_GetTemperatureAsString(6)); strcat(strMsg, "\t");
strcat(strMsg, OneWire_GetTemperatureAsString(7)); strcat(strMsg, "\r\n"); //1910 ticks
UART_UartPutString(strMsg);
}
//==============================================================================
// Main
//==============================================================================
int main()
{
uint8_t i;
char c;
CyGlobalIntEnable; /* Enable global interrupts */
while(SW1_Read()); /* Wait for button press to continue (gives you time to switch to a terminal window) */
Initialize();
flag_Timer = 1; /* force first measument instantly */
for(;;)
{
if(flag_Timer) /* read DS18B20 on timer, intervals >1sec */
{
flag_Timer = 0;
OneWire_SendTemperatureRequest();
}
if (OneWire_DataReady) /* DS18 completed temperature measurement - begin read data */
{
OneWire_ReadTemperature();
ReportTemperature();
}
}
}
/* [] END OF FILE */
Project Hardware