Loading...
  Show Posts
Pages: 1 2 3 [4] 5 6 ... 12
46  Using Arduino / Programming Questions / Re: Tips and Tricks to Optimize Your C Code on: March 17, 2013, 10:59:39 pm
Good to know.
Thanks for sharing.
47  International / Español / Re: programa de conexion de xbee serie 1 con arduino uno on: March 17, 2013, 10:52:03 pm
Here is his post translated to English:
Hi:
" I'm beginning with Arduino and I don't know how to program the connection to an XBEE 1. If anyone knows how its done please let me know. I need both the sending and receiving code.
My project is a DS18B20 connected to an arduino and an XBEE. I need to know how to programn that."


Hola:

Es muy probable que muy pocos en este forum respondan a tu pregunta en espanol. Yo no he trabajado con el XBEE; pero te recomiendo que hagas una busqueda en Google y aqui en este forum y quizas encuentres algo. Tambien es muy probable que lo que encuentres este en ingles.

Si sabes algo de Ingles, aunque sea poco trata de hacer tu post en Ingles y enseguida te responden. si quieres yo te puedo ayudar un poco con la traduccion aunque mi tiempo es muy limitado.

Buena suerte.
48  Using Arduino / General Electronics / Re: Stepper using uln2004, external power on: March 04, 2013, 07:53:24 am
Glad you solved.
Good Luck.
49  Using Arduino / General Electronics / Re: Stepper using uln2004, external power on: March 03, 2013, 09:59:28 pm
I don't knoiw much about bread boards as I never use them, I prefer to solder to avoid faulty contacts, etc. Anyways, is there continuity between the rails where you have your battery connected and the rail where you connect the power fromn arduino?. In the pic it looks you have plugged the battery into different rails. Try plugging the battery to the same railing section where all the other wires are.
50  Using Arduino / Interfacing w/ Software on the Computer / Re: Sending data from processing to arduino on: February 25, 2013, 11:20:03 pm
On Processing:

//Define your variables here
import processing.serial.*;                 //imports serial library
int Com=0;                                         //Sets which Port from the list will be used.

void setup()
{
size(Width,Height);
frameRate(30);
blah; //whatever else you may need here.
blah;//whatever else you may need here
CPort = new Serial(this, Serial.list()[Com], 115200);              //Define CPort and baud rate here.
SendOrderToArduino();
}

void draw()
{
blah; //Your things here.
blah;
blah;
}


void SendOrderToArduino()
{
if(you want motor to move left==true)
{
Order=5;
}
if(you want motor to move right==true)
{
Order=10;
}
CPort.write(order);
}


On Arduino:
void setup()
{
blah;
blah;
Serial.begin(115200); //begins serial Communication with computer at 115200 bps.
}

void loop()
{
CheckOrder();
}

