Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.

Rudolf

Member Since 20 Apr 2013
Offline Last Active Jul 26 2015 08:33 PM
-----

Posts I've Made

In Topic: LED/LCD TFT Screen

13 July 2015 - 06:55 PM

asciiman,

 

you are my hero, dude, big thanks its working now.

 

thank you very much!!!!!!!


In Topic: LED/LCD TFT Screen

13 July 2015 - 08:00 AM

hi,

 

thanks, but what about the other wires? where do I connect the other cabels (CS, RESET, D/C, SDI, SCK, SDO). I also found an example where RESET and D/C is connectet to the Analog Ports.

 

other example:

VCC to 3.3v
GND power ground.
CS to D10
RESET to A1
D/c to A2

SDI to D11 (Mosi)
SCK to D13 (spck)

 

This is confusing.

 

what is the right wiring with an Netduino and this display to use with vecc Libs?

Do i need the CD4050 Hex Buffer/ Converter like for Arduino?


In Topic: LED/LCD TFT Screen

12 July 2015 - 03:08 PM

Hi community,

 

can anyone explain, how I have to connect the display? With the Arduino I use following wiring

1.VCC               3.3 V
2.GND               GND
3.CS                  D5
4.Reset              D6
5.DC / RS          D7
6.MOSI              D11
7.SCK                D13
8.LED                3.3V
9.MISO              D12

with a CD4050     (Source)

but I don't get it running with the Netduino 2.

 

 

 

Soucecode :

using Vecc.Netduino.Drivers.Ili9341;
...
...
...

public static void Main()
{
    var tft = new Driver(isLandscape: true,
                         lcdChipSelectPin: Pins.GPIO_PIN_D5,
                         dataCommandPin: Pins.GPIO_PIN_D7,
                         resetPin: Pins.GPIO_PIN_D6); 
    var font = new StandardFixedWidthFont();
    tft.ClearScreen();
    tft.DrawString(10, 10, "Hello world!", 0xF800, font);
    tft.BacklightOn = true;
}

can someone help me please

Thanks and Greetings


home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.