Skip to content

Commit 9227039

Browse files
authored
Merge pull request #1 from sparkfun/dev2
Dev2 - (pre-toolkit)
2 parents fb43159 + ff22d61 commit 9227039

File tree

21 files changed

+896
-706
lines changed

21 files changed

+896
-706
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ UPDATE WHAT DOES THIS LIBRARY DO!?! =)
1414
1515
This library allows the user to:
1616
17-
* Determine whether or not the button/switch is pressed
18-
* Set the brightness of the onboard LED
19-
* Configure the onboard LED's "breathing" effect
20-
* Use button-based interrupts
17+
* Turn the buzzer on and off directly
18+
* Optionally, set the frequency, duration, and volume of the sound
2119
* Adjust the device's I<sup>2</sup>C address
2220
2321
-->

examples/Example2_LightWhenPressed/Example2_LightWhenPressed.ino

Lines changed: 0 additions & 50 deletions
This file was deleted.

examples/Example3_PulseWhenPressed/Example3_PulseWhenPressed.ino

Lines changed: 0 additions & 51 deletions
This file was deleted.

examples/Example4_QueueUsage/Example4_QueueUsage.ino

Lines changed: 0 additions & 81 deletions
This file was deleted.

examples/Example6_WireSettings/Example6_WireSettings.ino

Lines changed: 0 additions & 44 deletions
This file was deleted.

examples/Example7_2Buttons/Example7_2Buttons.ino

Lines changed: 0 additions & 61 deletions
This file was deleted.

examples/Example8_ExtInterrupt/Example8_ExtInterrupt.ino

Lines changed: 0 additions & 71 deletions
This file was deleted.

examples/Example_01_Buzz/Example_01_Buzz.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void setup() {
2828
Serial.println("Qwiic Buzzer Example_01_Buzz");
2929
Wire.begin(); //Join I2C bus
3030

31-
//check if button will acknowledge over I2C
31+
//check if buzzer will acknowledge over I2C
3232
if (buzzer.begin() == false) {
3333
Serial.println("Device did not acknowledge! Freezing.");
3434
while (1);

0 commit comments

Comments
 (0)