forked from dimitry-ishenko-cpp/firmata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencoder.hpp
70 lines (53 loc) · 1.97 KB
/
encoder.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2017 Dimitry Ishenko
// Contact: dimitry (dot) ishenko (at) (gee) mail (dot) com
//
// Distributed under the GNU GPL license. See the LICENSE.md file for details.
////////////////////////////////////////////////////////////////////////////////
#ifndef FIRMATA_ENCODER_HPP
#define FIRMATA_ENCODER_HPP
////////////////////////////////////////////////////////////////////////////////
#include "firmata/call_chain.hpp"
#include "firmata/pin.hpp"
////////////////////////////////////////////////////////////////////////////////
namespace firmata
{
////////////////////////////////////////////////////////////////////////////////
class encoder
{
public:
////////////////////
encoder() = default;
encoder(pin&, pin&);
~encoder();
encoder(const encoder&) = delete;
encoder(encoder&& rhs) noexcept { swap(rhs); }
encoder& operator=(const encoder&) = delete;
encoder& operator=(encoder&& rhs) noexcept { swap(rhs); return *this; }
void swap(encoder&) noexcept;
////////////////////
bool valid() const noexcept { return pin1_; }
explicit operator bool() const noexcept { return valid(); }
////////////////////
using int_call = call<void(int)>;
using void_call = call<void()>;
// install rotate callback
cid on_rotate(int_call);
cid on_rotate_cw(void_call);
cid on_rotate_ccw(void_call);
// remove callback
bool remove_call(cid);
private:
////////////////////
pin* pin1_ = nullptr; pin* pin2_ = nullptr; cid id_;
// rotate call chains
call_chain< int_call> rotate_ { 0 };
call_chain<void_call> rotate_cw_ { 1 };
call_chain<void_call> rotate_ccw_ { 2 };
void pin_state_changed(int);
enum { no, cw, ccw } step_ = no;
};
////////////////////////////////////////////////////////////////////////////////
}
////////////////////////////////////////////////////////////////////////////////
#endif