Set Spider System/Display in Standby Modus

Hello,

Is it possible, to set the system in standby modus?

And another Question, i tried to shut down displayT35.
I think, that i have to set SHDN#(pin 20 on CPU) the resistor mode to pullup or down.

If i have a look at the documentation,
OutputPort Class (Microsoft.SPOT.Hardware) | Microsoft Learn ,
i can only set the Output initialstate.

The first idea was that you use the write method can change the state. But it doesnt work.
Or I have a wrong solution approach?


static OutputPort RST = new OutputPort((Cpu.Pin) 20, false);

RST.Write(true);

Thanks, thats it.