diff --git a/libraries/LiquidCrystal/README.adoc b/libraries/LiquidCrystal/README.adoc index d51cee75717..7ec321928ad 100644 --- a/libraries/LiquidCrystal/README.adoc +++ b/libraries/LiquidCrystal/README.adoc @@ -7,7 +7,8 @@ http://www.arduino.cc/en/Reference/LiquidCrystal == License == -Copyright (c) Arduino LLC. All right reserved. +Copyright (C) 2006-2008 Hans-Christoph Steiner. All rights reserved. +Copyright (c) 2010 Arduino LLC. All right reserved. 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/libraries/Robot_Control/src/ArduinoRobot.cpp b/libraries/Robot_Control/src/ArduinoRobot.cpp index 3adac73ba8a..dfc0efa5e23 100644 --- a/libraries/Robot_Control/src/ArduinoRobot.cpp +++ b/libraries/Robot_Control/src/ArduinoRobot.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2013 Arduino LLC. All right reserved. + + 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 +*/ + #include "ArduinoRobot.h" #include "Multiplexer.h" #include "Wire.h" @@ -37,4 +55,4 @@ void RobotControl::setMode(uint8_t mode){ } -RobotControl Robot=RobotControl(); \ No newline at end of file +RobotControl Robot=RobotControl(); diff --git a/libraries/Robot_Control/src/ArduinoRobot.h b/libraries/Robot_Control/src/ArduinoRobot.h index 2b11a9484c5..3bc833bc369 100644 --- a/libraries/Robot_Control/src/ArduinoRobot.h +++ b/libraries/Robot_Control/src/ArduinoRobot.h @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #ifndef ArduinoRobot_h #define ArduinoRobot_h @@ -371,4 +389,4 @@ inline void RobotControl::countryNameWrite(char* text){ extern RobotControl Robot; -#endif \ No newline at end of file +#endif diff --git a/libraries/Robot_Control/src/Compass.cpp b/libraries/Robot_Control/src/Compass.cpp index 1b1ef3149ab..34f6181bfee 100644 --- a/libraries/Robot_Control/src/Compass.cpp +++ b/libraries/Robot_Control/src/Compass.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2013 Arduino LLC. All right reserved. + + 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 +*/ + #include "Compass.h" #include @@ -31,4 +49,4 @@ void Compass::_beginTransmission(){ } void Compass::_endTransmission(){ Wire.endTransmission(); -} \ No newline at end of file +} diff --git a/libraries/Robot_Control/src/Compass.h b/libraries/Robot_Control/src/Compass.h index aa085a98a80..fb321f6fc6f 100644 --- a/libraries/Robot_Control/src/Compass.h +++ b/libraries/Robot_Control/src/Compass.h @@ -1,3 +1,21 @@ +/* + Copyright (c) 2013 Arduino LLC. All right reserved. + + 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 +*/ + #ifndef Compass_h #define Compass_h @@ -21,4 +39,4 @@ class Compass{ }; -#endif \ No newline at end of file +#endif diff --git a/libraries/Robot_Control/src/Melody.cpp b/libraries/Robot_Control/src/Melody.cpp index 9ef964631be..22b7f2607d6 100644 --- a/libraries/Robot_Control/src/Melody.cpp +++ b/libraries/Robot_Control/src/Melody.cpp @@ -1,9 +1,25 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include "ArduinoRobot.h" #include "SquawkSD.h" #include "Fat16.h" - - SQUAWK_CONSTRUCT_ISR(SQUAWK_PWM_PIN5); diff --git a/libraries/Robot_Control/src/Motors.cpp b/libraries/Robot_Control/src/Motors.cpp index 3555886a22e..cfa76cb83bd 100644 --- a/libraries/Robot_Control/src/Motors.cpp +++ b/libraries/Robot_Control/src/Motors.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include "ArduinoRobot.h" #include "EasyTransfer2.h" @@ -110,4 +128,4 @@ int RobotControl::getIRrecvResult(){ return -1; } -*/ \ No newline at end of file +*/ diff --git a/libraries/Robot_Control/src/Multiplexer.cpp b/libraries/Robot_Control/src/Multiplexer.cpp index 8f7d30e852f..71a6d05821b 100644 --- a/libraries/Robot_Control/src/Multiplexer.cpp +++ b/libraries/Robot_Control/src/Multiplexer.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include "Multiplexer.h" void Multiplexer::begin(uint8_t* selectors, uint8_t Z, uint8_t length){ diff --git a/libraries/Robot_Control/src/Multiplexer.h b/libraries/Robot_Control/src/Multiplexer.h index a0c4c5ce21e..fcff1f883de 100644 --- a/libraries/Robot_Control/src/Multiplexer.h +++ b/libraries/Robot_Control/src/Multiplexer.h @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #ifndef Multiplexer_h #define Multiplexer_h diff --git a/libraries/Robot_Control/src/RobotSdCard.cpp b/libraries/Robot_Control/src/RobotSdCard.cpp index df833d2c70f..7cb723bacb2 100644 --- a/libraries/Robot_Control/src/RobotSdCard.cpp +++ b/libraries/Robot_Control/src/RobotSdCard.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include void RobotControl::beginSD(){ @@ -19,4 +37,4 @@ void RobotControl::sdTest(){ while ((n = file.read(buf, sizeof(buf))) > 0) { for (uint8_t i = 0; i < n; i++) Serial.write(buf[i]); } -}*/ \ No newline at end of file +}*/ diff --git a/libraries/Robot_Control/src/Sensors.cpp b/libraries/Robot_Control/src/Sensors.cpp index b651c28a4c5..462a5a5b83d 100644 --- a/libraries/Robot_Control/src/Sensors.cpp +++ b/libraries/Robot_Control/src/Sensors.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include "ArduinoRobot.h" #include "Multiplexer.h" #include "Wire.h" @@ -271,4 +289,4 @@ uint16_t RobotControl::getDistance(){ uint16_t distance = pulseIn(pinEcho_UR, HIGH); // Read in times pulse distance= distance/58; // Calculate distance from time of pulse return distance; -}*/ \ No newline at end of file +}*/ diff --git a/libraries/Robot_Control/src/communication.cpp b/libraries/Robot_Control/src/communication.cpp index 9e796c373b3..4082a1d5ded 100644 --- a/libraries/Robot_Control/src/communication.cpp +++ b/libraries/Robot_Control/src/communication.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include bool RobotControl::isActionDone(){ diff --git a/libraries/Robot_Control/src/helper.cpp b/libraries/Robot_Control/src/helper.cpp index a7a956aa502..351bca6b86c 100644 --- a/libraries/Robot_Control/src/helper.cpp +++ b/libraries/Robot_Control/src/helper.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include "ArduinoRobot.h" void RobotControl::drawBase(){ diff --git a/libraries/Robot_Control/src/information.cpp b/libraries/Robot_Control/src/information.cpp index c36e9cedf8a..79d1fd44c48 100644 --- a/libraries/Robot_Control/src/information.cpp +++ b/libraries/Robot_Control/src/information.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + /*#include //0 - 319: pic array, @@ -38,4 +56,4 @@ void RobotControl::setMyCity(char* text){ void RobotControl::setMyCountry(char* text){ EEPROM_I2C::writePage(ADDRESS_COUNTRYNAME,(uint8_t*)text,18); } -*/ \ No newline at end of file +*/ diff --git a/libraries/Robot_Control/src/keyboard.cpp b/libraries/Robot_Control/src/keyboard.cpp index 7e647bb3208..f45b36b6447 100644 --- a/libraries/Robot_Control/src/keyboard.cpp +++ b/libraries/Robot_Control/src/keyboard.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include "ArduinoRobot.h" #if ARDUINO >= 100 @@ -62,4 +80,4 @@ void sort(int* v){ v[i]=tmp; } v[0]=v[3]; -} \ No newline at end of file +} diff --git a/libraries/Robot_Control/src/lcd.cpp b/libraries/Robot_Control/src/lcd.cpp index 1f9f2cee439..0f78bb61803 100644 --- a/libraries/Robot_Control/src/lcd.cpp +++ b/libraries/Robot_Control/src/lcd.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include "ArduinoRobot.h" #include "Wire.h" diff --git a/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.cpp b/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.cpp index 4d795e06116..1a68b770787 100644 --- a/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.cpp +++ b/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include "ArduinoRobotMotorBoard.h" #include "EasyTransfer2.h" #include "Multiplexer.h" @@ -266,4 +284,4 @@ void RobotMotorBoard::reportActionDone(){ messageOut.sendData(); } -RobotMotorBoard RobotMotor=RobotMotorBoard(); \ No newline at end of file +RobotMotorBoard RobotMotor=RobotMotorBoard(); diff --git a/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.h b/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.h index 2bbc8ea8a4a..1d3a7138124 100644 --- a/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.h +++ b/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.h @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #ifndef ArduinoRobot_h #define ArduinoRobot_h @@ -123,4 +141,4 @@ class RobotMotorBoard:public LineFollow{ extern RobotMotorBoard RobotMotor; -#endif \ No newline at end of file +#endif diff --git a/libraries/Robot_Motor/src/LineFollow.h b/libraries/Robot_Motor/src/LineFollow.h index 8c5bc496efd..0ae0e4cb596 100644 --- a/libraries/Robot_Motor/src/LineFollow.h +++ b/libraries/Robot_Motor/src/LineFollow.h @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #ifndef LINE_FOLLOW_H #define LINE_FOLLOW_H @@ -37,4 +55,4 @@ class LineFollow{ int sensor_negro[5]; }; -#endif \ No newline at end of file +#endif diff --git a/libraries/Robot_Motor/src/Multiplexer.cpp b/libraries/Robot_Motor/src/Multiplexer.cpp index c0fdd867fbc..71a6d05821b 100644 --- a/libraries/Robot_Motor/src/Multiplexer.cpp +++ b/libraries/Robot_Motor/src/Multiplexer.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #include "Multiplexer.h" void Multiplexer::begin(uint8_t* selectors, uint8_t Z, uint8_t length){ @@ -34,4 +52,4 @@ int Multiplexer::getAnalogValueAt(uint8_t num){ bool Multiplexer::getDigitalValueAt(uint8_t num){ selectPin(num); return getDigitalValue(); -} \ No newline at end of file +} diff --git a/libraries/Robot_Motor/src/Multiplexer.h b/libraries/Robot_Motor/src/Multiplexer.h index a0c4c5ce21e..fcff1f883de 100644 --- a/libraries/Robot_Motor/src/Multiplexer.h +++ b/libraries/Robot_Motor/src/Multiplexer.h @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + #ifndef Multiplexer_h #define Multiplexer_h diff --git a/libraries/Robot_Motor/src/lineFollow.cpp b/libraries/Robot_Motor/src/lineFollow.cpp index 71eacb5ad33..08964e95343 100644 --- a/libraries/Robot_Motor/src/lineFollow.cpp +++ b/libraries/Robot_Motor/src/lineFollow.cpp @@ -1,3 +1,21 @@ +/* + Copyright (c) 2012 Arduino LLC. All right reserved. + + 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 +*/ + //#include #include "LineFollow.h" diff --git a/libraries/SpacebrewYun/README.adoc b/libraries/SpacebrewYun/README.adoc index a17e5ac246e..d588ae8bf1d 100644 --- a/libraries/SpacebrewYun/README.adoc +++ b/libraries/SpacebrewYun/README.adoc @@ -4,18 +4,16 @@ This library allows an Arduino Yun to connect to the Spacebrew service. == License == -Copyright (c) Arduino LLC. All right reserved. +Copyright (c) 2014 Julio Terra. All right reserved. -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. +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at -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. + http://www.apache.org/licenses/LICENSE-2.0 -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 +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License.