segment display and ledControl.h

Hi to all.

Am using this test code to display some value on segment display.
When i run it display is turned on and all segments are ON but that's it.
If i enter some value over serial i get message that this value is received but there's no changes on display.

This is display in question:

And this is the code:

#include "LedControl.h"
String inString = "";
int pos = 0;
// Arduino Pin 12 to DIN, 11 to Clk, 10 to LOAD, no.of devices is 1
LedControl lc = LedControl(12,11,10,1);
void setup() {
    Serial.begin(115200);
    // Initialize the MAX7219 device
    lc.shutdown(0, false); // Enable display
    lc.setIntensity(0, 10); // Set brightness level (0 is min, 15 is max)
    lc.clearDisplay(0); // Clear display register
    for (int i = 0; i < 8; i++) {
        lc.setDigit(0, i, i + 1, false);
    }
}
void loop() {

    // send data only when you receive data:
    if (Serial.available() > 0) {
        int inChar = Serial.read();
        if (isDigit(inChar)) {
            inString = (char) inChar;
        }

        if (inChar == '\n') {
            int x = inString.toInt();
            Serial.print("I received: ");
            Serial.println(x);
            lc.setDigit(0, pos, x, false);
            pos++;
            if (pos > 7) {
                pos = 0;
            }
        }
    }
}

Ideas ?
Btw. all wires are checked and OK.

One more thing...
I was planning to remove this smaller numbers and replace them with bigger ones.
To be exact with kingbright SC23-ewa SA model... Would this work ?

A.

I'm missing the link to the LedControl.h you're using.

Btw. all wires are checked and OK.

I don't believe that without having seen your wiring diagram.