Hello,
I would like to connect my FEZ Touch with my Domino board.
I have ssen it is possible on your Fez Touch brochure :
So I would like to make the wire !
Firstly,
I look for Fez Touch Schematics but I don’t find it. So I tried to take the sample code located in :
http://code.tinyclr.com/project/277/fez-touch-lcd-component/ and look for used pins on panda to retrieve their location on the 40 pin connector.
So I took the prototype method :
public LCDConfiguration(FEZ_Pin.Digital reset, FEZ_Pin.Digital chipSelect, FEZ_Pin.Digital RS, FEZ_Pin.Digital backLight, FEZ_Pin.Digital[] dataPins, FEZ_Pin.Digital writePin, FEZ_Pin.Digital readPin)
and the call of this method :
FEZ_Components.FEZTouch.LCDConfiguration lcdConfig = new FEZ_Components.FEZTouch.LCDConfiguration(
FEZ_Pin.Digital.Di28,
FEZ_Pin.Digital.Di20,
FEZ_Pin.Digital.Di22,
FEZ_Pin.Digital.Di23,
new FEZ_Pin.Digital[8] { FEZ_Pin.Digital.Di51, FEZ_Pin.Digital.Di50, FEZ_Pin.Digital.Di49, FEZ_Pin.Digital.Di48, FEZ_Pin.Digital.Di47, FEZ_Pin.Digital.Di46, FEZ_Pin.Digital.Di45, FEZ_Pin.Digital.Di44 },
FEZ_Pin.Digital.Di24,
FEZ_Pin.Digital.Di26
);
So i look for the FEZ_Pin.Digital.Di28 on the Panda 2, and I found that is the pin ADC0 which is not present on the connector !!! So I really don’t understand.
Could you help me ?