Subversion Repositories DashDisplay

Rev

Rev 13 | Go to most recent revision | 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. 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.  
  17. extern void dial_draw_scale(int16_t low, int16_t high,uint8_t width, uint8_t num_step,int16_t scale);
  18.  
  19.  
  20.  
  21. #endif /* INC_DIALS_H_ */
  22.