Maker Pro
Maker Pro

Digital speedometer for cars using arduino

Harald Kapp

Moderator
Moderator
Nov 17, 2011
13,722
Joined
Nov 17, 2011
Messages
13,722
Bob:
1) please don't double post. I deleted the other thread.
2) the link is not working (I get "+ '/']); } return o.doit; }; "
3) a reed switch will not last very long. A hall sensor, since it has no mechanically actuated parts, will last much longer, Make your choice...
 

bobdxcool

Mar 9, 2012
98
Joined
Mar 9, 2012
Messages
98
Bob:
1) please don't double post. I deleted the other thread.
2) the link is not working (I get "+ '/']); } return o.doit; }; "
3) a reed switch will not last very long. A hall sensor, since it has no mechanically actuated parts, will last much longer, Make your choice...


Sir, but will hall effect switches produce pulses like reed switches ??

This is the code for reed switch based on pulses for arduino


//calculations
//tire radius ~ 13.5 inches
//circumference = pi*2*r =~85 inches
//max speed of 35mph =~ 616inches/second
//max rps =~7.25

#define reed A0//pin connected to read switch

//storage variables
float radius = 13.5;// tire radius (in inches)- CHANGE THIS FOR YOUR OWN BIKE

int reedVal;
long timer = 0;// time between one full rotation (in ms)
float mph = 0.00;
float circumference;
boolean backlight;

int maxReedCounter = 100;//min time (in ms) of one rotation (for debouncing)
int reedCounter;


void setup(){

reedCounter = maxReedCounter;
circumference = 2*3.14*radius;
pinMode(1,OUTPUT);//tx
pinMode(2,OUTPUT);//backlight switch
pinMode(reed, INPUT);

checkBacklight();

Serial.write(12);//clear

// TIMER SETUP- the timer interrupt allows preceise timed measurements of the reed switch
//for mor info about configuration of arduino timers see http://arduino.cc/playground/Code/Timer1
cli();//stop interrupts

//set timer1 interrupt at 1kHz
TCCR1A = 0;// set entire TCCR1A register to 0
TCCR1B = 0;// same for TCCR1B
TCNT1 = 0;
// set timer count for 1khz increments
OCR1A = 1999;// = (1/1000) / ((1/(16*10^6))*8) - 1
// turn on CTC mode
TCCR1B |= (1 << WGM12);
// Set CS11 bit for 8 prescaler
TCCR1B |= (1 << CS11);
// enable timer compare interrupt
TIMSK1 |= (1 << OCIE1A);

sei();//allow interrupts
//END TIMER SETUP

Serial.begin(9600);
}

void checkBacklight(){
backlight = digitalRead(2);
if (backlight){
Serial.write(17);//turn backlight on
}
else{
Serial.write(18);//turn backlight off
}
}

ISR(TIMER1_COMPA_vect) {//Interrupt at freq of 1kHz to measure reed switch
reedVal = digitalRead(reed);//get val of A0
if (reedVal){//if reed switch is closed
if (reedCounter == 0){//min time between pulses has passed
mph = (56.8*float(circumference))/float(timer);//calculate miles per hour
timer = 0;//reset timer
reedCounter = maxReedCounter;//reset reedCounter
}
else{
if (reedCounter > 0){//don't let reedCounter go negative
reedCounter -= 1;//decrement reedCounter
}
}
}
else{//if reed switch is open
if (reedCounter > 0){//don't let reedCounter go negative
reedCounter -= 1;//decrement reedCounter
}
}
if (timer > 2000){
mph = 0;//if no new pulses from reed switch- tire is still, set mph to 0
}
else{
timer += 1;//increment timer
}
}

void displayMPH(){
Serial.write(12);//clear
Serial.write("Speed =");
Serial.write(13);//start a new line
Serial.print(mph);
Serial.write(" MPH ");
//Serial.write("0.00 MPH ");
}

void loop(){
//print mph once a second
displayMPH();
delay(1000);
checkBacklight();
}
 
Last edited:

(*steve*)

¡sǝpodᴉʇuɐ ǝɥʇ ɹɐǝɥd
Moderator
Jan 21, 2010
25,510
Joined
Jan 21, 2010
Messages
25,510
Yes, many hall sensors will produce a digital signal. You need to look at the specifications for them (which will include example circuits) to determine which one to use and how to connect it.

You should start your search by looking for hall effect sensors with digital outputs (those with analogue outputs are unlikely to be useful for you)
 

bobdxcool

Mar 9, 2012
98
Joined
Mar 9, 2012
Messages
98
Yes, many hall sensors will produce a digital signal. You need to look at the specifications for them (which will include example circuits) to determine which one to use and how to connect it.

You should start your search by looking for hall effect sensors with digital outputs (those with analogue outputs are unlikely to be useful for you)

I think this one --ss 441 will do

http://pdf1.alldatasheet.com/datasheet-pdf/view/473140/SECELECTRONICS/SS441.html

Am I right sir?
 

Harald Kapp

Moderator
Moderator
Nov 17, 2011
13,722
Joined
Nov 17, 2011
Messages
13,722
Yes, that one loooks loike it can be used for your purpose.
 

bobdxcool

Mar 9, 2012
98
Joined
Mar 9, 2012
Messages
98
Yes, that one loooks loike it can be used for your purpose.

Can you please suggest a gsm module and gps module for an arduino board??
Cheap and best.

Is a MAX232 chip required ? if yes, how to connect??

I will basically be using to get data from gps to arduino and send that data over a gsm module to a mobile phone for further processing.
 
Top