GY-63_MS5611/libraries/Cozir/examples/Cozir_echo/Cozir_echo.ino

47 lines
903 B
Arduino
Raw Normal View History

2022-02-21 13:40:59 -05:00
//
// FILE: Cozir_echo.ino
// AUTHOR: Rob Tillaart
// PURPOSE: demo of Cozir sensor
// URL: https://github.com/RobTillaart/Cozir
// http://forum.arduino.cc/index.php?topic=91467.0
//
// Note: this sketch needs a MEGA or a Teensy that supports a second
// Serial port named Serial1
// The purpose of this sketch is to talk lowest level to the COZIR sensor.
// one can send the low level commands (datasheet) directly to the device.
// Note: this can cause (unwanted) side effects, so use with care.
#include "Arduino.h"
#include "cozir.h" // not perse needed
COZIR czr(&Serial1);
void setup()
{
Serial1.begin(9600);
2022-02-25 06:16:35 -05:00
Serial.begin(115200);
2022-02-21 13:40:59 -05:00
Serial.println(__FILE__);
Serial.println();
}
void loop()
{
if (Serial.available())
{
Serial1.write(Serial.read());
}
if (Serial1.available())
{
Serial.write(Serial1.read());
}
}
// -- END OF FILE --