From bffe20f230d8b0ac6baf64b460b667414b4625ef Mon Sep 17 00:00:00 2001 From: gohai Date: Thu, 15 Oct 2015 13:15:57 +0200 Subject: [PATCH] I/O: Rename to "Hardware I/O" --- java/libraries/io/build.xml | 2 +- java/libraries/io/library.properties | 2 +- java/libraries/io/library/export.txt | 2 +- java/libraries/io/src/native/impl.c | 2 +- java/libraries/io/src/processing/io/GPIO.java | 2 +- java/libraries/io/src/processing/io/I2C.java | 2 +- java/libraries/io/src/processing/io/LED.java | 2 +- java/libraries/io/src/processing/io/NativeInterface.java | 2 +- java/libraries/io/src/processing/io/PWM.java | 2 +- java/libraries/io/src/processing/io/RPI.java | 2 +- java/libraries/io/src/processing/io/SPI.java | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/java/libraries/io/build.xml b/java/libraries/io/build.xml index f1fcb4008..8828ccec5 100644 --- a/java/libraries/io/build.xml +++ b/java/libraries/io/build.xml @@ -1,5 +1,5 @@ - + diff --git a/java/libraries/io/library.properties b/java/libraries/io/library.properties index 9b276f0ca..6bf755571 100644 --- a/java/libraries/io/library.properties +++ b/java/libraries/io/library.properties @@ -1,2 +1,2 @@ -name = I/O +name = Hardware I/O version = 1 diff --git a/java/libraries/io/library/export.txt b/java/libraries/io/library/export.txt index 0e434e57f..4626bbfb3 100644 --- a/java/libraries/io/library/export.txt +++ b/java/libraries/io/library/export.txt @@ -1 +1 @@ -name = I/O for Raspberry Pi and other Linux-based computers +name = Hardware I/O for Raspberry Pi and other Linux-based computers diff --git a/java/libraries/io/src/native/impl.c b/java/libraries/io/src/native/impl.c index 86dcf50bb..b2748f7d1 100644 --- a/java/libraries/io/src/native/impl.c +++ b/java/libraries/io/src/native/impl.c @@ -1,6 +1,6 @@ /* Copyright (c) The Processing Foundation 2015 - I/O library developed by Gottfried Haider as part of GSOC 2015 + Hardware I/O library developed by Gottfried Haider as part of GSoC 2015 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/java/libraries/io/src/processing/io/GPIO.java b/java/libraries/io/src/processing/io/GPIO.java index 6652ae7a3..f0dcc0ed3 100644 --- a/java/libraries/io/src/processing/io/GPIO.java +++ b/java/libraries/io/src/processing/io/GPIO.java @@ -2,7 +2,7 @@ /* Copyright (c) The Processing Foundation 2015 - I/O library developed by Gottfried Haider as part of GSOC 2015 + Hardware I/O library developed by Gottfried Haider as part of GSoC 2015 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/java/libraries/io/src/processing/io/I2C.java b/java/libraries/io/src/processing/io/I2C.java index d488663a7..76ab19635 100644 --- a/java/libraries/io/src/processing/io/I2C.java +++ b/java/libraries/io/src/processing/io/I2C.java @@ -2,7 +2,7 @@ /* Copyright (c) The Processing Foundation 2015 - I/O library developed by Gottfried Haider as part of GSOC 2015 + Hardware I/O library developed by Gottfried Haider as part of GSoC 2015 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/java/libraries/io/src/processing/io/LED.java b/java/libraries/io/src/processing/io/LED.java index 961361d5b..5f1245fc3 100644 --- a/java/libraries/io/src/processing/io/LED.java +++ b/java/libraries/io/src/processing/io/LED.java @@ -2,7 +2,7 @@ /* Copyright (c) The Processing Foundation 2015 - I/O library developed by Gottfried Haider as part of GSOC 2015 + Hardware I/O library developed by Gottfried Haider as part of GSoC 2015 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/java/libraries/io/src/processing/io/NativeInterface.java b/java/libraries/io/src/processing/io/NativeInterface.java index b2dc64f3c..5cb5105ad 100644 --- a/java/libraries/io/src/processing/io/NativeInterface.java +++ b/java/libraries/io/src/processing/io/NativeInterface.java @@ -2,7 +2,7 @@ /* Copyright (c) The Processing Foundation 2015 - I/O library developed by Gottfried Haider as part of GSOC 2015 + Hardware I/O library developed by Gottfried Haider as part of GSoC 2015 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/java/libraries/io/src/processing/io/PWM.java b/java/libraries/io/src/processing/io/PWM.java index c948787f3..7eecccff8 100644 --- a/java/libraries/io/src/processing/io/PWM.java +++ b/java/libraries/io/src/processing/io/PWM.java @@ -2,7 +2,7 @@ /* Copyright (c) The Processing Foundation 2015 - I/O library developed by Gottfried Haider as part of GSOC 2015 + Hardware I/O library developed by Gottfried Haider as part of GSoC 2015 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/java/libraries/io/src/processing/io/RPI.java b/java/libraries/io/src/processing/io/RPI.java index 139a7b691..523ffeb12 100644 --- a/java/libraries/io/src/processing/io/RPI.java +++ b/java/libraries/io/src/processing/io/RPI.java @@ -2,7 +2,7 @@ /* Copyright (c) The Processing Foundation 2015 - I/O library developed by Gottfried Haider as part of GSOC 2015 + Hardware I/O library developed by Gottfried Haider as part of GSoC 2015 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/java/libraries/io/src/processing/io/SPI.java b/java/libraries/io/src/processing/io/SPI.java index 6f92e5c5e..279455e75 100644 --- a/java/libraries/io/src/processing/io/SPI.java +++ b/java/libraries/io/src/processing/io/SPI.java @@ -2,7 +2,7 @@ /* Copyright (c) The Processing Foundation 2015 - I/O library developed by Gottfried Haider as part of GSOC 2015 + Hardware I/O library developed by Gottfried Haider as part of GSoC 2015 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public