Home
JAQForum Ver 24.01
Log In or Join  
Active Topics
Local Time 10:56 11 Nov 2025 Privacy Policy
Jump to

Notice. New forum software under development. It's going to miss a few functions and look a bit ugly for a while, but I'm working on it full time now as the old forum was too unstable. Couple days, all good. If you notice any issues, please contact me.

Forum Index : Microcontroller and PC projects : E100 LCD Port Tester Thing.....

     Page 2 of 2    
Author Message
Chopperp

Guru

Joined: 03/01/2018
Location: Australia
Posts: 1106
Posted: 11:16am 28 Apr 2018
Copy link to clipboard 
Print this post

@Grogster

QUOTE [DIM PACK%(8)=(00,15,14,03,07,25,02,23,06) 'Micromite Backpack pins]

The SC Micromite+ Explore 64 uses different pins for the ILI9341. Easy enough to change the software though to suit.
ChopperP
 
Azure

Guru

Joined: 09/11/2017
Location: Australia
Posts: 446
Posted: 04:55pm 28 Apr 2018
Copy link to clipboard 
Print this post

Here are the changes to add support for the SC Micromite Plus Backpack LCD Pins

'Insert after DIM PACK%(8)=...
DIM PACKP%(8)=(00,03,47,05,01,04,02,23,29) 'Micromite Plus Backpack pins

' Insert after Print "[4> ...
Print "[5> - Test Micromite Plus BACKPACK connections"

'Insert after Case "4"
Case "5"
For X=1 to 8
Setpin(PACKP%(X)),dout 'Set the Backpack Plus LCD pins as outputs
Next
Do
For X=1 to 8 'Step through each pin, lighting an LED as we go
Pin(PACKP%(X))=1
Pause D
Pin(PACKP%(X))=0
Pause D
Next
Loop until Inkey$<>""
Goto BEGIN


Hope that helps.
 
     Page 2 of 2    
Print this page


To reply to this topic, you need to log in.

The Back Shed's forum code is written, and hosted, in Australia.
© JAQ Software 2025