forked from sumotoy/gpio_expander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpio_expander.h
61 lines (41 loc) · 1.84 KB
/
gpio_expander.h
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
/*
gpio_expander - An attemp to create a fast and universal library for drive many GPIO chips
Features:
- Can drive many type of GPIO's chip from different makers.
- Use almost same commands for all chips so they can be easily exchanged.
- Can access special registers of some chip.
Copyright (c) 2013-2014, sumotoy, coded by Max MC Costa.
gpio_expander Library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
gpio_expander Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Version:0.8b3 - Fixed an error that blocks I/O 16 in many functions
(thanks Thorsten to point me this)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
#ifndef _GPIO_EXPANDER_H_
#define _GPIO_EXPANDER_H_
#include <inttypes.h>
#include <Arduino.h>
#if defined(__MK20DX128__) || defined(__MK20DX256__)//Teensy 3.0 or 3.1
#define __FASTWRITE
#endif
class gpio_expander {
public:
gpio_expander( );
virtual void begin(bool protocolInitOverride=false) = 0;
//void command();
protected:
inline uint16_t byte2word(byte high_byte,byte low_byte){return (word)high_byte << 8 | (word)low_byte;};
inline byte word2highByte(uint16_t data){return (byte)(data >> 8);};
inline byte word2lowByte(uint16_t data){return (byte)(data & 0x00FF);};
private:
};
#endif