Show Posts
|
|
Pages: [1] 2 3 ... 5
|
|
5
|
Using Arduino / Interfacing w/ Software on the Computer / Arduino stoped sending data to processing
|
on: May 18, 2011, 09:05:08 pm
|
|
Hello, i am having the problem with arduino and processing.
I have a arduino mega with Sharp IR sensor sensing data to Processing connected to a Processing program running on a MacMini. The serial speed is 115200, but the problem is that when I touch the board, I think the USB cable isn't tight enough and it looses connection, so that the Arduino stops sending data to the computer.
So the only way to fix it would be re-opening the processing app.
Any way to fix this, maybe somehow to reset connection on the go of something. Thanks
|
|
|
|
|
7
|
International / Portugues / Fórum Eletrônica Livre - Participe
|
on: February 15, 2011, 03:48:52 pm
|
Olá pessoal, aqui vai uma boa noticia, acabo de criar o fórum Eletrônica Livre, com a idéia de expandir a difusão da informações sobre eletrônica e software. http://www.eletronicalivre.com.brCada vez mais a comunidade "maker" esta crescendo no Brasil, as pessoas estão se interessando sobre eletrônica, o ensino dela esta cada vez mais presenta nas escolas. Porém não existe nenhum lugar que tente juntar todo o pessoal, todos que possuem blogs, que postem seus projetos, e ideias no forum também. Vamos ajudar a divulgar o forum e fazer de lá, uma nova comunidade. Conto com a colaboração de vocês! Um abraço daniel
|
|
|
|
|
9
|
Forum 2005-2010 (read only) / Troubleshooting / Re: Arduino and PWM
|
on: May 23, 2010, 12:03:54 pm
|
I used a part of the code found on arduino.cc website. To make the LED fade, I used the function delayMicroseconds worked well for(i=1;i<=1000;i++){ digitalWrite(j, HIGH); delayMicroseconds(i); digitalWrite(j, LOW); delayMicroseconds(1000 - i); }
|
|
|
|
|
13
|
Forum 2005-2010 (read only) / Interfacing / Re: Arduino + PHP
|
on: March 18, 2008, 04:14:00 pm
|
|
Yeah, I know C can be quite complicate to communicate with serial. Do you know where I can get some information on how to communicate arduino with VB or Delphi? Or maybe even with processing (can I build some executable program for example *.exe on windows, that would communicate with arduino)?
Thanks mate
|
|
|
|
|
14
|
Forum 2005-2010 (read only) / Interfacing / Re: Arduino + PHP
|
on: March 17, 2008, 07:49:45 pm
|
Well, sorry, I will try to be more clear this time. I'm trying to learn how to use arduino to communicate with software. I know some C and PHP. I would like to be able to build a email checker, that would, for example, use PHP to get the information from the EMAIL, and if there is a new email, get a program in C that would send some serial information to arduino to turn a led on. I found something like that on the web, but using python, and I couldn't get how it works. If anyone could give me some advices, it would be nice.  Another thing would be to send some information from arduino to a program in C, for example, the number of an variable of somethings. Thanks 
|
|
|
|
|