Fixed Filesystem?

This commit is contained in:
James McKenzie 2019-04-29 20:07:41 +12:00
parent 5bd9d3b6c8
commit dbb758c7ff
2 changed files with 2 additions and 49 deletions

View File

@ -14,8 +14,6 @@ void setup() {
pinMode(12, INPUT); //echo pin
if (digitalRead(0) ==HIGH){
mode = 0;
}
else{
mode = 1;
}
}
@ -37,9 +35,9 @@ float getNote()
echoTime = pulseIn(12, HIGH);
calculatedDistance = echoTime / 8;
calculatedDistance += 110;
if (calculatedDistance > 1720){
if (calculatedDistance > 1760){ //
calculatedDistance = 880;
calculatedDistance = 1760;
}
Serial.print(calculatedDistance); //print units after the distance
Serial.println(" hz"); //print units after the distance

View File

@ -1,45 +0,0 @@
/*
*@author James McKenzie
*@lang C89 Based
*@contact lunarised@outlook.com
*/
int mode;
void setup() {
pinMode(0, INPUT_PULLUP);
pinMode (13, OUTPUT);
pinMode(8, OUTPUT);
Serial.begin (9600); //set up a serial connection with the computer
pinMode(11, OUTPUT); //the trigger pin
pinMode(12, INPUT); //echo pin
if (digitalRead(0) ==HIGH){
mode = 0;
mode = 1;
}
}
void loop() {
if (mode == 0){
digitalWrite(13, HIGH);
tone(8, getNote());
}
}
float getNote()
{
float echoTime;
float calculatedDistance;
digitalWrite(11, HIGH);
delayMicroseconds(20);
digitalWrite(11, LOW);
echoTime = pulseIn(12, HIGH);
calculatedDistance = echoTime / 8;
calculatedDistance += 110;
if (calculatedDistance > 1760){ //
calculatedDistance = 1760;
}
Serial.print(calculatedDistance); //print units after the distance
Serial.println(" hz"); //print units after the distance
return calculatedDistance;
}