#41
|
||||
|
||||
I need to make some progress on mine too...
I had my heatsink cut to size yesterday, now I have to figure out how I want to do my pendant enclosure. Still waiting on a bunch of small stuff get here so I can do the circuits for temp, and PWM fan. |
#42
|
||||
|
||||
Well... to keep costs down, I'm going to try to make a pendant out of left over acrylic I have from when I built my tank years ago. Here's the faceplate I came up with to hold the remote TFT display for Jarduino. Sorry for the crappy pic's... just snapped them quick with my phone.
Not as nice as something CNC'd... but it'll work. I'll try to cut the other pieces this weekend, but have to wait on some syringes to apply the weld-on 4 to arrive from ebay. (Pharmacist looked at me like I had 3 heads when I tried get some locally) Chris |
#43
|
||||
|
||||
Quote:
If I can rally the energy tonight I'm gonna CNC my enclosure for my Typhon controller. It's been a REALLY exhausting week, so that's a big maybe... but we'll see |
#44
|
||||
|
||||
Just used a router... I built the table that you can partially see in the background when I made my tank. (8 years ago)
The piece came out decent.... the TFT display is flush with the back of the 3/8" thick acrylic, will router a hole in the side panel of the pendant for the ribbon cable to connect. Then I'll just use 2 small cap screws to secure the faceplate to the pendant side panel. I wish I had black acrylic to use instead, but that just isn't in the cards right now. (will probably use krylon fusion paint) Hopefully it will all come together ok. Chris |
#45
|
||||
|
||||
Don't forget to post pic's when you get it done... I'm sure lots of people will be interested in what you come up with for the typhon, especially for the menu buttons. I wanted to build that controller, but could never just find anyone that had a spare PCB.
|
#46
|
|||||
|
|||||
Nice work Chris. I was thinking of doing something similar when it came time to do it. More of my parts are slowly trickling in. I tried uploading the 1.1 version sketch on to my Arduino and I'm having issues. First of all I found out the Arduino environment has to be tweaked a bit so it can handle such a large file transfer. Jamie provided a tweaked version with the download, but it's not Mac compatible. Du'oh!
So I commandeered my wife's laptop and finally got everything loaded there. What a pain. Funny how Windows illiterate you get when you work with a Mac for a while. Anyway, got everything running on the laptop, the sketch verify's good and load's onto the Arduino fine with no error's but my TFT screen is blank. Hmmmm.... The screen powers up fine it's just blank. So I'm not sure if I have a slightly different version of screen than he used in his programming and I need to change something in the code or what. That's where I'm at.... |
#47
|
|||||
|
|||||
So, I have a parts question maybe you guys can help me with. I'm trying to be able to stack multiple proto boards on top of one another. I figure I'll need 2 boards between the main Arduino and the ITDB02 Mega shield that runs the TFT screen. I can find the stackable 8 pin female headers with the long legs to be able to do most of it, but is there such a thing as a 40 pin female header with the long legs? Or do I have to lego the 8pin's together to do it?
|
#48
|
||||
|
||||
Hmmm.... I loaded up ver 1.1 also to play with a week ago or so, I did make a change in the sketch before loading though. I changed line 92 to this....
Code:
TDB02 myGLCD(38,39,40,41,ITDB32S); //May need to add "ITDB32S" depending on LCD controller ITDB02_Touch myTouch(6,5,4,3,2); Just a note... you can't go off of the line #'s in Jamies manual for ver 1.1, as it was written for 1.2, and they're different. HTH Chris |
#49
|
||||
|
||||
The ones for the arduino are 36 pin... it changes over to 40 pin on the shield for the TFT. Itead does sell the stackable header kits for the mega. I have some on order... should have them here any day.
|
#50
|
|||||
|
|||||
Quote:
Thanks. I'll have to check for the stacking header for it tonight and see if that code change works for me. Dom |