
#include "debug_config.h"

#include "PHApp.h"
#include "config.h"
#include <Ethernet.h>

PHApp testApp;

void setup()
{
  // init_osr_base();
  // Ethernet.begin(MB_MAC, MB_IP, MB_GATEWAY, MB_SUBNET);
  Log.verboseln("Setup");
  testApp.setup();
}

void loop()
{
  testApp.loop();
  // Log.verbose(F("* main hb *" CR));
  // delay(10);
}
