Show Posts
|
|
Pages: [1]
|
|
4
|
Using Arduino / Sensors / rangefinder - measure distance with laser
|
on: June 16, 2012, 01:10:09 pm
|
|
Hi all,
I' like to measure distance but the ultrasonic transceiver is not long range. Someone know how can I make a long rangefinder? I think the only one way is that, if I made a rangefinder with laser on transmitter and receiver ultrasonic sensor.
|
|
|
|
|
6
|
Using Arduino / Displays / Re: nokia lcd 5110
|
on: November 26, 2011, 04:11:34 pm
|
how can I convert the character-string function into number dec? I know a function String(value, DEC); Moreover, I write you my code void loop() { LcdClear(); gotoXY(0, 2); distance = ultrasonic.Ranging(CM); LcdCharacter(ultrasonic.Ranging(CM)); // this functhion give me the character no decade numder !!!
LcdString("cm"); delay(3500); }
I would like this http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1272177425furthermore, I believe the solution is in this function, void LcdWrite(byte dc, byte data) { digitalWrite(PIN_DC, dc); digitalWrite(PIN_SCE, LOW); shiftOut(PIN_SDIN, PIN_SCLK, MSBFIRST, data); digitalWrite(PIN_SCE, HIGH); } [code]
how can I shiftout() DEC number and no byte data???
[/code]
|
|
|
|
|
7
|
Using Arduino / Displays / nokia lcd 5110
|
on: November 26, 2011, 03:20:52 pm
|
|
hello,
I've the nokia lcd 5110 module. So, I must print the decade numbers from convert Distance in cm from my HC-SR04 module. Have you idea how I can do that? Because, the PCD8544 library haves only functions which they print characters.
|
|
|
|
|
12
|
Using Arduino / Project Guidance / Re: spectrum analyzer and pc
|
on: October 16, 2011, 06:15:57 am
|
I can't run sketch in the processing.exe environment, which folder to put my sketch and libraries? Automatically, the processing.exe it have created a folder in my doccuments with name called processing. 
|
|
|
|
|