Loading...
  Show Posts
Pages: [1] 2 3 ... 77
1  Using Arduino / Project Guidance / Re: sampling audio, web streaming and receiving (guidance help request) on: May 13, 2013, 05:12:17 pm
But it is possible with Arduino provided each individual sample is very short much less than 1 second.
What is the advantage of using Arduino?
2  Using Arduino / Motors, Mechanics, and Power / Re: Stepper Motor Basics on: May 12, 2013, 08:36:43 pm
First learn to use 1 pair of 4 non-blocking functions I included.  Can you find them?  Slow or fast pair?

Once you get that working, duplicate the pair, changing the global variable names and pin constants.

Let me know if you need more help...
3  Using Arduino / Motors, Mechanics, and Power / Re: Flywheel as quadcopter power source on: May 08, 2013, 12:20:02 pm
Of course you're all correct.  At 10C you would have a very short cycle life.
4  Using Arduino / Motors, Mechanics, and Power / Re: Flywheel as quadcopter power source on: May 05, 2013, 08:06:33 am
It would be impossible to maneuver QUICKLY.  Maybe it would be more stable in theory?
5  Using Arduino / Motors, Mechanics, and Power / Re: Stepper Motor Basics on: May 05, 2013, 08:05:02 am
Here's the code:
https://gist.github.com/sbright33/4178431

No thoughts today sorry!
6  Using Arduino / Audio / Re: Speech Recognition with BitVoicer and Arduino on: May 03, 2013, 03:28:00 pm
Here's an Alternative that is free:
http://arduino.cc/forum/index.php/topic,161960.msg1217180.html#msg1217180
7  Using Arduino / Project Guidance / Re: Speech recognition on: May 03, 2013, 03:06:11 pm
Love the Imp!  I'm on my 10th project in under a month...

http://electricimp.com/product/
8  Using Arduino / Motors, Mechanics, and Power / Re: Stepper Motor Basics on: May 02, 2013, 02:48:00 pm
The only difference is the coil resistance.  You can hook a 5v motor to a 12v supply only if you use code similar to mine!  If you don't change the code it will overheat in a few minutes.  More speed and more torque.
9  Using Arduino / Motors, Mechanics, and Power / Re: Motor Choice Question on: May 01, 2013, 10:53:33 am
http://arduino.cc/forum/index.php/topic,89159.0.html
In degrees.
10  Using Arduino / Motors, Mechanics, and Power / Re: Stepper Motor Basics on: May 01, 2013, 10:51:13 am
Mine goes 30RPM using 12v
http://arduino.cc/forum/index.php/topic,89159.0.html
http://arduino.cc/forum/index.php/topic,85335.0.html

Some motors have 4096 steps.  That makes the code much easier because it is an integer.
11  Using Arduino / Motors, Mechanics, and Power / Re: New 28BYJ-48 library on: May 01, 2013, 10:37:44 am
Not sure I included the code in the post to run 2 motors at once.  How did you modify it Chris?
12  Using Arduino / Motors, Mechanics, and Power / Re: 28BYJ-48 5-Volt Stepper on: May 01, 2013, 10:35:04 am
I don't think my code is compatible with A4983.  Try it with ULN2003.

Just download my code from Gist.  Try one function call at a time in Loop() until you get the hang of it.
13  Using Arduino / Project Guidance / Re: Speech recognition on: April 26, 2013, 07:49:55 am
Sorry I didn't realize it wasn't a public forum.  Here's the code to show how easy it is on Electric Imp:

Agent:
function sendTwilio(){
local response =
http.post("https://api.twilio.com/2010-04-01/Accounts/ACae249c17f97/Calls.json",
{"Authorization":"Basic QUNhZTI0OWM4OWYwZjA4NDg2OTBjOTRhN"},
"From=%2B18055551212&To=%2B18055551313&ApplicationSid=AP5714e4d49").sendsync();
if(response.statuscode==201) server.log("Calling soon");
else {
server.log(response.statuscode);
server.log(response.body);
} }
device.on("sendit",function(s) {
sendTwilio();
} );

function mywebserver(request,res){
t<-http.urldecode(request.body);
device.send("sendbody",t.TranscriptionText); //speak.xml
res.send(200,"okay");
}
http.onrequest(mywebserver);
server.log("Start Agent");

Device:
imp.configure("Call1", [], []);
agent.on("sendbody",function(value){
server.log(value);
});
agent.send("sendit","notused");

//All you need to setup is line 3,4,5
//Account ID, authorization Base64, From, To, App ID
//The App can run any Twiml script you like:

<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Say voice="woman" language="fr">
Please leave a message BEFORE the tone.</Say>
<Record maxLength="20" action="x"
transcribeCallback="https://agent.electricimp.com/o0oLaaaa&quot; />
</Response>
14  Using Arduino / Motors, Mechanics, and Power / Re: New 28BYJ-48 library on: April 21, 2013, 04:55:55 pm
I already wrote 4 related functions that are non-blocking can you find them?
15  Using Arduino / Project Guidance / Re: Speech recognition on: April 21, 2013, 04:43:59 pm
I've done this with Electric Imp.  Only a few lines of code.

http://forums.electricimp.com/discussion/937/speak-to-your-imp-over-the-phone#Item_10
Pages: [1] 2 3 ... 77