DUDS
Distributed Update of Data from Something
Pwm.hpp
Go to the documentation of this file.
1 /*
2  * This file is part of the DUDS project. It is subject to the BSD-style
3  * license terms in the LICENSE file found in the top-level directory of this
4  * distribution and at https://github.com/jjackowski/duds/blob/master/LICENSE.
5  * No part of DUDS, including this file, may be copied, modified, propagated,
6  * or distributed except according to the terms contained in the LICENSE file.
7  *
8  * Copyright (C) 2017 Jeff Jackowski
9  */
10 //
11 
12 namespace duds { namespace hardware { namespace interface {
13 //
14 
15 class Pwm {
16 public:
17  frequency()
18  period()
19  dutyCycle()
20  dutyCyclePercent()
21  start
22  stop
23 };
24 
25 class PwmPort {
26  struct PinEntry {
27 
28  };
29 public:
30  frequency()
31  period()
32  dutyCycle()
33  dutyCyclePercent()
34  start
35  stop
36 };
37 
38 } } }