Skip to content

Commit 0730827

Browse files
committed
updated readme and library.properties for 2.0.0
also license copyright year
1 parent 6de1829 commit 0730827

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2016 Pololu Corporation. For more information, see
1+
Copyright (c) 2015-2017 Pololu Corporation. For more information, see
22

33
http://www.pololu.com/
44
http://forum.pololu.com/

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Raspberry Pi slave library for Arduino
22

3-
Version: 1.0.1<br>
4-
Release date: 2017 January 23<br>
3+
Version: 2.0.0<br>
4+
Release date: 2017 March 31<br>
55
[![Build Status](https://travis-ci.org/pololu/pololu-rpi-slave-arduino-library.svg?branch=master)](https://travis-ci.org/pololu/pololu-rpi-slave-arduino-library)<br>
66
[www.pololu.com](https://www.pololu.com/)
77

@@ -11,13 +11,14 @@ Summary
1111
This is an Arduino library that helps establish I<sup>2</sup>C communication with
1212
a Raspberry Pi, with the Arduino acting as the I<sup>2</sup>C slave. It should
1313
work with most Arduino-compatible boards, but we designed it for use
14-
with the
15-
[A-Star 32U4 Robot Controller](https://www.pololu.com/product/3119),
16-
which mounts conveniently to the Pi's GPIO header. The idea is that
17-
the Raspberry Pi can take care of high-level tasks like video
18-
processing or network communication, while the A-Star takes care of
19-
actuator control, sensor inputs, and other low-level tasks that the Pi
20-
is incapable of.
14+
with these Pololu products:
15+
* [A-Star 32U4 Robot Controller LV](https://www.pololu.com/product/3117) or [SV](https://www.pololu.com/product/3119)
16+
* [Romi 32U4 Control Board](https://www.pololu.com/product/3544)
17+
These boards are designed to connect conveniently to the Pi's GPIO header. The
18+
idea is that the Raspberry Pi can take care of high-level tasks like video
19+
processing or network communication, while the AVR microcontroller takes care of
20+
actuator control, sensor inputs, and other low-level tasks that the Pi is
21+
incapable of.
2122

2223
There are a few reasons we made a library for this instead of
2324
just recommending the standard Arduino I<sup>2</sup>C library, Wire.h:
@@ -32,7 +33,7 @@ just recommending the standard Arduino I<sup>2</sup>C library, Wire.h:
3233
I<sup>2</sup>C library, Wire.h, is not flexible enough to allow us to follow
3334
the suggested workarounds (delays inserted at key points).
3435

35-
We have included example Arduino code for the A-Star and Python code
36+
We have included example Arduino code for the A-Star or Romi and Python code
3637
for the Raspberry Pi. Together, the examples set up a web server on
3738
the Raspberry Pi that will let you remotely control and monitor a
3839
robot from your smartphone or computer.
@@ -60,5 +61,6 @@ we have slowed down reads significantly.
6061
Version history
6162
---------------
6263

64+
* 2.0.0 (2017 Mar 31): Added support for encoder counts and slave sketch for the Romi 32U4 robot. Updated Raspberry Pi scripts to use Python 3 instead of Python 2.
6365
* 1.0.1 (2017 Jan 23): Added and adjusted delays necessary for reliable operation on the Pi 3.
6466
* 1.0.0 (2016 Feb 16): Original release.

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=PololuRPiSlave
2-
version=1.0.1
2+
version=2.0.0
33
author=Pololu
44
maintainer=Pololu <inbox@pololu.com>
55
sentence=Pololu Raspberry Pi I2C Slave Arduino library
6-
paragraph=This library helps set up a Pololu A-Star 32U4 controller as an I2C slave for use with the Raspberry Pi.
6+
paragraph=This library helps set up a Pololu A-Star or Romi as an I2C slave for use with the Raspberry Pi.
77
category=Communication
88
url=https://github.com/pololu/pololu-rpi-slave-arduino-library
99
architectures=avr

0 commit comments

Comments
 (0)