Skip to content

Commit f17e3e6

Browse files
committed
update author and dates, fix small typo. Remove extra SPDX lines in setup.py
1 parent 43f590d commit f17e3e6

File tree

3 files changed

+4
-56
lines changed

3 files changed

+4
-56
lines changed

examples/debouncer_crickit_test.py

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,11 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2019 Dave Astels for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

4-
"""
5-
The MIT License (MIT)
6-
7-
Copyright (c) 2019 Dave Astels for Adafruit Industries
8-
9-
Permission is hereby granted, free of charge, to any person obtaining a copy
10-
of this software and associated documentation files (the "Software"), to deal
11-
in the Software without restriction, including without limitation the rights
12-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13-
copies of the Software, and to permit persons to whom the Software is
14-
furnished to do so, subject to the following conditions:
15-
16-
The above copyright notice and this permission notice shall be included in
17-
all copies or substantial portions of the Software.
18-
19-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25-
THE SOFTWARE.
26-
"""
27-
284
# pylint: disable=invalid-name
295

306
# Wait for a falling transition on the clock (signal 1)
317
# When it's seen, display the values of signal 2-5
32-
# Denmonstrates debouncing a lambda predicate
8+
# Demonstrates debouncing a lambda predicate
339

3410
import time
3511
from adafruit_crickit import crickit

examples/debouncer_simpletest.py

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,6 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
1+
# SPDX-FileCopyrightText: 2019 Dave Astels for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

4-
"""
5-
The MIT License (MIT)
6-
7-
Copyright (c) 2019 Dave Astels for Adafruit Industries
8-
9-
Permission is hereby granted, free of charge, to any person obtaining a copy
10-
of this software and associated documentation files (the "Software"), to deal
11-
in the Software without restriction, including without limitation the rights
12-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13-
copies of the Software, and to permit persons to whom the Software is
14-
furnished to do so, subject to the following conditions:
15-
16-
The above copyright notice and this permission notice shall be included in
17-
all copies or substantial portions of the Software.
18-
19-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25-
THE SOFTWARE.
26-
"""
27-
284
# pylint: disable=invalid-name
295

306
import board

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
2-
#
3-
# SPDX-License-Identifier: MIT
4-
51
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
6-
# SPDX-FileCopyrightText: Copyright (c) 2020 Dave Astels for Adafruit Industries
2+
# SPDX-FileCopyrightText: 2020 Dave Astels for Adafruit Industries
73
#
84
# SPDX-License-Identifier: MIT
95

0 commit comments

Comments
 (0)