#include "globals.h"
#include "ds1621.h"
#include "timer.h"
#include "hd44780.h"
#include "i2c.h"
#include <avr/pgmspace.h>
#include <avr/interrupt.h>
#include <stdlib.h>
Functions | |
void | init (void) |
initialize all data structures and electrical interfaces | |
u08 | print_tempchar (u08 temp, u08 base) |
Print one digit of a number on the display. | |
void | print_temperature (hires_temp_t temp) |
Print the temperature on the attached display. | |
int | main (void) |
the main method | |
Variables | |
const char welcome[] | PROGMEM = " AVRTherm v1.0C" |
Welcome message displayed at startup. |
This file contains the main method for AvrTherm
|
Print one digit of a number on the display.
|
|
Print the temperature on the attached display.
|