#include "DiTemperature.h"
#include "LivinGrimoireLight.h"
Chobit* c1;
Skill* s2 = new DiTemperature(0);
void setup() {
// temperature skill created LM35 connected to analog pin 0
c1 = new Chobit();
c1->addSkill(s2);
}
void loop() {
c1->think(0, 0, 0);
}