0
Offline
Full Member
Karma: 0
Posts: 236
Arduino rocks
|
 |
« on: January 18, 2013, 12:00:41 pm » |
hi there just looking into using a hall sensor on my arduino and came across this code below, i dont know if im being blind but where does it state which input pin its using?
const int ledPin = 13; volatile int rpmcount; int sensorState = 0; unsigned int rpm; unsigned long timeold;
void rpm_fun() { rpmcount++; digitalWrite(ledPin, HIGH); delay(50); digitalWrite(ledPin, LOW); } void setup() { pinMode(ledPin, OUTPUT); Serial.begin(9600); attachInterrupt(0, rpm_fun, FALLING); }
void loop(){ if(rpmcount>=5) { rpm=(60000*rpmcount)/(8*(millis()-timeold)); //the 8 changes to 4 if 4 magnets are used. timeold = millis(); //Serial.println(rpmcount,DEC); rpmcount = 0; Serial.println(rpm,DEC); } }
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
UK
Offline
Brattain Member
Karma: 138
Posts: 19067
I don't think you connected the grounds, Dave.
|
 |
« Reply #1 on: January 18, 2013, 12:03:10 pm » |
attachInterrupt(0, rpm_fun, FALLING); Right there, pin 2.
|
|
|
|
|
Logged
|
Pete, it's a fool looks for logic in the chambers of the human heart.
|
|
|
|
Austin, TX
Offline
Faraday Member
Karma: 41
Posts: 5170
CMiYC
|
 |
« Reply #2 on: January 18, 2013, 12:07:13 pm » |
|
|
|
|
|
Logged
|
|
|
|
|
Pittsburgh, PA, USA
Offline
Faraday Member
Karma: 31
Posts: 2931
I only know some basic electricity....
|
 |
« Reply #3 on: January 18, 2013, 12:30:32 pm » |
There's a delay(50) in the ISR. Not a good idea.
|
|
|
|
|
Logged
|
Examples can be found at Learning in the Main Site and at the Playground
|
|
|
|
0
Offline
Full Member
Karma: 0
Posts: 236
Arduino rocks
|
 |
« Reply #4 on: January 18, 2013, 01:04:48 pm » |
o ok i see thanks for that link one problem i can see is i am using an arduino uno and i will eventually need 3 hall inputs so how will i overcome that? There's a delay(50) in the ISR. Not a good idea.
yes there is where it is blinking the led i dont actually need that led how can i get rid of that function as ive noticed if i remove void rpm_fun() i get a error
|
|
|
|
|
Logged
|
|
|
|
|
UK
Offline
Tesla Member
Karma: 89
Posts: 6386
-
|
 |
« Reply #5 on: January 18, 2013, 01:31:07 pm » |
yes there is where it is blinking the led i dont actually need that led how can i get rid of that function as ive noticed if i remove void rpm_fun() i get a error
You could remove the blinking by taking out the two lines of code that write HIGH and LOW to the ledPin, and the delay between them.
|
|
|
|
|
Logged
|
|
|
|
|
0
Offline
Full Member
Karma: 0
Posts: 236
Arduino rocks
|
 |
« Reply #6 on: January 18, 2013, 01:34:55 pm » |
ok so basically leave it there but take the internals out of it. would this work or am i barking up the wrong tree?
volatile int rpmcount; int sensorState = 0; unsigned int rpm; unsigned long timeold; int rpm1 =1;
void setup() { Serial.begin(9600); pinMode(INPUT, rpm1); } void loop(){ if(rpm1>=5) { rpm=(60000*rpmcount)/(8*(millis()-timeold)); //the 8 changes to 4 if 4 magnets are used. timeold = millis(); //Serial.println(rpmcount,DEC); rpmcount = 0; Serial.println(rpm,DEC); } }
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
Boston area, metrowest
Offline
Brattain Member
Karma: 249
Posts: 16540
Available for Design & Build services
|
 |
« Reply #7 on: January 18, 2013, 01:36:38 pm » |
"i will eventually need 3 hall inputs so how will i overcome that?" You can have an interrupt on any pin, they are called PCINT. See NickGammon's writeup on them here http://www.gammon.com.au/forum/?id=11488
|
|
|
|
|
Logged
|
|
|
|
|
Pittsburgh, PA, USA
Offline
Faraday Member
Karma: 31
Posts: 2931
I only know some basic electricity....
|
 |
« Reply #8 on: January 18, 2013, 01:59:31 pm » |
You can keep the blinking led. Move the blink part outside of the ISR. Set up a global byte variable and make it volatile to use as a blink flag, maybe call it bFlag. When the ISR runs, set that to 1 in the ISR. Then in loop() set up an if ( bFlag ) { } that makes the led blink and sets bFlag = 0. So your ISR increments rpm count and flags the blink, it runs in next to nothing flat and is ready to service the next interrupt that fast. IIRC you can set up any I/O pin to interrupt on Level Change. But look into things, maybe you don't need to use interrupts at all. Most things don't at 16 MHz. You'd do better to learn how to use timers to run multiple tasks without using blocking code. This is Nick Gammon's site, he's a master at explanations. http://www.gammon.com.au/forum/?id=11411
|
|
|
|
|
Logged
|
Examples can be found at Learning in the Main Site and at the Playground
|
|
|
|
UK
Offline
Tesla Member
Karma: 89
Posts: 6386
-
|
 |
« Reply #9 on: January 18, 2013, 03:20:32 pm » |
would this work or am i barking up the wrong tree?
Wrong tree entirely. You have completely removed the interrupt handler now. In your original sketch, this interrupt handler was called when you got a falling edge on pin 2: void rpm_fun() { rpmcount++; digitalWrite(ledPin, HIGH); delay(50); digitalWrite(ledPin, LOW); }
These are the lines of code that turn ledPin HIGH, wait 50 milliseconds and then turn it LOW again: digitalWrite(ledPin, HIGH); delay(50); digitalWrite(ledPin, LOW);
If you take those three lines out it will no longer flash the LED and will no longer have that unwise delay() in the interrupt handler.
|
|
|
|
|
Logged
|
|
|
|
|
0
Offline
Full Member
Karma: 0
Posts: 236
Arduino rocks
|
 |
« Reply #10 on: January 18, 2013, 04:17:00 pm » |
hi thanks for your replies on that link http://www.gammon.com.au/forum/?id=11488 there is a lot of stuff on that website to get your head wrapped around lol i have come up with this compiles fine but somethings telling me im missing something here?
volatile int rpmcount; int sensorState = 0; unsigned int rpm; unsigned long timeold;
ISR (PCINT2_vect) { // handle pin change interrupt for D0 to D7 here } // end of PCINT2_vect
void setup () { Serial.begin(9600); // pin change interrupt (example for D0) PCMSK2 |= _BV (PCINT16); // want pin 0 PCIFR |= _BV (PCIF2); // clear any outstanding interrupts PCICR |= _BV (PCIE2); // enable pin change interrupts for D0 to D7 }
void loop(){ if(rpmcount>=5) { rpm=(60000*rpmcount)/(8*(millis()-timeold)); //the 8 changes to 4 if 4 magnets are used. timeold = millis(); //Serial.println(rpmcount,DEC); rpmcount = 0; Serial.println(rpm,DEC); } }
p.s i dont wont the led output
|
|
|
|
|
Logged
|
|
|
|
|
East Anglia (UK)
Offline
Edison Member
Karma: 48
Posts: 1416
May all of your blinks be without delay
|
 |
« Reply #11 on: January 18, 2013, 04:35:46 pm » |
somethings telling me im missing something here?
How about something to update rpmcount ?
|
|
|
|
|
Logged
|
|
|
|
|
0
Offline
Full Member
Karma: 0
Posts: 236
Arduino rocks
|
 |
« Reply #12 on: January 18, 2013, 04:40:00 pm » |
volatile int rpmcount; int sensorState = 0; unsigned int rpm; unsigned long timeold;
ISR (PCINT2_vect) { rpmcount; // handle pin change interrupt for D0 to D7 here } // end of PCINT2_vect
void setup () { Serial.begin(9600); // pin change interrupt (example for D0) PCMSK2 |= _BV (PCINT16); // want pin 0 PCIFR |= _BV (PCIF2); // clear any outstanding interrupts PCICR |= _BV (PCIE2); // enable pin change interrupts for D0 to D7 }
void loop(){ if(rpmcount>=5) { rpm=(60000*rpmcount)/(8*(millis()-timeold)); //the 8 changes to 4 if 4 magnets are used. timeold = millis(); //Serial.println(rpmcount,DEC); rpmcount = 0; Serial.println(rpm,DEC); } }
better?
|
|
|
|
|
Logged
|
|
|
|
|
Manchester (England England)
Online
Brattain Member
Karma: 277
Posts: 25511
Solder is electric glue
|
 |
« Reply #13 on: January 18, 2013, 04:44:19 pm » |
better? No try:- rpmcount++;
|
|
|
|
|
Logged
|
|
|
|
|
UK
Offline
Tesla Member
Karma: 89
Posts: 6386
-
|
 |
« Reply #14 on: January 18, 2013, 05:47:37 pm » |
You started with a sketch that did more or less what you wanted, in a fairly simple way - no messing with hardware registers and so on.
Why have you thrown that away and started again with a more complex approach?
|
|
|
|
|
Logged
|
|
|
|
|
|