Show Posts
|
|
Pages: 1 2 3 [4] 5
|
|
50
|
Using Arduino / Displays / Scrolling with custom characters
|
on: January 14, 2013, 06:03:04 am
|
|
i need to sroll right or left with my custom characters.
i mean, is it possible to set cursor at a value more than 15(in a 16X2 lcd )?
suppose my lcd is filled with some text, when it scrolls left , i can see the custom characters appearing.
|
|
|
|
|
57
|
Using Arduino / Sensors / Proximity Sensors -all about them
|
on: January 12, 2013, 01:11:10 pm
|
|
i went to a shop to search for some sort of a distance mesuring sensor(for collision detection &prediction)
the guy showed me a long rod-like device(had metal covering) i noticed that it had 2 leds in the front[and , as far as i remember, it had 4 wires coming out of it ]
it was priced at about $20
so, i need to know, will that be of any use in making a collision detectin device(it should ping at say, a feet from the sensor )?
|
|
|
|
|
60
|
Using Arduino / Motors, Mechanics, and Power / Re: Tansistor help to power motors
|
on: January 10, 2013, 02:45:18 am
|
#define fadePin 9
void setup(){ pinMode(fadePin, OUTPUT); }
void loop(){
for(int i = 0; i<360; i++){ //convert 0-360 angle to radian (needed for sin function) float rad = DEG_TO_RAD * i;
//calculate sin of angle as number between 0 and 255 int sinOut = constrain((sin(rad) * 128) + 128, 0, 255);
analogWrite(fadePin,sinOut); if(sinOut==0) delay(200); delay(15); }
} im 100% sure that the code is not wrong(its too basic to go any wrong !)
|
|
|
|
|