Skip to content

Instantly share code, notes, and snippets.

@fabiant7t
Created June 5, 2014 20:21
Show Gist options
  • Save fabiant7t/0788354915c2ceeb25b4 to your computer and use it in GitHub Desktop.
Save fabiant7t/0788354915c2ceeb25b4 to your computer and use it in GitHub Desktop.
#include <OneSheeld.h>
void setup()
{
OneSheeld.begin();
}
void loop()
{
if(Mic.getValue() > 50)
{
Phone.call("+123456789");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment