forked from smalruby/smalrubot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLEGAL
98 lines (93 loc) · 2.78 KB
/
LEGAL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
LEGAL NOTICE INFORMATION
------------------------
All the files in this distribution are covered under either the
smalrubot license (see the file LICENSE) except some files
mentioned below.
.gitignore
.rvmrc
.travis.yml
bin/dino
CHANGELOG.md
dino.gemspec
examples/button
examples/button/button.png
examples/button/button.rb
examples/ethernet.rb
examples/ir_receiver
examples/ir_receiver/ir_receiver.rb
examples/led
examples/led/led.png
examples/led/led.rb
examples/potentiometer
examples/potentiometer/potentiometer.rb
examples/rgb_led
examples/rgb_led/rgb_led.rb
examples/sensor
examples/sensor/sensor.rb
examples/ser2net.rb
examples/servo
examples/servo/servo.rb
examples/stepper
examples/stepper/stepper.png
examples/stepper/stepper.rb
Gemfile
lib/dino/board.rb
lib/dino/board_not_found.rb
lib/dino/components
lib/dino/components/base_component.rb
lib/dino/components/button.rb
lib/dino/components/ir_receiver.rb
lib/dino/components/led.rb
lib/dino/components/rgb_led.rb
lib/dino/components/sensor.rb
lib/dino/components/servo.rb
lib/dino/components/stepper.rb
lib/dino/components.rb
lib/dino/tx_rx
lib/dino/tx_rx/base.rb
lib/dino/tx_rx/serial.rb
lib/dino/tx_rx/tcp.rb
lib/dino/tx_rx.rb
lib/dino/version.rb
lib/dino.rb
LICENSE
Rakefile
README.md
spec/lib/board_not_found_spec.rb
spec/lib/board_spec.rb
spec/lib/components
spec/lib/components/base_component_spec.rb
spec/lib/components/button_spec.rb
spec/lib/components/led_spec.rb
spec/lib/components/rgb_led_spec.rb
spec/lib/components/sensor_spec.rb
spec/lib/components/servo_spec.rb
spec/lib/components/stepper_spec.rb
spec/lib/tx_rx
spec/lib/tx_rx/serial_spec.rb
spec/lib/tx_rx/tcp_spec.rb
spec/spec_helper.rb
src/du/du.ino
src/du_ethernet
src/du_ethernet/du_ethernet.ino
src/lib/Dino.cpp
src/lib/Dino.h
These were forked from Dino ( https://github.com/austinbv/dino/tree/15cd48e849faeb08c7dc017ff39ff16ff2e165a3 ).
After that we modified.
Copyright (c) 2012 Austin
These files were released under the MIT license:
https://github.com/austinbv/dino/blob/master/LICENSE .
sketch/lib/Adafruit_NeoPixel.cpp
sketch/lib/Adafruit_NeoPixel.h
These were copied from adafruit/Adafruit_NeoPixel ( https://github.com/adafruit/Adafruit_NeoPixel )
NeoPixel 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 3 of
the License, or (at your option) any later version.
NeoPixel 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 NeoPixel. If not, see
<http://www.gnu.org/licenses/>.