Show Posts
|
|
Pages: 1 [2] 3 4 ... 18
|
|
17
|
Using Arduino / Project Guidance / How to draw Arduino jumpering schematic?
|
on: January 27, 2013, 02:36:53 pm
|
|
I am doing a project with Arduino and other shield, resistors, power supply etc. And I am asked to draw first the schematic how they wire each other each pin. Anyone knows how to draw it? for example draw wiring from pin 13 to pin data on relay, etc..
Thank you help me.
|
|
|
|
|
22
|
Using Arduino / Programming Questions / Re: Serial Available confuse..
|
on: January 23, 2013, 02:56:49 am
|
I have read that link but it is not complete to explain every possibility between 0,18,< or > or == ... I have read a book that code like this: if (Serial.available() > 18) { char led = Serial.read(); if (led == 'S'){ temp1 = Serial.read(); temp2 = Serial.read(); temp3 = Serial.read(); temp4 = Serial.read(); temp5 = Serial.read(); temp6 = Serial.read(); temp7 = Serial.read(); temp8 = Serial.read(); temp9 = Serial.read(); } } what its purpose to put 18 there?
|
|
|
|
|
27
|
Using Arduino / Project Guidance / My UNO broken? Can not on and off LED
|
on: January 20, 2013, 05:03:41 pm
|
I suspect my Arduino UNO broken, but I do not it is true broken or any else. My pin 13 (which contain build in led) always ON And after I upload this code: void setup() { Serial.begin(9600); digitalWrite (13,LOW); }
void loop() { while (Serial.available()==0);
int val = Serial.read () - '0';
if (val ==1) { Serial.println("Led is On"); digitalWrite(13,HIGH); } else if (val == 0) { Serial.println("Led is off"); digitalWrite(13,LOW); } else { Serial.println("Invalid"); } } then I open serial monitor, i input 0, then it displays "Led is off", but the led is not turned off WHAT HAPPEN TO MY ARDUINO?? ANY HELP PLEASE...
|
|
|
|
|
28
|
Using Arduino / Project Guidance / Re: Simple Image Processing
|
on: January 20, 2013, 05:08:30 am
|
Okay, nevermind. In India the Kinect for PC is costing around $400.
Wow, that is expensive. I bought it in Indonesia, only cost around US$250.. Hmm it might be a little bit impossible to get the image data from kinect wirelessly since, it require very high data speed, remember if you wanna operate Kinect for Windows in PC, you need to install a lot of things, Simple OpenNI, OpenNI, KinectSDK, etc. It is my opinion, correct me if I am mistaken.
|
|
|
|
|