#include <TM1637Display.h>
const int DIO_Pin=2;
const int CLK_Pin=3;
TM1637Display display(CLK_Pin, DIO_Pin);
void setup() {
// put your setup code here, to run once:
display.setBrightness(0x0F);
}
void loop() {
// put your main code here, to run repeatedly:
int Sensor_Value=analogRead(A0);
display.showNumberDec(Sensor_Value);
delay(1000);
}