Hi. First time poster and first time arduino'r. Might be wrong subforum? Please let me know if I should address this somewhere else. I was hoping for some assistance with better understanding the layout of these 2 pieces I received from Amazon. I bought the following pack:
Here's a picture of the pieces. Please ignore the blue top device. The bottom left and bottom right are the ESP8266 and Display, respectively:
I've been doing some research and trying to understand how to connect these 2 pieces. The video tutorial found on the amazon page is pretty good, but the LCD display's pins are a little bit different:
I've also been looking for documentation and I find it very difficult, I believe the ESP8266 is this ESP8266 ESP-12E NodeMCU, but I can't quite figure out the Display. The pins don't line up to:
Any help or guidance would be great. Just looking to connect these before I even dive into the coding aspect. Again, first time arduino attempter (probably should have bought a real kit rather than some Amazon 'kit' too. bleh). Please let me know if I need to supply additional information. Thanks!
Update: So, there was a hidden image on the Amazon link. It wasn't displayed on the left hand side. However, upon clicking on an image and bringing up a new windows, I found some wiring instructions. I will follow these tonight when I get home to see if I make any progress. Thanks for being a sound board for my first attempt at this!
Thank you for the quick reply David. I apologize, I am not following your recommendations.
When you mean the Blue display board, are you referring to the LCD Display? If so, I do not have an 'official' link, only the information was supplied on the amazon link here.
I will look into the ST7735S controller or ILI9163 and see if it is what I have. The LCD display I have is a 128x128.
I have not tried installing any libraries yet, only trying to understand the physical connectivity between the ESP and LCD Display.
I read the message on a Tablet.
I looked at your link on my PC. I can see the part number. It is 74HC245
I can't see the module pinout. I assume that it is designed to plug into the Analog and Power headers of an Arduino. The HC245 translates the 5V logic of a Uno. It should work fine with the 3V ESP8266.
It looks as if the LED pin can be switched by logic.
The link implies that it has a ST7735. And it suggests Adafruit_ST7735 and Adafruit_GFX libraries (which you can install with the Library Manager)
So everything looks good.
It is up to you to show your wiring. And explain what you see and what you expected to see. e.g. from a Library example.
Connect LED to 3V. I suggest that you use the software constructor. We will get the hardware working later.
DC and RS are different names for the same thing. DC means Data/Command. RS means RegisterSelect
MOSI and SDI are the same. MasterOutSlaveIn. SerialDataIn.
SCLK. SerialClock
Yes, it is confusing. Google is your friend.
Seriously, it is better to start with an Arduino Uno. Your display just plugs into the header sockets.
This worked! Thank you very much David. I now understand a bit more about the displays and naming convention. I agree, I should have started with an Arduino Uno. I will begin programming this now.