forked from winkj/arduino-sps
-
Notifications
You must be signed in to change notification settings - Fork 16
/
LICENSE.i2c_master_lib
31 lines (22 loc) · 1.35 KB
/
LICENSE.i2c_master_lib
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
This package includes the I2C master library from
https://github.com/DSSCircuits/I2C-Master-Library
in order to work around limitations in the I2C stack on certain Arduino boards (including the Arduino Uno).
More information can be found here:
http://dsscircuits.com/index.php/articles/66-arduino-i2c-master-library
Copyright (c) 2011-2012 Wayne Truchsess. All right reserved.
This is a modified version of the Arduino Wire/TWI
library. Functions were rewritten to provide more functionality
and also the use of Repeated Start. Some I2C devices will not
function correctly without the use of a Repeated Start. The
initial version of this library only supports the Master.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA