void setup()
{
}

void loop()
{
  for(int i=0;i<255;i++){
    dacWrite(25,i);
    delay(100);
    print("i", i)
 
}
}