Components and supplies
Alphanumeric LCD, 16 x 2
Buzzer, Piezo
Resistor 1k ohm
RGB Diffused Common Cathode
Male/Female Jumper Wires
Resistor 10k ohm
Jumper wires (generic)
Arduino UNO
Ultrasonic Sensor - HC-SR04 (Generic)
Resistor 220 ohm
Button
Apps and platforms
Arduino IDE
Project description
Code
Arduino IDE code
arduino
the code for the pushup counter
1/* PUSH UP COUNTER 2BY: Kyle Glerum 3 4An ultrasonic sensor measures the distance between you and your head, if the distance is larger than 20 cm a rgb-led will shine red, 5if the distance is between 10 and 20 cm, it turns magenta 6and if it is less than 10 cm it turns blue, and a point appears on a lcd screen. 7Every ten pushups it makes a sound. 8You can reset the score with the push of a button. 9 */ 10 11#include <LiquidCrystal.h> // include LCD library 12 13#define BLUE 12 // define RGB-led pins 14#define RED 10 15 16const int trigPin = 8; //set pins for the ultrasonic sensor, button and buzzer 17const int echoPin = 9; 18const int buttonPin = A0; 19const int b = 13; 20 21long duration; // set integers 22int distance; 23int i; 24int buttonState = 0; 25int x = 1; 26int y = 1; 27 28LiquidCrystal lcd(6, 7, 2, 3, 4, 5); // set lcd pins 29 30void setup() { 31 Serial.begin(9600); // begin in 9600 baud 32 33 pinMode(trigPin, OUTPUT); //set pin modes 34 pinMode(echoPin, INPUT); 35 pinMode(buttonPin, INPUT); 36 pinMode(b, OUTPUT); 37 pinMode(RED, OUTPUT); 38 pinMode(BLUE, OUTPUT); 39 40 lcd.begin(16, 2); // begin lcd, define scale of lcd (16 places in a row, 2 rows) 41 lcd.print("Push Ups:"); 42 43 44 45} 46 47void loop() { 48 digitalWrite(trigPin, HIGH); // send out an ultra sonic sound for 10 microseconds and measure the time it took for the sound to go from the trigpin to the echo pin 49 delayMicroseconds(10); 50 digitalWrite(trigPin, LOW); 51 duration = pulseIn(echoPin, HIGH); 52 distance = duration * 0.034/2; //convert the time the signal took to travel to distance in cm 53 54 if (distance >= 20) {digitalWrite(RED, HIGH); //configure RGB-led to burn red, magenta or blue depending on distance 55 digitalWrite(BLUE, LOW);} 56 if (distance <= 20) {digitalWrite(BLUE, HIGH);} 57 if (distance <= 10) {digitalWrite(RED, LOW);} 58 59 if (i == (10 * y) && x == (1 * y)) { //this if statement plays a sound every ten pushups 60 tone(b, 146.8); 61 delay(50); 62 noTone(b); 63 delay(100); 64 tone(b, 146.8); 65 delay(50); 66 noTone(b); 67 delay(50); 68 tone(b, 293.7); 69 delay(100); 70 noTone(b); 71 x ++; 72 y ++; 73 } 74 else if (distance <= 10) {delay(350);} //this if else statement makes sure that the time between pushup-readings always stay the same 75 76 buttonState = digitalRead(buttonPin); //these lines of code resets every integer and the lcd to the original state by the press of a button 77 if (buttonState == HIGH) { 78 i = 0; 79 x = 1; 80 y = 1; 81 lcd.setCursor(0,1); 82 lcd.print("0 "); } 83 84 lcd.setCursor(0, 1); // set cursor on the second row 85 86 if (distance <= 10 ) {i ++;} //print a point if a pushup has been done 87 lcd.print(i,DEC); 88 89 while (distance <= 10) { //if the distance stays smaller then ten for a while, this piece of code makes sure that only one point is given for one pushup 90 digitalWrite(trigPin, HIGH); 91 delayMicroseconds(10); 92 digitalWrite(trigPin, LOW); 93 duration = pulseIn(echoPin, HIGH); 94 distance = duration * 0.034/2; 95 delay(100);} 96} 97
Arduino IDE code
arduino
the code for the pushup counter
1/* PUSH UP COUNTER 2BY: Kyle Glerum 3 4An ultrasonic sensor measures the distance between you and your head, if the distance is larger than 20 cm a rgb-led will shine red, 5if the distance is between 10 and 20 cm, it turns magenta 6and if it is less than 10 cm it turns blue, and a point appears on a lcd screen. 7Every ten pushups it makes a sound. 8You can reset the score with the push of a button. 9 */ 10 11#include <LiquidCrystal.h> // include LCD library 12 13#define BLUE 12 // define RGB-led pins 14#define RED 10 15 16const int trigPin = 8; //set pins for the ultrasonic sensor, button and buzzer 17const int echoPin = 9; 18const int buttonPin = A0; 19const int b = 13; 20 21long duration; // set integers 22int distance; 23int i; 24int buttonState = 0; 25int x = 1; 26int y = 1; 27 28LiquidCrystal lcd(6, 7, 2, 3, 4, 5); // set lcd pins 29 30void setup() { 31 Serial.begin(9600); // begin in 9600 baud 32 33 pinMode(trigPin, OUTPUT); //set pin modes 34 pinMode(echoPin, INPUT); 35 pinMode(buttonPin, INPUT); 36 pinMode(b, OUTPUT); 37 pinMode(RED, OUTPUT); 38 pinMode(BLUE, OUTPUT); 39 40 lcd.begin(16, 2); // begin lcd, define scale of lcd (16 places in a row, 2 rows) 41 lcd.print("Push Ups:"); 42 43 44 45} 46 47void loop() { 48 digitalWrite(trigPin, HIGH); // send out an ultra sonic sound for 10 microseconds and measure the time it took for the sound to go from the trigpin to the echo pin 49 delayMicroseconds(10); 50 digitalWrite(trigPin, LOW); 51 duration = pulseIn(echoPin, HIGH); 52 distance = duration * 0.034/2; //convert the time the signal took to travel to distance in cm 53 54 if (distance >= 20) {digitalWrite(RED, HIGH); //configure RGB-led to burn red, magenta or blue depending on distance 55 digitalWrite(BLUE, LOW);} 56 if (distance <= 20) {digitalWrite(BLUE, HIGH);} 57 if (distance <= 10) {digitalWrite(RED, LOW);} 58 59 if (i == (10 * y) && x == (1 * y)) { //this if statement plays a sound every ten pushups 60 tone(b, 146.8); 61 delay(50); 62 noTone(b); 63 delay(100); 64 tone(b, 146.8); 65 delay(50); 66 noTone(b); 67 delay(50); 68 tone(b, 293.7); 69 delay(100); 70 noTone(b); 71 x ++; 72 y ++; 73 } 74 else if (distance <= 10) {delay(350);} //this if else statement makes sure that the time between pushup-readings always stay the same 75 76 buttonState = digitalRead(buttonPin); //these lines of code resets every integer and the lcd to the original state by the press of a button 77 if (buttonState == HIGH) { 78 i = 0; 79 x = 1; 80 y = 1; 81 lcd.setCursor(0,1); 82 lcd.print("0 "); } 83 84 lcd.setCursor(0, 1); // set cursor on the second row 85 86 if (distance <= 10 ) {i ++;} //print a point if a pushup has been done 87 lcd.print(i,DEC); 88 89 while (distance <= 10) { //if the distance stays smaller then ten for a while, this piece of code makes sure that only one point is given for one pushup 90 digitalWrite(trigPin, HIGH); 91 delayMicroseconds(10); 92 digitalWrite(trigPin, LOW); 93 duration = pulseIn(echoPin, HIGH); 94 distance = duration * 0.034/2; 95 delay(100);} 96} 97
Downloadable files
Fritzing Schematic
Fritzing Schematic
Fritzing Schematic
Fritzing Schematic
Pushup Counter Connections
Pushup Counter Connections
Comments
Only logged in users can leave comments