My Arduino Due Serial Monitor doesn't worke.

Serial.Write(9600);

What is this? You nave not setup the serial port

You need

Serial.begin(9600);

in setup() followed by (for example)

Serial.println("Hello world");


Rob