Skip to content

Commit 17a7132

Browse files
authored
Merge branch 'master' into master
2 parents e9d5e25 + a180e4c commit 17a7132

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+160285
-98
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from adafruit_circuitplayground.express import cpx
2+
3+
while True:
4+
if cpx.button_a:
5+
cpx.play_file("rise.wav")
6+
if cpx.button_b:
7+
cpx.play_file("dip.wav")
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from adafruit_circuitplayground.express import cpx
2+
3+
while True:
4+
if cpx.button_a:
5+
cpx.play_tone(260, 1)
6+
if cpx.button_b:
7+
cpx.play_tone(292, 1)

Adafruit_STEMMA_Speaker/dip.wav

25.9 KB
Binary file not shown.

Adafruit_STEMMA_Speaker/rise.wav

25.7 KB
Binary file not shown.

All_Seeing_Skull/All_Seeing_Skull.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ void setup(void) {
8585
Serial.begin(115200);
8686
randomSeed(analogRead(A3)); // Seed random() from floating analog input
8787

88+
pinMode(MOTION_SENSOR_PIN, INPUT);
89+
8890
#ifdef DISPLAY_BACKLIGHT
8991
// Enable backlight pin, initially off
9092
pinMode(DISPLAY_BACKLIGHT, OUTPUT);

BLE_Client_Server/Eagle/CP_Solenoid3.brd

Lines changed: 1778 additions & 0 deletions
Large diffs are not rendered by default.

BLE_Client_Server/Eagle/CP_Solenoid3.sch

Lines changed: 6582 additions & 0 deletions
Large diffs are not rendered by default.

BLE_Client_Server/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Adafruit Learning System tutorial - A CircuitPython BLE Client & Server
2+
3+
Use Bluetooth to turn a server on and off and actively sense the server's status light
4+
5+
Follow the Adafruit learn guide here: https://learn.adafruit.com/circuitpython-ble-client-server/
6+
7+
Adafruit invests time and resources providing this open source code,
8+
please support Adafruit and open-source hardware by purchasing
9+
products from [Adafruit](https://www.adafruit.com)!
10+
11+
MIT license, project and code by rdagger
12+
13+
All text above, and the splash screen below must be included in any redistribution
14+
15+
-----------------------
16+
If you are looking to make changes/additions, please use the GitHub Issues and Pull Request mechanisms.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)