#include <TM1637.h>

const int CLK = 2;
const int DIO = 3;
const int analogPotentierMeterPin = A0;

int analogValue = 0;

TM1637 tm(CLK, DIO);

void setup() {

  tm.init();
  tm.set(BRIGHT_TYPICAL);
  Serial.begin(9600);
}

void loop() {
  int analogValue = analogRead(analogPotentierMeterPin);

  if (analogValue >= 512) {
    Serial.println("1234");
    tm.display(0,1);
    tm.display(1,2);
    tm.display(2,3);
    tm.display(3,4);
  } else {
    Serial.println("7890");
    tm.display(0,7);
    tm.display(1,8);
    tm.display(2,9);
    tm.display(3,0);
  }
}
$abcdeabcde151015202530fghijfghij
4-Digit Display