mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
43 lines
720 B
Arduino
43 lines
720 B
Arduino
|
//
|
||
|
// FILE: shiftOutSlow_demo.ino
|
||
|
// AUTHOR: Rob Tillaart
|
||
|
// VERSION: 0.1.0
|
||
|
// PURPOSE: test sketch
|
||
|
// URL: https://github.com/RobTillaart/ShiftOutSlow
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "ShiftOutSlow.h"
|
||
|
|
||
|
|
||
|
ShiftOutSlow SOS(12, 13, LSBFIRST);
|
||
|
|
||
|
volatile int x = 0;
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
Serial.begin(115200);
|
||
|
Serial.println(__FILE__);
|
||
|
Serial.println(SHIFTOUTSLOW_LIB_VERSION);
|
||
|
|
||
|
for (uint16_t d = 0; d < 1000; d += 10)
|
||
|
{
|
||
|
SOS.setDelay(d);
|
||
|
uint32_t start = micros();
|
||
|
x = SOS.write(0x55);
|
||
|
uint32_t stop = micros();
|
||
|
float duration = stop - start;
|
||
|
Serial.print(stop - start);
|
||
|
Serial.print("\t");
|
||
|
Serial.println(duration / 8, 1);
|
||
|
}
|
||
|
|
||
|
Serial.println("done...");
|
||
|
}
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
// -- END OF FILE --
|