Subversion Repositories DashDisplay

Rev

Rev 28 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  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.  
  12. extern void dial_size(uint8_t size);
  13.  
  14. extern void dial_origin(uint8_t x, uint8_t y);
  15.  
  16.  
  17. extern void dial_draw_needle(uint16_t step);
  18.  
  19. extern void dial_draw_scale(int16_t low, int16_t high,uint8_t width, uint8_t num_step,int16_t scale);
  20.  
  21.  
  22.  
  23. #endif /* INC_DIALS_H_ */
  24.