Lab_interaccio/2015/SmartCitizen_DVK/SmartCitizen_DVK.ino
2025-02-25 21:29:42 +01:00

18 lines
196 B
C++

#include "SCDVK.h"
#include <Wire.h>
#include <SPI.h>
#include <SD.h>
#include "Constants.h"
SCDVK DVK;
void setup()
{
DVK.begin();
}
void loop() // run over and over
{
DVK.execute();
}