void CheckOrder()
{
if(Serial.available()>0)
{
Order=Serial.read();
if(Order==5)
{
MoveMotorLeft();
}
if(Order==10)
{
MoveMotorRight();
}
Order=0;
}


51  Topics / Science and Measurement / Data Logger & Recorder (Arduino UNO + Processing 1.5.1) on: February 24, 2013, 11:38:29 pm
Hi:

This is a Data Logger and Recorder built for trainning purposes using previous experiences with Arduino and Processing.  Still has some minor problems; but I'll leave it like that for now as my time is very limited and I'm kind of tired by now.

Input signal is connected directly (no amplification) to any of the Arduino analog inputs. User can select input channel from the computer screen.

here are the details: http://www.adrianelectronics.com/index.php?p=1_43_Data-Logger-Recorder

here is the video: https://www.youtube.com/watch?v=oTthPJNIToE

Thanks.
52  Using Arduino / Audio / Re: Audio Animation (Arduino + Processing) (Completed) on: February 11, 2013, 01:41:41 am
Here is a picture of the box containing thge Arduino Board.

53  Using Arduino / Audio / Audio Animation (Arduino + Processing) (Completed) on: February 11, 2013, 12:53:30 am
Hi:

While working in my main Project I found some kool figures could be generated by using the Ellipse Equation with Processing. I posted in the forum tying to get some one motivatted to animate the figures as my time is really limited. Since no one did it I resolved to do it myself.

Using:
-Arduino UNO to sample the analog audio signal and send it to the computer via USB.
-Processing 1.5.1.

Features:
- Real time signal processing and dispaly. Figures on the computer screen are animated in real time using the audio signal.
- User can select any of the Arduino analog inputs from the computer software.
- Arduino is powered by USB only.
- 23 different figures can be animated (so far). User can select random sequence in which the figures are displayed, a preselected sequence or manual  selection.
- User can select show time (from 0-10 sec) for each figure when in automatic sequence either preselected or random.
- User can select the "speed" at which the figures "dance" (frecuency response of the System).
- Processing code about 900 lines.
- Arduino code about 2KB.
- Communication is bidirectional using numbers only (no strings). Arduino receives orders and sends data. Communication must be fast for real time data acquisition.

Here is some of the math and code:

http://www.adrianelectronics.com/index.php?p=1_38_Software

Here is the video:

http://www.youtube.com/watch?v=aV1O9bP00kE&feature=youtu.be




54  Community / Gigs and Collaborations / Re: Will pay for PCB building on: February 10, 2013, 09:10:13 pm
Well thanks guys. This is to help a friend and he was going to pay for the boards. I think he is backing off now. Let's see if he says Ok I'll be contacting you. For now I don't think he will.
Thanks.
55  Using Arduino / Project Guidance / Re: Robot Chassis on: February 05, 2013, 07:28:43 pm
If the thing is battery powered and you use alluminum you just need to connect your ground to the chassis, like they do in cars. The 2x2 ft dimensions will be Ok with the bords I mentioned and the 10 pounds weight. They can hold more than that if you place them vertically. Like this []
56  Using Arduino / Project Guidance / Re: Robot Chassis on: February 05, 2013, 06:52:12 pm
To hold 10 pounds you don't need a 2x4 Chassis. It will add unnecessary weight to the thing an deplete your batteries faster when moving.
Alluminum will be ideal; but probably too expensive. Simple 1/2"x 2''  or 3/4"x2" boards will probably work fine for the frame at a fraction of the weight and cost. You can just reinforce the corner joints with triangular pieces of plywood.
57  Community / Gigs and Collaborations / Will pay for PCB building on: February 05, 2013, 04:11:09 pm
Hi:

I need a couple of PCBs to interface with Arduino. I don't have the time to learn Eagle and all that so I'll be willing to pay for them to be built for me. I have the schematics and components distribution. I need this done relatively fast
They are not too complicated.
Can anybody here create the Eagle files and the PCB layout and tell me where to send it for construction?
Or does anybody know of a place where they will do it?

Thanks,
Adrian
58  Community / Gigs and Collaborations / Re: Project Completion Help on: February 05, 2013, 02:10:07 pm
Thanks I will
59  Using Arduino / Project Guidance / Re: Soft Starter code using PWM to control DC Motor on: February 05, 2013, 11:59:35 am
If you are trying to control DC already, the SCR is not a good choice. A transistor is what you need.

60  Community / Gigs and Collaborations / Project Completion Help on: February 05, 2013, 07:13:25 am
Hi All:

I have built and tested my Project and is a reality now. It has taken a good 1 year and 3 months of intensive work to complete it. The whole thing is working nicely; but its just a prototype.
Basically is an Arduino connected to a Computer to perform several tasks, move a motor to several positions and sequences, activate several solenoids, activate lights, take pictures, sensing parameters, analyzing the measurements and  give results. Many interlocks, warning messages, on screen keyboard, digital filters, real time graphs, video, logging data an many real time calculations involving many variables and arrays to make the whole thing work. The main program is written in processing and has about 18000 lines of code. The Arduino code is about 10KB. I built everything from scratch including the selection and input boxes to input data and auto search functions. The main computer controls everything  and Arduino controls the outside "world" under main computer commands and sends data back to the computer.
That been said:
I can't complete the Project and make it a reality. Now I need to build the thing for real; but that will require funds I don't have. I can't afford this anymore.The prototype I built already cost me about $2500 plus the amount  of time I put into it.
For example:
-I need to have a PCB built. maybe $300
-I'm using a Sensor that cost me $130; but does not have the accuracy required. The one required costs $750.
-I need the real motor required that's another $60.
-A serious temp/humidity Sensor which is another $150
-Real good solenoids. One of them is like $160
-And the list continues.
I estimate in parts  it will cost about $5K .
Plus several other things like testing, etc.

These are my questions now.
-How can I get sponsorship to finish this thing?. 
-Where do I go?.
-How do I find help to do it?

I concentrated until now in building the thing. Now I have it done which is completetly different from saying "I have this idea" It will be harder to get help with just an idea.

Please let me know any suggestions,
Thanks.

Pages: 1 2 3 [4] 5 6 ... 12