Skip to content

Instantly share code, notes, and snippets.

void display7segment(){
uint8_t i;uint32_t R;
uint8_t S;
R=harga;
for(i=0;i<6;i++){
S=R%10;
if(R!=0||i==0)display7(S,i);
R=R/10;
}
R=volume/10;