-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
License clarification, Kwalitee improvements, Minor edits (#28)
* module version, dependency on Device::SerialPort - fixed Perl module version in dist.in - added missing Perl module dependency on Device::SerialPort to Makefile.PL to ease installation via CPAN * skip author test for normal user installs - disable all author test (manifiest, pod, pod-coverage) for normal user installs * UNIX newlines - use UNIX newlines in .pm files - trailing whitspaces removed from .pm files * License clarification, Kwalitee improvements - resolved conflicting licence information from README and license.txt introduced by contributor Chris Fedde in 2011.03 to license chosen by original author Aki Mimoto in 2011.02 - replaced license.txt file with LICENSE file - added 'use warnings' to all Perl files - added pod to Firmata.pm
- Loading branch information
Showing
19 changed files
with
176 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,62 @@ | ||
Revision history for Device-Firmata | ||
0.64 2018.01.03 - Jens Beyer | ||
support Firmata protocol version 2.5 feature PIN_PULLUP (Constants, Platform, Protocol) | ||
0.63 2016.03.19 - Jens Beyer | ||
supported protocol version detection modified (Protocol) | ||
0.62 2016.02.22 - Jens Beyer | ||
added software serial support (Platform, Protocol) | ||
0.61 2016.01.09 - Jens Beyer | ||
added serial pin support (Platform, Protocol, Constants) | ||
added protocol version query (Platform) | ||
fixed messages_handle: REPORT_VERSION returns protocol version (Platform) | ||
added method get_max_compatible_protocol_version (Protocol) | ||
0.60 2014.06.28 - Norbert Truchsess | ||
Fixed formating of Firmata.pm as Windows line-endings break automatic install from CPAN | ||
0.59 2014.06.26 - Norbert Truchsess | ||
Fix a bug in the parser incorrectly skipping single 0x30 bytes | ||
0.58 2014.06.26 - Yanick Champoux | ||
cosmetic change to POD for CPAN | ||
0.57 2014.06.12 - Norbert Truchsess | ||
Fixed building dist for cpan | ||
0.56 2014.06.04 - Norbert Truchsess | ||
add generic method sysex_send to Platform.pl | ||
0.55 2014.04.17 - Norbert Truchsess | ||
fix digital-input message interference with output pins on same port | ||
0.54 2014.03.04 - Norbert Truchsess | ||
add stepper-motor protocol | ||
0.53 2014.03.03 - Norbert Truchsess | ||
add rotary-encoder protocol | ||
0.52 2013.11.22 - Norbert Truchsess | ||
add Firmata over Ethernet | ||
0.51 2013.09.10/23:00 - Brett Carroll | ||
Changed IO.pm to use Win32::SerialPort instead of Win32::Serialport on Windows platforms | ||
Norbert Truchsess: fix handle onewire in capability-response | ||
0.50 2012.12.13-2013.08.11 - Norbert Truchsess | ||
adding all missing protocol-features (1-Wire, I2C, Servo ...) | ||
adding observers for all suitable protocols | ||
Valdas Kondrotas: various bugfixes and enhancements. | ||
2011.03.23 - Chris Fedde | ||
reorganizing as CPAN ready module | ||
2011.02.16 Aki Mimoto | ||
implementig all protocol basics and releasing Device::Firmata on Github | ||
2010.08.31 Aki Mimoto | ||
Revision history for Device-Firmata | ||
|
||
0.64 2018.01.03 - Jens Beyer | ||
support Firmata protocol version 2.5 feature PIN_PULLUP (Constants, Platform, Protocol) | ||
|
||
0.63 2016.03.19 - Jens Beyer | ||
supported protocol version detection modified (Protocol) | ||
|
||
0.62 2016.02.22 - Jens Beyer | ||
added software serial support (Platform, Protocol) | ||
|
||
0.61 2016.01.09 - Jens Beyer | ||
added serial pin support (Platform, Protocol, Constants) | ||
added protocol version query (Platform) | ||
fixed messages_handle: REPORT_VERSION returns protocol version (Platform) | ||
added method get_max_compatible_protocol_version (Protocol) | ||
|
||
0.60 2014.06.28 - Norbert Truchsess | ||
Fixed formating of Firmata.pm as Windows line-endings break automatic install from CPAN | ||
|
||
0.59 2014.06.26 - Norbert Truchsess | ||
Fix a bug in the parser incorrectly skipping single 0x30 bytes | ||
|
||
0.58 2014.06.26 - Yanick Champoux | ||
cosmetic change to POD for CPAN | ||
|
||
0.57 2014.06.12 - Norbert Truchsess | ||
Fixed building dist for cpan | ||
|
||
0.56 2014.06.04 - Norbert Truchsess | ||
add generic method sysex_send to Platform.pl | ||
|
||
0.55 2014.04.17 - Norbert Truchsess | ||
fix digital-input message interference with output pins on same port | ||
|
||
0.54 2014.03.04 - Norbert Truchsess | ||
add stepper-motor protocol | ||
|
||
0.53 2014.03.03 - Norbert Truchsess | ||
add rotary-encoder protocol | ||
|
||
0.52 2013.11.22 - Norbert Truchsess | ||
add Firmata over Ethernet | ||
|
||
0.51 2013.09.10/23:00 - Brett Carroll | ||
Changed IO.pm to use Win32::SerialPort instead of Win32::Serialport on Windows platforms | ||
Norbert Truchsess: fix handle onewire in capability-response | ||
|
||
0.50 2012.12.13-2013.08.11 - Norbert Truchsess | ||
adding all missing protocol-features (1-Wire, I2C, Servo ...) | ||
adding observers for all suitable protocols | ||
|
||
Valdas Kondrotas: various bugfixes and enhancements. | ||
|
||
2011.03.23 - Chris Fedde | ||
reorganizing as CPAN ready module | ||
|
||
2011.02.16 Aki Mimoto | ||
implementig all protocol basics and releasing Device::Firmata on Github | ||
|
||
2010.08.31 Aki Mimoto | ||
start of development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
COPYRIGHT AND LICENSE | ||
|
||
Copyright (C) 2010 amimato | ||
Copyright (C) 2012 ntruchsess | ||
Copyright (C) 2016 jnsbyr | ||
|
||
This is free software; you can redistribute it and/or modify it under | ||
the same terms as the Perl 5 programming language system itself. | ||
|
||
See http://dev.perl.org/licenses/ for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.