Subversion Repositories DashDisplay

Rev

Rev 13 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 mjames 1
/*
2
 * dials.h
3
 *
4
 *  Created on: 22 Jan 2016
5
 *      Author: Mike
6
 */
7
 
8
#ifndef INC_DIALS_H_
9
#define INC_DIALS_H_
10
 
11
extern void dial_size(uint8_t size);
12
 
13
extern void dial_origin(uint8_t x, uint8_t y);
14
 
15
extern void dial_draw_needle(uint16_t percent);
16
 
13 mjames 17
extern void dial_draw_scale(int16_t low, int16_t high,uint8_t width, uint8_t num_step,int16_t scale);
2 mjames 18
 
19
 
20
 
21
#endif /* INC_DIALS_H_ */