Loading...
  Show Posts
Pages: 1 ... 88 89 [90] 91 92
1336  Forum 2005-2010 (read only) / Español / Re: ayuda con modulo gprs on: June 21, 2010, 05:28:51 pm
diablet69, es el mismo código que pusiste tu mismo en otro post y a este le falta declarar las variables.
Y para capturar el puerto serie, pues leerlo y guardar los datos en un vector

Y por si a superturbo2001, le da por pasarse 2 meses después: no te consigues comunicar porque estás conectandote al arduino, no a la placa gprs.

Un saludo
1337  Forum 2005-2010 (read only) / Español / Re: Función PulseIn on: June 17, 2010, 10:57:26 am
Yo hice un trabajo para la uni que usaba esa función y aunque el arduino lo probé únicamente mediante simulación, la función si que me devolvía lo que tenía que dar.

Al pin 7 le meto una señal cuadrada cuya frecuencia depende de la temperatura tomada por una NTC y mediante unos cálculos con el valor del tiempo que está la señal en ON, saco la temperatura por el puerto serie.



El código lo tienes aquí: http://pastebin.com/MhnDi9Us

Asegúrate que usas 'unsigned int' para guardar el tiempo.

Un saludo
1338  Forum 2005-2010 (read only) / Español / Re: Twitter on: June 20, 2010, 06:38:24 pm
Yo tengo el blog preparado, pero está durmiendo hasta que acabe el proyecto que tengo entre manos, que se está alargando más de lo previsto, entonces me pondré a ello.

P.D: ya te he agregado al twitter
1339  Forum 2005-2010 (read only) / Español / Twitter on: June 20, 2010, 12:02:56 pm
Me gustaría saber si usais dicho servicio, sería interesante para poder informarnos rápidamente y de forma cómoda las actualizaciones de nuestros proyectos y no tener que ir mirando cada x tiempo si ha cambiado algo o preguntar alguna cosa chorra
Yo lo tengo muerto de asco, solo lo uso para leer las actualizaciones de tiendas, alguna empresa y poco más, ya que como no conozco a nadie del entorno del arduino en twitter poco puedo twittear.

Espero vuestras respuestas hamijos
1340  Forum 2005-2010 (read only) / Español / Re: Como hacer mesa con leds e infrarrojos on: June 17, 2010, 06:32:01 pm
¿Que es lo que no sabes hacer?
Ya que ponerme a explicar todo me parece muy largo

Basicamente el funcionamiento se basa en infrarrojos.
Emites una luz infrarroja y luego miras cuanta rebota con detectores, y los lees con analogRead() para encender,apagar,etc.

Un saludo
1341  Forum 2005-2010 (read only) / Español / Re: Unir caracteres en una variable on: June 17, 2010, 10:35:10 am
Como ha dicho Profenas, con poner un a[4]='\0' ya tienes un string
a[0]='h'
a[1]='o'
a[2]='l'
a[3]='a'
a[4]='\0'

Nos quedaría:
a="hola"

Pero si quieres copiarlo de un char a otro char, pos es una simple copia de vectores con un bucle:

p[0]=a[0]
p[1]=a[1]
.
.
.

Mírate algún libro de C, donde expliquen vectores, ya que son un poco lio de entender al principio.

Un saludo
1342  Forum 2005-2010 (read only) / Español / Re: ARDUINO-CHILE on: June 18, 2010, 04:04:36 pm
Hombre, siempre te quedará la posibilidad de hacertela tu mismo, con conseguir un atmega168 o 368 y un programador de dichos microcontroladores, ya tienes casi todo hechp.

Un saludo
1343  Forum 2005-2010 (read only) / Español / Re: Hola ayuda con Arduino Diecimila y Visual Basic on: June 15, 2010, 07:38:45 am
Echale un vistazo a los pdf de esta página:
electronica-pic.blogspot.com/2009/03/manual-interfaz-vc-y-visual-basic.html

Tiene exactamente lo que pides, el código para visual basic que crea una comunicación serie

Un saludo
1344  Forum 2005-2010 (read only) / Exhibition / Re: Arduino VU meter and spectrum analyser on: January 15, 2011, 01:30:14 pm
Argh! You are right, had a brain fart ;D
1345  Forum 2005-2010 (read only) / Exhibition / Re: Arduino VU meter and spectrum analyser on: January 15, 2011, 12:03:15 pm
@Senso, good work man! Keep us informed. Would be nice to see what do you have for the audio input stage.

@linux-works: if he is doing FFT I doubt he would be using external ICs. But which are the helper chips you are talking about? I know the MSEG7 but it has a digital serial output, not analog.
1346  Forum 2005-2010 (read only) / Exhibition / Re: Netbook With Arduino Pro Inside! on: January 09, 2011, 12:16:13 pm
Proteus has an AVR Simulator: http://www.labcenter.com/products/avr.cfm
1347  Forum 2005-2010 (read only) / Exhibition / Re: Netbook With Arduino Pro Inside! on: January 09, 2011, 04:27:37 am
If you need no extra hardware to test code, you could have always used a simulator
1348  Forum 2005-2010 (read only) / Exhibition / Re: Bus Ninja, an Arduino Bus Pirate a-like on: October 24, 2010, 05:44:12 pm
Just checked the bug of the Arduino IDE serial monitor.
ArduBus expects a carriage return at the end of the line, so you have to change the serial monitor option from 'No line ending' to 'Carriage return'
1349  Forum 2005-2010 (read only) / Exhibition / Re: Bus Ninja, an Arduino Bus Pirate a-like on: October 16, 2010, 04:04:16 pm
Yep, I have that on the ToDo list in Google Code

And thanks for the tips, I buy lots of stuff at DX, but I didn't know if solderpaste had a decent quality (I have been tempted several times to buy that same solder paste), but now that you say it works, I will buy some.

Greets
1350  Forum 2005-2010 (read only) / Exhibition / Re: Bus Ninja, an Arduino Bus Pirate a-like on: October 16, 2010, 05:53:33 am
Thanks for the info wortelsoft!! You are the first person that gives me feedback since I released it.
Thats what ardubus is for, it eliminates coding errors when you are not familiar with the I2C bus or the chip.

Ironically, I first developed it using the IDE terminal and then modified it so it worked with true terminals like putty, but something might have been broken in the process. The IDE terminal isn't a true one, so it is a bit special.

Yesterday I have been tinkering with lighting LEDs methods and the MAX7315 seems to be an interesting chip, but being smd I dont think I could solder it. Did you soldered it by hand?

Thanks for the feedback
Pages: 1 ... 88 89 [90] 91 92