GY-63_MS5611/libraries/HT16K33/examples/demo_dual1/demo_dual1.ino

48 lines
940 B
Arduino
Raw Normal View History

2019-11-30 08:37:53 -05:00
//
// FILE: demo_dual1.ino
// AUTHOR: Rob Tillaart
2020-07-16 05:08:25 -04:00
// VERSION: 0.1.0
2019-11-30 08:37:53 -05:00
// PURPOSE: demo 2 I2C 4x7segment displays one uint32_t unsigned long
// URL: http://www.adafruit.com/products/1002
2020-07-16 05:08:25 -04:00
// URL: https://github.com/RobTillaart/HT16K33
2019-11-30 08:37:53 -05:00
#include "HT16K33.h"
2020-07-16 05:08:25 -04:00
HT16K33 left(0x70);
HT16K33 right(0x71);
2019-11-30 08:37:53 -05:00
uint32_t counter = 0;
void setup()
{
Serial.begin(115200);
Serial.println(__FILE__);
2020-07-16 05:08:25 -04:00
left.begin();
right.begin();
2019-11-30 08:37:53 -05:00
Wire.setClock(100000);
left.displayOn();
right.displayOn();
left.suppressLeadingZeroPlaces(4); // show no digit if not needed
right.suppressLeadingZeroPlaces(3); // show at least 1 digit if zero (0)
Serial.println("dual displayTest");
}
void loop()
{
uint16_t lval = counter / 10000;
uint16_t rval = counter % 10000;
right.suppressLeadingZeroPlaces(lval == 0 ? 3 : 0);
left.displayInt(lval);
right.displayInt(rval);
delay(1);
counter++;
}
2020-07-16 05:08:25 -04:00
// -- END OF FILE --