GY-63_MS5611/libraries/LTC2991/examples/LTC2991_PWM/LTC2991_PWM.ino

60 lines
920 B
Arduino
Raw Normal View History

2021-05-16 07:21:38 -04:00
//
// FILE: LTC2991_PWM.ino
// AUTHOR: Rob Tillaart
// DATE: 2021-05-13
// PUPROSE: demo
#include "Wire.h"
#include "LTC2991.h"
LTC2991 LTC(0x20);
int speed = 10;
int incr = 1;
void setup()
{
Serial.begin(115200);
Serial.println(__FILE__);
Serial.print("LTC2991_LIB_VERSION:\t");
Serial.println(LTC2991_LIB_VERSION);
Wire.begin();
Wire.setClock(100000);
LTC.begin();
while (!LTC.isConnected())
{
Serial.println("Could not connect to device");
delay(2000);
}
LTC.enable_PWM(true);
}
void loop()
{
static uint32_t lastTime = 0;
if ((millis() - lastTime) >= 100)
{
lastTime = millis();
LTC.set_PWM(speed);
if (speed == 511) incr = -1; // reverse speed
if (speed == 0) incr = 1; // reverse speed
speed += incr;
Serial.print(lastTime);
Serial.print("\t");
Serial.print(LTC.get_PWM());
Serial.println();
}
}
// -- END OF FILE --