Arduino
Arduino
A good test for this is to try it with a GPS receiver that sends out
NMEA 0183 sentences.
https://www.arduino.cc/en/Tutorial/BuiltInExamples/SerialEvent
*/
#include <Servo.h>
void setup() {
myservo.attach(9); // attaches the servo on pin 9 to the servo object
// initialize serial:
Serial.begin(9600);
// reserve 200 bytes for the inputString:
inputString.reserve(200);
pinMode(trigPin, OUTPUT); // Ustawiamy pin TRIG jako wyjście
pinMode(echoPin, INPUT); // Ustawiamy pin ECHO jako wejście
}
void loop() {
// print the string when a newline arrives:
if (stringComplete) {
Serial.println(inputString);
myservo.write(inputString.toInt());
// clear the string:
inputString = "";
stringComplete = false;
}
long duration, distance; // Zmienne do przechowywania czasu trwania fali i
odległości
// Obliczamy odległość
distance = (duration / 2) / 29.1; // Obliczamy odległość w centymetrach
/*
SerialEvent occurs whenever a new data comes in the hardware serial RX. This
routine is run between each time loop() runs, so using delay inside loop can
delay response. Multiple bytes of data may be available.
*/
void serialEvent() {
while (Serial.available()) {
// get the new byte:
char inChar = (char)Serial.read();
// add it to the inputString:
inputString += inChar;
// if the incoming character is a newline, set a flag so the main loop can
// do something about it:
if (inChar == '\n') {
stringComplete = true;
}
}
}