void setup() {

  Serial.begin(9600);
  int N = 4;

  Serial.println(0.1236, N);

  N = 3;

  Serial.println(0.1236, N);

}

void loop() {

}