Skip to content

Commit

Permalink
Merge pull request #8 from njh/master
Browse files Browse the repository at this point in the history
Updated repository URL in docs
  • Loading branch information
connornishijima committed Jul 18, 2017
2 parents b863226 + f0b1c54 commit d36db1b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -56,7 +56,7 @@ Here is what you need to get started with the bare minimum:
#include "Volume.h" // Include the Volume library #include "Volume.h" // Include the Volume library


Volume vol; // Plug your speaker into the default pin for your board type: Volume vol; // Plug your speaker into the default pin for your board type:
// https://github.com/connornishijima/arduino-volume#supported-pins // https://github.com/connornishijima/arduino-volume1#supported-pins


void setup() { void setup() {
vol.begin(); vol.begin();
Expand Down
2 changes: 1 addition & 1 deletion examples/volume_1KHz/volume_1KHz.ino
Expand Up @@ -4,7 +4,7 @@
#include "Volume.h" // Include the Volume library #include "Volume.h" // Include the Volume library


Volume vol; // Plug your speaker into the default pin for your board type: Volume vol; // Plug your speaker into the default pin for your board type:
// https://github.com/connornishijima/arduino-volume#supported-pins // https://github.com/connornishijima/arduino-volume1#supported-pins


// the setup routine runs once when you press reset: // the setup routine runs once when you press reset:
void setup() { void setup() {
Expand Down
Expand Up @@ -9,7 +9,7 @@
at random intervals and go into deep sleep when not in use. Loudness at random intervals and go into deep sleep when not in use. Loudness
attenuation is done using my Volume library: attenuation is done using my Volume library:
https://github.com/connornishijima/arduino-volume https://github.com/connornishijima/arduino-volume1
I developed this library specifically for this project, so that I I developed this library specifically for this project, so that I
could hide a "cricket" in my pal's vent with magnets. By driving the could hide a "cricket" in my pal's vent with magnets. By driving the
Expand Down Expand Up @@ -50,7 +50,7 @@
#include <JeeLib.h> // Used for deep sleep #include <JeeLib.h> // Used for deep sleep


Volume vol; // Plug your speaker into the default pin for your board type: Volume vol; // Plug your speaker into the default pin for your board type:
// https://github.com/connornishijima/arduino-volume#supported-pins // https://github.com/connornishijima/arduino-volume1#supported-pins


ISR(WDT_vect) { // Jeelib Sleepy uses this to wake back up ISR(WDT_vect) { // Jeelib Sleepy uses this to wake back up
Sleepy::watchdogEvent(); Sleepy::watchdogEvent();
Expand Down
2 changes: 1 addition & 1 deletion examples/volume_test_sounds/volume_test_sounds.ino
Expand Up @@ -4,7 +4,7 @@
#include "Volume.h" // Include the Volume library #include "Volume.h" // Include the Volume library


Volume vol; // Plug your speaker into the default pin for your board type: Volume vol; // Plug your speaker into the default pin for your board type:
// https://github.com/connornishijima/arduino-volume#supported-pins // https://github.com/connornishijima/arduino-volume1#supported-pins


void setup() void setup()
{ {
Expand Down
2 changes: 1 addition & 1 deletion examples/volume_warble/volume_warble.ino
Expand Up @@ -4,7 +4,7 @@
#include "Volume.h" // Include the Volume library #include "Volume.h" // Include the Volume library


Volume vol; // Plug your speaker into the default pin for your board type: Volume vol; // Plug your speaker into the default pin for your board type:
// https://github.com/connornishijima/arduino-volume#supported-pins // https://github.com/connornishijima/arduino-volume1#supported-pins


// Warble variables! // Warble variables!
int f = 0; int f = 0;
Expand Down
2 changes: 1 addition & 1 deletion library.json
Expand Up @@ -10,7 +10,7 @@
"repository": "repository":
{ {
"type": "git", "type": "git",
"url": "https://github.com/connornishijima/arduino-volume.git" "url": "https://github.com/connornishijima/arduino-volume1.git"
}, },
"version": "1.1.2", "version": "1.1.2",
"examples": "examples/*.ino", "examples": "examples/*.ino",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Expand Up @@ -5,5 +5,5 @@ maintainer=Connor Nishijima <connornishijima@gmail.com>
sentence=Gives tone functionality with 8 bit volume control with no extra parts sentence=Gives tone functionality with 8 bit volume control with no extra parts
paragraph=Using ultrasonic PWM frequencies, you can now generate square wave tones at any frequency and 256 volume levels with no extra parts! paragraph=Using ultrasonic PWM frequencies, you can now generate square wave tones at any frequency and 256 volume levels with no extra parts!
category=Signal Input/Output category=Signal Input/Output
url=https://github.com/connornishijima/arduino-volume url=https://github.com/connornishijima/arduino-volume1
architectures=avr architectures=avr

0 comments on commit d36db1b

Please sign in to comment.