Skip to content

Commit f68eb24

Browse files
Merge branch 'adafruit:main' into main
2 parents c9f008f + 945a085 commit f68eb24

18 files changed

Lines changed: 43 additions & 16 deletions

File tree

3D_Printed_Bionic_Eye/3D_Printed_Bionic_Eye.ino

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2018 Bill Earl and Mikey Sklar for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
14
/*******************************************************************
25
Bionic Eye sketch for Adafruit Trinket.
36

3D_Printed_Bionic_Eye/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2018 Bill Earl and Mikey Sklar for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
#
15
# Bionic Eye sketch for Adafruit Trinket.
26
#
37
# written by Bill Earl for Arduino

3D_Printed_Daft_Punk_Helmet/3D_Printed_Daft_Punk_Helmet-Front-Animation/3D_Printed_Daft_Punk_Helmet-Front-Animation.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2014 Phil Burgess for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
//
15
// Fiery demon horns (rawr!) for Adafruit Trinket/Gemma.
26
// Adafruit invests time and resources providing this open source code,
37
// please support Adafruit and open-source hardware by purchasing

3D_Printed_Daft_Punk_Helmet/3D_Printed_Daft_Punk_Helmet-Front-Animation/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2014 Phil Burgess for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# Fiery demon horns (rawr!) for Adafruit Trinket/Gemma.
26
# Adafruit invests time and resources providing this open source code,
37
# please support Adafruit and open-source hardware by purchasing

3D_Printed_Daft_Punk_Helmet/3D_Printed_Daft_Punk_Helmet-Side-Animation/3D_Printed_Daft_Punk_Helmet-Side-Animation.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2014 Phil Burgess for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// Adafruit Trinket+NeoPixel animation for Daft Punk-inspired helmet.
26
// Contains some ATtiny85-specific stuff; won't run as-is on Uno, etc.
37

3D_Printed_Daft_Punk_Helmet/3D_Printed_Daft_Punk_Helmet-Side-Animation/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2014 Phil Burgess for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# Adafruit Trinket+NeoPixel animation for Daft Punk-inspired helmet.
26
# Contains some ATtiny85-specific stuff; won't run as-is on Uno, etc.
37

3D_Printed_Guardian_Sword/3D_Printed_Guardian_Sword.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2018 Mikey Sklar for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
#include <Adafruit_NeoPixel.h>
26
#ifdef __AVR__
37
#include <avr/power.h>

3D_Printed_LED_Fire_Horns/3D_Printed_LED_Fire_Horns.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2017 Phil Burgess for Adafruit Industries
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
// Fiery demon horns (rawr!) for Adafruit Trinket/Gemma.
26
// Adafruit invests time and resources providing this open source code,
37
// please support Adafruit and open-source hardware by purchasing

3D_Printed_LED_Fire_Horns/code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2018 Phil Burgess and Mikey Sklar for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# Fiery demon horns (rawr!) for Adafruit Trinket/Gemma.
26
# Adafruit invests time and resources providing this open source code,
37
# please support Adafruit and open-source hardware by purchasing

Circuit_Playground_Express_IR_Treasure_Hunt/CPX_Treasure/code.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import time
22
import board
3-
import pwmio
43
import pulseio
54
import adafruit_irremote
65
import neopixel
@@ -12,9 +11,8 @@
1211
# Create NeoPixel object to indicate status
1312
pixels = neopixel.NeoPixel(board.NEOPIXEL, 10)
1413

15-
# Create a 'pwmio' output, to send infrared signals on the IR transmitter @ 38KHz
16-
pwm = pwmio.PWMOut(board.IR_TX, frequency=38000, duty_cycle=2 ** 15)
17-
pulseout = pulseio.PulseOut(pwm)
14+
# Create a 'pulseio' output, to send infrared signals on the IR transmitter @ 38KHz
15+
pulseout = pulseio.PulseOut(board.IR_TX, frequency=38000, duty_cycle=2 ** 15)
1816

1917
# Create an encoder that will take numbers and turn them into IR pulses
2018
encoder = adafruit_irremote.GenericTransmit(header=[9500, 4500],

0 commit comments

Comments
 (0)