Subversion Repositories HomeAutomation

Rev

Rev 363 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*********************************************************************
  2.  *
  3.  *   Header file for BLINDS routines.
  4.  *
  5.  *********************************************************************
  6.  * FileName:        $HeadURL: https://svn.auml.se/svn/HomeAutomation/branches/modules/EmbeddedSoftware/PIC/canTemp/Include/blinds.h $
  7.  * Last changed:    $LastChangedDate: 2007-03-13 18:29:20 +0100 (Tue, 13 Mar 2007) $
  8.  * By:              $LastChangedBy: johboh $
  9.  * Revision:        $Revision: 363 $
  10.  ********************************************************************/
  11. #ifndef BLINDS_H
  12. #define BLINDS_H
  13.  
  14. #include <stackTasks.h>
  15. #include <typedefs.h>
  16. #include <delays.h>
  17. #include <compiler.h>
  18.  
  19.  
  20.  
  21. #define IO_TIMEOUT 200//700
  22. #define TMR1_VAL 60536
  23. // 0.05ms
  24. // Fosc/4 = 10Mhz = 0,0000001
  25. // 0.1ms = 500
  26.  
  27. #define DUTY_OFF_DELAY 15536
  28.  
  29. void blindsInit(void);
  30.  
  31. void blindsTurn(BYTE precent);
  32.  
  33. void blindsISR(void);
  34.  
  35. BYTE blindsGetPrecent(void);
  36.  
  37. #endif
  38.