complex stroke erste version

This commit is contained in:
Tristan Krause 2019-03-27 10:33:16 +01:00
parent a3e9e1ce27
commit 9ef5fdc9a9
6 changed files with 57 additions and 21 deletions

View file

@ -5,5 +5,21 @@ int main()
{
B15F& drv = B15F::getInstance();
drv.init();
/*
while(1)
{
for(uint16_t i = 0; i < 1024; i++)
{
drv.analogeAusgabe0(drv.analogeEingabe(5));
//drv.delay(10);
//drv.digitaleAusgabe0(drv.digitaleEingabe0());
}
}*/
uint16_t ba[1024];
uint16_t bb[1024];
drv.analogEingabeSequenz(&ba[0], &bb[0], 0, 0, 0, 10, 100);
std::cout << "Schluss." << std::endl;
}