embkernel
 All Classes Functions Variables Typedefs Groups Pages
Hw.hpp
1 //------------------------------------------------------------------------------
2 //This file is part of embKernel.
3 //See license.txt for the full license governing this code.
4 //------------------------------------------------------------------------------
5 
6 #ifndef HW_HPP_
7 #define HW_HPP_
8 
9 #include "DrvGpio.hpp"
10 
11 class Hw {
12 public:
13  static DrvGpio sButton;
14  static DrvGpio sLed1;
15  static DrvGpio sLed2;
16  static DrvGpio sLed3;
17  static DrvGpio sLed4;
18 
19  static void init();
20 };
21 
22 #endif /* HW_HPP_ */