ZappBots wishes a warm welcome to everyone.
Especially our visitors from Savage///Circuits and Parallax!!!
Please take a look our new forums, we hope you register and become an active user.
The ZappBots forums are being run on phpBB 3.1.4 software which is different then the vBulletin used on the Savage///Circuits and Parallax forums.
Therefore, things look and work a little different, especially creating posts and uploading images / attachments.
The important thing is we have a place toTalk, Learn and Showcase our projects.
Especially our visitors from Savage///Circuits and Parallax!!!
Please take a look our new forums, we hope you register and become an active user.
The ZappBots forums are being run on phpBB 3.1.4 software which is different then the vBulletin used on the Savage///Circuits and Parallax forums.
Therefore, things look and work a little different, especially creating posts and uploading images / attachments.
The important thing is we have a place toTalk, Learn and Showcase our projects.
SSD 1963 AND 800X480 TFT
- pilot0315
- Member
- Posts: 10
- Joined: Sat May 30, 2015 6:31 pm
- Location: southern california
- Contact:
SSD 1963 AND 800X480 TFT
I have been having problems with this device. All the code appears to be correct but I cannot get the whole screen to work.
Here is the documentation and code. I get pixellations on one side, good colors in the middle and black on the right.
I will upload photos tonight
Here is the documentation and code. I get pixellations on one side, good colors in the middle and black on the right.
I will upload photos tonight
- Attachments
-
NHD-7.0-800480EF-20 Controller Board.pdf
- (381.54 KiB) Downloaded 132 times
-
NHD-7.0-800480EF-ATXL-CTP.pdf
- (908.71 KiB) Downloaded 132 times
-
NHD-7.0-800480EF-ATXL-T tft screen.pdf
- (715.4 KiB) Downloaded 130 times
-
SSD1961_2_3_Application_note_v1.7.pdf
- (621.84 KiB) Downloaded 120 times
-
SSD1963.pdf
- (957.79 KiB) Downloaded 130 times
-
fast ripple send to paul.spin
- (7.97 KiB) Downloaded 121 times
-
Arduino_nhd-7_0-800480EF.txt
- (6.53 KiB) Downloaded 125 times
- JDISME
- Member
- Posts: 69
- Joined: Thu May 21, 2015 1:02 am
- Location: Billings, Montana
- Contact:
Re: SSD 1963 AND 800X480 TFT
Can you share more of the pictures of what it looks like? Reading the data sheet, it almost looks like the RGB that the displays Parallax uses. For example, using a TV OUT object. Have you tried to use a TV Object to control it? Or do you have to send command to the mcu onboard to display?
Joshua Donelson
- zappman
- Administrator
- Posts: 116
- Joined: Wed May 06, 2015 12:31 am
- Contact:
Re: SSD 1963 AND 800X480 TFT
pilot0315 wrote:I have been having problems with this device. All the code appears to be correct but I cannot get the whole screen to work.
Here is the documentation and code. I get pixellations on one side, good colors in the middle and black on the right.
I will upload photos tonight
Take a look at this webpage Ray uses the SSD 1963 on his DVI Graphics Shield Ray has lots of Propeller code to support his board.
butlh ghajbogh nuv'e' yIHo'.
Admire the person with dirt under his fingernails.
- pilot0315
- Member
- Posts: 10
- Joined: Sat May 30, 2015 6:31 pm
- Location: southern california
- Contact:
Re: SSD 1963 AND 800X480 TFT
I have been there. I used his code to verify that the device works. I am trying to write my own code. For some reason I am not able to get full screen. I have been looking for someone who has the same device "ssd 1963" and a propeller chip who would look at my code. Right now I am trying to relearn my Saleae logic analyzer. Have not used it in parallel before. Trying to see why the commands are screwed up in my initiation process.
Thanks
Thanks
- pilot0315
- Member
- Posts: 10
- Joined: Sat May 30, 2015 6:31 pm
- Location: southern california
- Contact:
Re: SSD 1963 AND 800X480 TFT
JD
It has a controller card that has to have specific commands sent in a sequence. For some reason, either my commands are not being sent properly, completely, and or dropped off.
The left side has pixels. The right side is black the center two thirds is semi operational.
It has a controller card that has to have specific commands sent in a sequence. For some reason, either my commands are not being sent properly, completely, and or dropped off.
The left side has pixels. The right side is black the center two thirds is semi operational.
- Savage///Circuits
- VIP
- Posts: 366
- Joined: Tue May 12, 2015 2:43 pm
- Location: Plumas Lake, CA
- Contact:
Re: SSD 1963 AND 800X480 TFT
I tried to get one of these as a demo from that company, but they wanted me to buy one off the website and I don't really have a use for it. I kind of thought we could do each other a favor...I develop code for their display on the Propeller and they donate one to Savage///Circuits so I can help get people up and running. But apparently that's not an option. Sorry pilot. 

I'm only responsible for what I say, not what you understand.
- pilot0315
- Member
- Posts: 10
- Joined: Sat May 30, 2015 6:31 pm
- Location: southern california
- Contact:
Re: SSD 1963 AND 800X480 TFT
Yeah they are not too creative in understanding that it could boost sales.
Thanks for the thought.
I am still struggling with this thing. I am trying to relearn my saleae device so that I can check out the code. I am having problems with that. Never used the parallel function. Not triggering when sending 8 bits.
I will get it though.
Martin
Thanks for the thought.
I am still struggling with this thing. I am trying to relearn my saleae device so that I can check out the code. I am having problems with that. Never used the parallel function. Not triggering when sending 8 bits.
I will get it though.
Martin
- Savage///Circuits
- VIP
- Posts: 366
- Joined: Tue May 12, 2015 2:43 pm
- Location: Plumas Lake, CA
- Contact:
Re: SSD 1963 AND 800X480 TFT
Typically you would need more than 8 channels to monitor an 8-bit Parallel bus if you're trying to see the control data. For example to monitor a Hitachi HD44780 compatible LCD you would need 8 channels plus 3 for the control bus. 8 data bits plus E (enable), R/W (Read/Write) and RS (Register Select). It's the only way you'd get a complete picture of what's going on in this case.
Without monitor the E line you'd never know when a new bytes was sent unless it changed value. Without the R/W you wouldn't know which side send the byte and without RS you wouldn't know if it was a command or data. So control bus lines are usually important, though I don't know what interface this particular display has.
Without monitor the E line you'd never know when a new bytes was sent unless it changed value. Without the R/W you wouldn't know which side send the byte and without RS you wouldn't know if it was a command or data. So control bus lines are usually important, though I don't know what interface this particular display has.
I'm only responsible for what I say, not what you understand.
- pilot0315
- Member
- Posts: 10
- Joined: Sat May 30, 2015 6:31 pm
- Location: southern california
- Contact:
Re: SSD 1963 AND 800X480 TFT
I called Saleae and they told me to right click on the icon that says which of the channels is rising edge etc, and you can disconnect all triggers. Then set the data collection to a high number. Run the analyzer the run the code. When you think that you have enough data stop it and it will show the parallel data.
It worked great.
Still have a problem with the tft though.
It worked great.
Still have a problem with the tft though.
- pilot0315
- Member
- Posts: 10
- Joined: Sat May 30, 2015 6:31 pm
- Location: southern california
- Contact:
Re: SSD 1963 AND 800X480 TFT
Giving up on Newhaven
Return to “Parallax Propeller Chip and Boards”
Who is online
Users browsing this forum: No registered users and 1 guest