Skip to content

Library licenses #3498

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion libraries/LiquidCrystal/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 19 additions & 1 deletion libraries/Robot_Control/src/ArduinoRobot.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -37,4 +55,4 @@ void RobotControl::setMode(uint8_t mode){
}


RobotControl Robot=RobotControl();
RobotControl Robot=RobotControl();
20 changes: 19 additions & 1 deletion libraries/Robot_Control/src/ArduinoRobot.h
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -371,4 +389,4 @@ inline void RobotControl::countryNameWrite(char* text){

extern RobotControl Robot;

#endif
#endif
20 changes: 19 additions & 1 deletion libraries/Robot_Control/src/Compass.cpp
Original file line number Diff line number Diff line change
@@ -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 <Wire.h>

Expand Down Expand Up @@ -31,4 +49,4 @@ void Compass::_beginTransmission(){
}
void Compass::_endTransmission(){
Wire.endTransmission();
}
}
20 changes: 19 additions & 1 deletion libraries/Robot_Control/src/Compass.h
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -21,4 +39,4 @@ class Compass{

};

#endif
#endif
20 changes: 18 additions & 2 deletions libraries/Robot_Control/src/Melody.cpp
Original file line number Diff line number Diff line change
@@ -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);


Expand Down
20 changes: 19 additions & 1 deletion libraries/Robot_Control/src/Motors.cpp
Original file line number Diff line number Diff line change
@@ -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"

Expand Down Expand Up @@ -110,4 +128,4 @@ int RobotControl::getIRrecvResult(){

return -1;
}
*/
*/
18 changes: 18 additions & 0 deletions libraries/Robot_Control/src/Multiplexer.cpp
Original file line number Diff line number Diff line change
@@ -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){
Expand Down
18 changes: 18 additions & 0 deletions libraries/Robot_Control/src/Multiplexer.h
Original file line number Diff line number Diff line change
@@ -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

Expand Down
20 changes: 19 additions & 1 deletion libraries/Robot_Control/src/RobotSdCard.cpp
Original file line number Diff line number Diff line change
@@ -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::beginSD(){
Expand All @@ -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]);
}
}*/
}*/
20 changes: 19 additions & 1 deletion libraries/Robot_Control/src/Sensors.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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;
}*/
}*/
18 changes: 18 additions & 0 deletions libraries/Robot_Control/src/communication.cpp
Original file line number Diff line number Diff line change
@@ -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>

bool RobotControl::isActionDone(){
Expand Down
18 changes: 18 additions & 0 deletions libraries/Robot_Control/src/helper.cpp
Original file line number Diff line number Diff line change
@@ -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(){
Expand Down
20 changes: 19 additions & 1 deletion libraries/Robot_Control/src/information.cpp
Original file line number Diff line number Diff line change
@@ -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>
//0 - 319: pic array,

Expand Down Expand Up @@ -38,4 +56,4 @@ void RobotControl::setMyCity(char* text){
void RobotControl::setMyCountry(char* text){
EEPROM_I2C::writePage(ADDRESS_COUNTRYNAME,(uint8_t*)text,18);
}
*/
*/
20 changes: 19 additions & 1 deletion libraries/Robot_Control/src/keyboard.cpp
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -62,4 +80,4 @@ void sort(int* v){
v[i]=tmp;
}
v[0]=v[3];
}
}
Loading