simple image display for 1.8 tft lcd factory

In this guide we’re going to show you how you can use the 1.8 TFT display with the Arduino. You’ll learn how to wire the display, write text, draw shapes and display images on the screen.
The 1.8 TFT is a colorful display with 128 x 160 color pixels. The display can load images from an SD card – it has an SD card slot at the back. The following figure shows the screen front and back view.
This module uses SPI communication – see the wiring below . To control the display we’ll use the TFT library, which is already included with Arduino IDE 1.0.5 and later.
The TFT display communicates with the Arduino via SPI communication, so you need to include the SPI library on your code. We also use the TFT library to write and draw on the display.
In which “Hello, World!” is the text you want to display and the (x, y) coordinate is the location where you want to start display text on the screen.
The 1.8 TFT display can load images from the SD card. To read from the SD card you use the SD library, already included in the Arduino IDE software. Follow the next steps to display an image on the display:
Note: some people find issues with this display when trying to read from the SD card. We don’t know why that happens. In fact, we tested a couple of times and it worked well, and then, when we were about to record to show you the final result, the display didn’t recognized the SD card anymore – we’re not sure if it’s a problem with the SD card holder that doesn’t establish a proper connection with the SD card. However, we are sure these instructions work, because we’ve tested them.
In this guide we’ve shown you how to use the 1.8 TFT display with the Arduino: display text, draw shapes and display images. You can easily add a nice visual interface to your projects using this display.

The DT018ATFT does not support 4-Wire SPI (also known as "4-line Serial Interface Protocol", 8-bit data, which includes a separate D/C signal line). DT018ATFT does not support this since the signal in ILI9163C datasheet called "SPI4" is hard coded to 0. However, a custom version of the FPC can be tooled to expose the proper 4-Wire SPI signals - please contact us for more details.
The provided display driver example code is designed to work with Microchip, however it is generic enough to work with other micro-controllers. The code includes display reset sequence, initialization and example PutPixel() function.

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

Electronics has transited from a work meant for well-trained engineers to something which is dabbled into by people in other fields especially in Arts and related fields. The introduction of platforms like Arduino (which was created for reasons like this), has been one of the main facilitators of this trend which has produced diverse forms of electronics embedded art pieces, from interactive paintings to animatronic sculptures. For today’s tutorial, we will build our own work of “art” – a digital Photo Frame. Photoframes are used to display pictures or artworks and are made from wood, metal and several synthetic material. They were created to hold just one picture/artwork but with digital photo frames, you could have more than one picture stored on the photo frame, switching between them at desired intervals.
Digital Photo frames are usually made up of four main components; a display/screen, a storage device, a microcontroller or microprocessor, and a power supply. For today’s tutorial, we will use the 1.8″ ST7735 based, color TFT as our display and the Arduino nano as the microcontroller. The TFT display is a 1.8″ display with a resolution of 128×160 pixels and can display a wide range of colors ( full 18-bit color, 262,144 shades!). The display uses the SPI protocol for communication and has its own pixel-addressable frame buffer which means it can be used with all kinds of microcontrollers and you only need 4 IO pins. The display module also comes with an SD card slot which we will use as the storage device for this project.
Beside just building the digital photo frame, at the end of this tutorial, you would have also learned how to use the SD card slot on the 1.8″ TFT display module for other projects.
The ST7735 1.8″ TFT display is made up of two set of header pins. The first one at the top consists of 4 pins and are used to interface the SD card slot at the back of the display.
The second set of headers below the screen represent the pins for driving the display itself. However, the SD card slot and the display, both use the SPI protocol for communications with the MCU so they will be connected to the same pins on the Arduino nano. The only difference will be the CS/SS pin as each of them will be connected to a different pin.
For this schematic, we used the Fritzing model of the ST7735 1.8″ TFT display and the arrangement of the pins is slightly different from that of our display. This model has the pins of the SD card slot and the display merged together breaking out only their CS/SS pins.
Go over the schematics one more time to be sure everything is as it should be. More on the use of the 1.8″ TFT display was covered in a previous tutorial here.
The images that will be displayed on the TFT has to be in a bitmap format, thus before the images are copied to the SD card, we need to convert them to the recognizable bitmap form. To do this, I used the free Paint.net software (for windows) but you can use any other image editing software.
Load the images into the software one by one and use the resize tool to reduce its resolution and size to that (160×128 pixels) of the 1.8″ TFT display.
The code for this project is a slightly modified version of the SPI TFT bitmap example shipped with the ST7735 library by Adafruit. Thus the code for this tutorial is heavily reliant on the Adafruit ST7735 and GFX libraries.
With this done, we declare the pins of the Arduino to which the CS pins of the SD card slot and the TFT are connected and also create an object of the Adafruit ST7735 library with the declared pins passed on as arguments.
Next is thevoid setup() function. We start by initializing serial communication which will be used to debug our code. After this, we initialize the TFT and the SDcard, setting the rotation of the TFT to landscape (represented by 1).
Next is the void loop function. Here we simply invoke the bmpDraw function for each of the images we will like to display, setting a suitable delay time between each of the pictures. The bmpDraw function makes it super easy to display images on the TFT. All we need to do is to provide the name of the .bmp file, starting coordinates and it will use that information to fetch the image from the SD card and display on the screen.
Ensure your connections are correct, then upload the code to your Arduino. After a while, you should see the pictures being displayed like a slideshow on the TFT.
That’s it for this tutorial. Do let me know if you have any question about it via the comment section. Feel free to also share ideas on cool modifications and additions that could make the project bigger and more useful.

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

This is a small graphics library, specifically aimed at ATtiny microcontrollers, for the variety of small colour TFT displays available at low cost from suppliers like Adafruit, AliExpress, or Banggood:
It"s an updated version of my Tiny TFT Graphics Library. This latest version of the library supports both the classic ATtiny processors, such as the ATtiny85, and the new 0-series, 1-series, and 2-series ATtiny processors, such as the ATtiny402. Like the original library it allows you to plot points, draw lines, draw filled rectangles, and plot characters and text with an optional scale factor, in 16-bit colour.
This version adds the ability to plot outline rectanges, and outline and filled circles. I"ve included demo curve-plotting and histogram-plotting programs that adjust to fit any display.
This library supports TFT displays that use an SPI interface and require four pins to drive the display. This leaves one pin free on an 8-pin chip such as the ATtiny85 or ATtiny402. If you need more pins choose a larger chip, such as the ATtiny84 or ATtiny404.
Unlike my Compact TFT Graphics Library which uses standard Arduino SPI calls, this library uses direct I/O pin manipulations. This means that you can use any assignment of pins to the four I/O lines needed by the display, and makes it about twice as fast as one using SPI calls. I"ve also added support for some additional displays, so it now supports 16 different TFT displays.
On the classic ATtiny processors, such as the ATtiny85, the library uses the feature that you can toggle one or more bits in a port by writing to the PINB register; for example, to enable or disable the chip-select signal:
So provided you set all the pins to their disabled state at startup, the display routines can simply toggle the appropriate pins to enable or disable them.
The differences between each family of processors are handled by constants to define the pin assignments, and preprocessor macros to define the bit manipulations. If you use the circuits given below you won"t need to change anything, apart from specifying which display you"re using.
The ClearDisplay() routine has been optimised further by realising that we don"t need to keep setting the mosi bit, since to clear the display it is always zero, so the routine only needs to toggle the sck bit the appropriate number of times. I"m grateful to Thomas Scherer for suggesting this.
This library will work with displays based on the ST7735 which supports a maximum display size of 162x132, or the ST7789 and ILI9340/1 which support a maximum display size of 320x240. It includes parameters for the following colour TFT displays:
* These Adafruit displays conveniently all have the same edge-connector layout, so you can make a prototyping board or PCB that will take any of them, such as my Universal TFT Display Backpack.
Some of the AliExpress displays include a LDO 3.3V regulator, but not logic-level translation, so I recommend only interfacing them to a processor running from 3.3V.
The Adafruit displays all include an LDO 3.3V regulator and logic-level translation, so can be safely interfaced to processors powered from either 5V or 3.3V.
On the AliExpress red 160x128 display you need to connect the backlight pin to Vcc to turn it on. This doesn"t seem to be necessary with the other displays.
The library will probably support other TFT displays that use the same ST7735, ST7789, ILI9340/1 driver chips, but you may need to experiment with the parameters to get the image scaled and centered correctly.
The display needs to be connected to the microcontroller via four I/O lines: MOSI, SCK, CS, and DC. You can use any pins for these, but they should all be in the same port. You need to specify the port pin numbers of the pins you are using at the start of the Tiny TFT Graphics Library listing.
The 33kΩ pullup resistor from the display"s CS pin is optional; it is only needed on the AliExpress displays, and holds the chip select high to prevent the display from flickering while programming the ATtiny85.
The different displays are catered for by seven constants which specify the size of the display, the offsets relative to the area supported by the display driver, whether the display is inverted, the rotation value, and the order of the colours; for example:
By default the parameters give the correct orientation assuming you"re using the display with the header pins along the top, except in the case of the larger displays which have the header pins along the shorter edge, in which case the header pins are assumed to be on the left.
To check or adjust the values for each display you can run the TestChart() program, which draws a one-pixel border around the display area, and plots a red "F" to show the orientation:
The library will probably support other TFT displays that use the same driver chips, but you may need to experiment with the parameters to get the image scaled and centered correctly.
The foreground and background colours are defined by the two global variables fore and back. Initially these are set to White (0xFFFF) and Black (0) respectively:
The library includes basic graphics routines for plotting points and drawing lines. These work on a conventional coordinate system with the origin at lower left. For example, on the 80x160 display:
DrawRect() draws an outline rectangle andFillRect() draws a filled rectangle in the foreground colour with width w and height h, and the bottom left corner at the current drawing position:
DrawCircle() draws an outline circle andFillCircle() draws a filled circle in the foreground colour with radius radius, and the centre at the current drawing position:
By default the ATtiny85 runs at 1MHz. Choose Burn Bootloader to set the fuses for 8MHz operation, or your graphics will run rather slowly, then upload the program using an ISP (in-system programming) programmer such as Sparkfun"s Tiny AVR Programmer Board

I found the TFT screen and Uno on Banggood.com about a month ago and over the weekend I was messing with the pair and found the tftbmp draw code in the demo.. I extended it with the ability to read any bmp file on the SD card.. so all you do is put your bitmaps on the SD and plug it in.. Having to add/edit/recompile/reload the Uno everytime is BS... Here is my code:

Planar® CarbonLight™ VX Series is comprised of carbon fiber-framed indoor LED video wall and floor displays with exceptional on-camera visual properties and deployment versatility, available in 1.9 and 2.6mm pixel pitch (wall) and 2.6mm (floor).
From cinema content to motion-based digital art, Planar® Luxe MicroLED Displays offer a way to enrich distinctive spaces. HDR support and superior dynamic range create vibrant, high-resolution canvases for creative expression and entertainment. Leading-edge MicroLED technology, design adaptability and the slimmest profiles ensure they seamlessly integrate with architectural elements and complement interior décor.
From cinema content to motion-based digital art, Planar® Luxe Displays offer a way to enrich distinctive spaces. These professional-grade displays provide vibrant, high-resolution canvases for creative expression and entertainment. Leading-edge technology, design adaptability and the slimmest profiles ensure they seamlessly integrate with architectural elements and complement interior decor.
From cinema content to motion-based digital art, Planar® Luxe MicroLED Displays offer a way to enrich distinctive spaces. HDR support and superior dynamic range create vibrant, high-resolution canvases for creative expression and entertainment. Leading-edge MicroLED technology, design adaptability and the slimmest profiles ensure they seamlessly integrate with architectural elements and complement interior décor.
LED video wall solution with advanced video wall processing, off-board electronics, front serviceable cabinets and outstanding image quality available in 0.9mm pixel pitch
Planar® CarbonLight™ VX Series is comprised of carbon fiber-framed indoor LED video wall and floor displays with exceptional on-camera visual properties and deployment versatility, available in 1.9 and 2.6mm pixel pitch (wall) and 2.6mm (floor).
Carbon fiber-framed indoor LED video wall and floor displays with exceptional on-camera visual properties and deployment versatility for various installations including virtual production and extended reality.
a line of extreme and ultra-narrow bezel LCD displays that provides a video wall solution for demanding requirements of 24x7 mission-critical applications and high ambient light environments
Since 1983, Planar display solutions have benefitted countless organizations in every application. Planar displays are usually front and center, dutifully delivering the visual experiences and critical information customers need, with proven technology that is built to withstand the rigors of constant use.

Here’s a very cool TFT LCD display with 128 x 160 resolution and 18-bit color depth. The most unique feature of the screen is the ability to read back the display memory across the bi-directional data lines. This solves a big problem with most displays - the need for a lot of memory to create effects like transparency or overlapping windows. This is an ideal component to include in your next custom project to advance your embedded hardware/software skills.
The reason that we’re reselling this part rather than using it on a new product is because of a misunderstanding about the interface details. It uses a 3-wire SPI interface with 9-bit transfers. The first bit is used to indicate if the following byte is data or a command. While 9-bit transfers are supported by many modern microcontrollers (like the K66 or STM32 families), making that work with vanilla Arduino is unlikely to happen any time soon. Since SparkFun products need out-of-the-box support for Arduino the interface had to be restricted to bit-banging - just too slow for a display with this resolution!
So we’re handing off this cool part to people willing to stretch their comfort level and move beyond basic Arduino functionality. Using a modern microcontroller of your choice and taking advantage of 9-bit SPI transfers - or a full parallel bus - you can unlock the full power of this display. Not only are we giving this to you at the cost you’d expect from a manufacturer but we’re passing along some of the work we’ve done so far: You can find the mating FPC connector here and some SW/HW work in the documents tab.

SELECT `hook`,`plugin` FROM `cmf_hook_plugin` WHERE `status` = 1 AND `hook` IN ("app_begin","module_init","action_begin","view_filter","app_end","log_write","response_end","admin_init","home_init","send_mobile_verification_code","body_start","before_head_end","footer_start","before_footer","before_footer_end","before_body_end","left_sidebar_start","before_left_sidebar_end","right_sidebar_start","before_right_sidebar_end","comment","guestbook","switch_theme","after_content","before_content","log_write_done","switch_admin_theme","captcha_image") ORDER BY `list_order` ASC [ RunTime:0.000617s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/aboutUs" , `file` = "portal/index/about_us" , `name` = "关于我们页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"https:\\/\\/sinocrystal.net\\/wp-content\\/uploads\\/2020\\/12\\/Sinocrystal-factory-2.jpg\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"title\":{\"title\":\"\\u6807\\u9898\",\"type\":\"text\",\"value\":\"ABOUT US\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"video\":{\"title\":\"\\u89c6\\u9891\\u6a21\\u5757\",\"display\":1,\"vars\":{\"title\":{\"title\":\"\\u6807\\u9898\",\"type\":\"text\",\"value\":\"ABOUT US\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"video\":{\"title\":\"\\u89c6\\u9891\\u6587\\u4ef6\",\"value\":\"\",\"type\":\"file\"},\"iframe\":{\"title\":\"\\u5916\\u7f51\\u5d4c\\u5165\\u5f0f\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}},\"introduce\":{\"title\":\"\\u4ecb\\u7ecd\",\"value\":\"<h1 style="font-size: 32px; font-weight: bold; border-bottom: 2px solid rgb(204, 204, 204); padding: 0px 4px 0px 0px; text-align: left; margin: 0px 0px 10px;"><span style="font-size: 24px; color: rgb(255, 255, 255);"><\\/span><span style="font-size: 16px; font-style: italic; font-weight: bold; line-height: 18px;"><span style="font-style: italic; font-weight: bold; line-height: 18px; font-size: 24px; color: rgb(255, 255, 255);">LCD\\/OLED Display Manufacturer<\\/span><br\\/><\\/span><\\/h1><p>Sinocrystal Technology Co., Ltd. is a High-tech professional manufacturer of LCD Displays and OLED Displays with Capacitive Touch Panel or Resistive Touch Panel. Our products cover TFT LCD display, Mono TN\\/HTN\\/STN\\/FSTN\\/TN(VA) LCDs, COB\\/COG LCDs and OLED Display. We can also provide some value added service like: Development Kits(Driving Board), Adapt Board, Connector, Cover Lens etc.<\\/p><p><br\\/><\\/p><p>We have a stronger RD engineer team, which are all with over 15 years of experience. We provide the customization service, R&D, sale and after-sales service of LCD and OLED display products in different application areas like inMedical & Beauty, Industrial, Automotive, White Goods, Consumer, Smart Wearable and Test\\/Measurement applications. Our stringent quality assurance and investment in sophisticated in-house manufacturing methods and facilities enable us to deliver high-grade quality products. Our technical knowledge and dedication to R&D make us a trusted and preferred supplier of customizable solutions. We brought our customers quality products, timely delivery and great service in the past. Today, we are proud to keep doing better. We are continually striving to create value for customers and improve our capabilities.<\\/p>\",\"type\":\"content\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"thumbnail\":{\"title\":\"\\u89c6\\u9891\\u5c01\\u9762\",\"type\":\"image\",\"value\":\"default\\/20210514\\/8ddeccbe0b85422982c707b5b43ce652.png\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"left_title\":{\"title\":\"\\u5de6\\u4fa7\\u6807\\u9898\",\"type\":\"image\",\"value\":\"default\\/20210514\\/b185e1602fac154ca132375c93d47d6e.png\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"left_image\":{\"title\":\"\\u5de6\\u4fa7\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210514\\/250f2a4fdff97bb824d768536ffe451f.png\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"left_introduce\":{\"title\":\"\\u5de6\\u4fa7\\u4ecb\\u7ecd\",\"value\":\"By providing value added service and innovated products, to make liquid crystal display be the critical components in all kinds of applications.\",\"type\":\"textarea\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"right_title\":{\"title\":\"\\u53f3\\u4fa7\\u6807\\u9898\",\"type\":\"image\",\"value\":\"default\\/20210514\\/a7f25963d089c24d3151984e15781b12.png\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"right_image\":{\"title\":\"\\u53f3\\u4fa7\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210514\\/fdf9788646333e25ca3348788f1e418e.png\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"right_introduce\":{\"title\":\"\\u53f3\\u4fa7\\u4ecb\\u7ecd\",\"value\":\"By providing value added service and innovated products, to make liquid crystal display be the critical components in all kinds of applications.\",\"type\":\"textarea\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"album\":{\"title\":\"\\u516c\\u53f8\\u76f8\\u518c\\u6a21\\u677f\",\"display\":1,\"vars\":{\"albums\":{\"title\":\"\\u516c\\u53f8\\u76f8\\u518c\\u8bc1\\u4e66\\u76f8\\u518c\",\"value\":[{\"title\":\"default\\/20210519\\/625d4ec56ae7911aba062c1622d7bc76.jpg\"},{\"title\":\"default\\/20210519\\/be1c88e4819a576c5f7b201a237b1626.jpg\"},{\"title\":\"default\\/20210519\\/d1cee06b2201b50d4223b0eb8bbd4d5a.jpg\"},{\"title\":\"default\\/20210519\\/b988320a5be984a1c657ebaf7df61ab3.jpg\"},{\"title\":\"default\\/20210519\\/16ad49f519b0393b4b5b98e85c5ebdfc.jpg\"},{\"title\":\"default\\/20210519\\/7df96bf3d8dc4968bb85ec300e63a20b.jpg\"},{\"title\":\"default\\/20210519\\/6302cc746285099eccef5a81b7349506.jpg\"},{\"title\":\"default\\/20210519\\/174d2449ab7a39c4ec2f8694f0230330.jpg\"},{\"title\":\"default\\/20210519\\/3395fc644e995b52170699bc923fc0b9.jpg\"},{\"title\":\"default\\/20210519\\/f4d4bae43e51f267bf9d3bf466bfb48f.jpg\"}],\"type\":\"array\",\"item\":{\"title\":{\"title\":\"\\u56fe\\u7247\",\"value\":\"\",\"type\":\"image\",\"rule\":{\"require\":true}}},\"tip\":\"\\u76f8\\u518c\",\"rule\":{\"require\":true}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"LCD Display Supplier, LCD Display & Module Manufacturer\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"LCD Display, LCD Supplier, LCD Display & Module Manufacturer\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"Sinocrystal is a professional manufacturer of LCD & OLED displays and modules with 13 years experience. We can support LCD Display, TFT and OLED.\",\"rule\":{\"require\":false}}},\"display\":0}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"title\":{\"title\":\"\\u6807\\u9898\",\"type\":\"text\",\"value\":\"ABOUT US\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"video\":{\"title\":\"\\u89c6\\u9891\\u6a21\\u5757\",\"display\":1,\"vars\":{\"title\":{\"title\":\"\\u6807\\u9898\",\"type\":\"text\",\"value\":\"ABOUT US\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"video\":{\"title\":\"\\u89c6\\u9891\\u6587\\u4ef6\",\"value\":\"\",\"type\":\"file\"},\"iframe\":{\"title\":\"\\u5916\\u7f51\\u5d4c\\u5165\\u5f0f\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}},\"introduce\":{\"title\":\"\\u4ecb\\u7ecd\",\"value\":\"\",\"type\":\"content\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"thumbnail\":{\"title\":\"\\u89c6\\u9891\\u5c01\\u9762\",\"type\":\"image\",\"value\":\"\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"left_title\":{\"title\":\"\\u5de6\\u4fa7\\u6807\\u9898\",\"type\":\"image\",\"value\":\"\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"left_image\":{\"title\":\"\\u5de6\\u4fa7\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"left_introduce\":{\"title\":\"\\u5de6\\u4fa7\\u4ecb\\u7ecd\",\"value\":\"\",\"type\":\"textarea\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"right_title\":{\"title\":\"\\u53f3\\u4fa7\\u6807\\u9898\",\"type\":\"image\",\"value\":\"\",\"display\":1,\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"right_image\":{\"title\":\"\\u53f3\\u4fa7\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"right_introduce\":{\"title\":\"\\u53f3\\u4fa7\\u4ecb\\u7ecd\",\"value\":\"\",\"type\":\"textarea\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"album\":{\"title\":\"\\u516c\\u53f8\\u76f8\\u518c\\u6a21\\u677f\",\"display\":1,\"vars\":{\"albums\":{\"title\":\"\\u516c\\u53f8\\u76f8\\u518c\\u8bc1\\u4e66\\u76f8\\u518c\",\"value\":[],\"type\":\"array\",\"item\":{\"title\":{\"title\":\"\\u56fe\\u7247\",\"value\":\"\",\"type\":\"image\",\"rule\":{\"require\":true}}},\"tip\":\"\\u76f8\\u518c\",\"rule\":{\"require\":true}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `description` = "关于我们模板文件" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/about_us" [ RunTime:0.004053s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/aboutUsDetails" , `file` = "portal/index/about_us_details" , `name` = "关于我们详情页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/c50c66bf4ea4f1c13bf844aeb2767bf6.jpg\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `description` = "关于我们详情页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/about_us_details" [ RunTime:0.004856s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/applicationDetails" , `file` = "portal/index/application_details" , `name` = "应用场景详情页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"https:\\/\\/sinocrystal.net\\/wp-content\\/uploads\\/2020\\/12\\/Sinocrystal-products-1.jpg\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `description` = "应用场景详情页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/application_details" [ RunTime:0.003167s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/contactUs" , `file` = "portal/index/contact_us" , `name` = "联系我们页配置" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/729dffbd57cf57ef39adb919b478486a.jpg\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"config\":{\"title\":\"\\u914d\\u7f6e\\u9879\",\"display\":1,\"vars\":{\"Headquarters_Address\":{\"title\":\"\\u603b\\u90e8\\u5730\\u5740\",\"type\":\"textarea\",\"display\":1,\"value\":\"Head office Add: Room B205, Huachuangda Building, 49 Subdistrict, Baoan District, Shenzhen, China 518101\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"Factory_Address\":{\"title\":\"\\u5de5\\u5382\\u5730\\u5740\",\"type\":\"textarea\",\"display\":1,\"value\":\"2~3 Floor, Block B, Xinkeju Machinery Manufacturing Co., Ltd., No. 208, Meijing West Road, Songmushan, Dalang Town, Dongguan City\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"email\":{\"title\":\"\\u90ae\\u7bb1\",\"type\":\"text\",\"display\":1,\"value\":\"info@sinocrystal.net\",\"rule\":{\"require\":true}},\"fax\":{\"title\":\"Fax\",\"type\":\"text\",\"display\":1,\"value\":\"+8676984428017\",\"rule\":{\"require\":true}},\"Skype1\":{\"title\":\"Skype1\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"Skype2\":{\"title\":\"Skype2\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"Shenzhen_Office\":{\"title\":\"Shenzhen_Office\",\"type\":\"text\",\"display\":1,\"value\":\"+86 755 81452160\",\"rule\":{\"require\":true}},\"Dongguan_Office\":{\"title\":\"Dongguan_Office\",\"type\":\"text\",\"display\":1,\"value\":\"+86 769 84428017\",\"rule\":{\"require\":true}},\"Mobile1\":{\"title\":\"Mobile1\",\"type\":\"text\",\"display\":1,\"value\":\"18520624988\",\"rule\":{\"require\":true}},\"Mobile2\":{\"title\":\"Mobile2\",\"type\":\"text\",\"display\":1,\"value\":\"18672142916\",\"rule\":{\"require\":true}},\"Latitude\":{\"title\":\"\\u516c\\u53f8\\u7ecf\\u5ea6\",\"type\":\"text\",\"display\":1,\"value\":\"113.90832\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"longitude\":{\"title\":\"\\u516c\\u53f8\\u7eac\\u5ea6\",\"type\":\"text\",\"display\":1,\"value\":\"22.886069\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"Contact Us - Sinocrystal Technology Co., Ltd. \",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"Contact Sinocrystal, cd panel manufacturer,lcd manufacturers,taiwan lcd manufacturers,winstar,lcd panel module\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"Sinocrystal can provide you displays and modules with standard and customize service. Email\\/Call\\/Skype us if you have any project need support.\",\"rule\":{\"require\":false}}},\"display\":0}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"config\":{\"title\":\"\\u914d\\u7f6e\\u9879\",\"display\":1,\"vars\":{\"Headquarters_Address\":{\"title\":\"\\u603b\\u90e8\\u5730\\u5740\",\"type\":\"textarea\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"Factory_Address\":{\"title\":\"\\u5de5\\u5382\\u5730\\u5740\",\"type\":\"textarea\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"email\":{\"title\":\"\\u90ae\\u7bb1\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"fax\":{\"title\":\"Fax\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"Skype1\":{\"title\":\"Skype1\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"Skype2\":{\"title\":\"Skype2\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"Shenzhen_Office\":{\"title\":\"Shenzhen_Office\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"Dongguan_Office\":{\"title\":\"Dongguan_Office\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"Mobile1\":{\"title\":\"Mobile1\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"Mobile2\":{\"title\":\"Mobile2\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true}},\"Latitude\":{\"title\":\"\\u516c\\u53f8\\u7ecf\\u5ea6\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}},\"longitude\":{\"title\":\"\\u516c\\u53f8\\u7eac\\u5ea6\",\"type\":\"text\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `description` = "联系我们页配置" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/contact_us" [ RunTime:0.003593s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/customDesign" , `file` = "portal/index/custom_design" , `name` = "产品定制页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/0cecb7053a4b8e873de6e868d47c6068.png\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"Sinocrystal -Custom Displays, Custom LCD isplay Manufacturer\",\"rule\":{\"require\":true}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"custom lcd, custom lcd module, custom lcd display, custom lcd displays, custom display, custom LCD, custom lcd display manufacturer \",\"rule\":{\"require\":true}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"Sinocrystal can provide custom service for customer for TFT LCD, Mono LCD, Character lcd, graphic lcd, Segment lcd and OLED Displays.\",\"rule\":{\"require\":true}}},\"display\":1}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":true}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":true}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":true}}}}}}" , `description` = "产品定制页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/custom_design" [ RunTime:0.003228s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/ic" , `file` = "portal/index/ic" , `name` = "IC规格书" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"PDF download-IC datasheet_OLED driver_LCD manufacturer\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"IC datasheet, LCD manufacturer, datasheet PDF download\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"Sinocrystal Display is a reliable China LCD Display Manufacturer. We provide LCD Displays including Graphic LCD, Character LCD, TFT LCD, OLED, Custom Displays.\",\"rule\":{\"require\":false}}},\"display\":0}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `description` = "IC规格书模板文件" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/ic" [ RunTime:0.003376s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/icDetails" , `file` = "portal/index/ic_details" , `name` = "IC规格书详细页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `description` = "IC规格书详细页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/ic_details" [ RunTime:0.003384s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/index" , `file` = "portal/index/index" , `name` = "首页" , `more` = "{\"vars\":[],\"widgets\":{\"videos\":{\"title\":\"banner\\u6728\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210401\\/357e43c1cd207b5e91f493ac2e0bec7c.jpg\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"LCD Display, LCD Display Modules, LCD Panel Manufacturer Supplier\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\" lcd display, lcd displays, lcd module, lcd display module, lcd module display, display lcd, lcd manufacturer,lcd display manufacturer\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"Sinocrystal Display is a reliable China LCD Display Manufacturer. We provide LCD Displays including Graphic LCD, Character LCD, TFT LCD, OLED, Custom Displays.\",\"rule\":{\"require\":false}}},\"display\":0}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"videos\":{\"title\":\"banner\\u6728\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `description` = "首页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/index" [ RunTime:0.003691s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/inquiry" , `file` = "portal/index/inquiry" , `name` = "询价页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/0cecb7053a4b8e873de6e868d47c6068.png\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"Inquiry Now -- Sinocrystal display manufacturer\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"medical LCD, industrial lcd, industrial lcd display, display manufacturing company\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"Inquiry Sinocrystal -- medical LCD, industrial lcd, industrial lcd display, display manufacturing company\",\"rule\":{\"require\":false}}},\"display\":1}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `description` = "询价页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/inquiry" [ RunTime:0.003161s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/legal" , `file` = "portal/index/legal" , `name` = "法律声明页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210401\\/dc7f035a68bc6d8df8700f4556a8e72c.png\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":true}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":true}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":true}}}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":true}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":true}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":true}}}}}" , `description` = "法律声明页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/legal" [ RunTime:0.003387s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/news" , `file` = "portal/index/news" , `name` = "新闻页" , `more` = "{\"vars\":[],\"widgets\":{\"news\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/122ec869e18e6b3dbbcf0572978923c0.jpg\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"News - Sinocrystal Technology Co., Ltd\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"Sinocrystal news, Sinocrystal events, Display Industry News, lcm display,lcd manufacturer,lcd display manufacturer,lcd module manufacturer,lcd module manufacturers,lcd panel supplier\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"Sinocrystal news, Sinocrystal events, Display Industry News\",\"rule\":{\"require\":false}}},\"display\":0}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"news\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `description` = "新闻" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/news" [ RunTime:0.003491s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/newsDetails" , `file` = "portal/index/news_details" , `name` = "新闻详情页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/122ec869e18e6b3dbbcf0572978923c0.jpg\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `description` = "新闻详情页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/news_details" [ RunTime:0.003265s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/productDetails" , `file` = "portal/index/product_details" , `name` = "产品详情页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/0cecb7053a4b8e873de6e868d47c6068.png\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `description` = "产品详情页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/product_details" [ RunTime:0.003209s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/technology" , `file` = "portal/index/technology" , `name` = "技术页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/0e7c92d7d70de5211fff8b036c9f2646.jpg\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"Sinocrystal Display Technology\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"Sinocrystal, LCD Technology, OLED Technology, Backlight Module, LCD Color, FSTN LCD, HTN LCD, STN LCD, TN LCD, TFT, OLED Technology\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"Sinocrystal Technology including LCD Technology, OLED Technology, Backlight Module, LCD Color, FSTN LCD, HTN LCD, STN LCD, TN LCD, TFT, OLED Technology Articles.\",\"rule\":{\"require\":false}}},\"display\":1}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `description` = "技术页模板文件" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/technology" [ RunTime:0.003200s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/technologyDetails" , `file` = "portal/index/technology_details" , `name` = "技术详情页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/0e7c92d7d70de5211fff8b036c9f2646.jpg\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `description` = "技术详情页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/technology_details" [ RunTime:0.003620s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/video" , `file` = "portal/index/video" , `name` = "视频页" , `more` = "{\"vars\":[],\"widgets\":{\"videos\":{\"title\":\"\\u89c6\\u9891\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/1eea4b4c390bd46929e39056a0cec728.png\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"Sinocrystal, Sinocrystal LCD, Sino displays\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"TFT LCD, OLED Module,\\u00a0 Smart Display,\\u00a0 Graphic LCD,\\u00a0 Character LCD\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"Sinocrystal Display - Product Vedio, How to operate Sinocrystal display Video, Sinocrystal workshop Video, Sinocrystal OLED, STN, TFT New products introduction Video.\",\"rule\":{\"require\":false}}},\"display\":1}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"videos\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `description` = "视频页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/video" [ RunTime:0.003451s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/videoDetails" , `file` = "portal/index/video_details" , `name` = "视频详情页" , `more` = "{\"vars\":[],\"widgets\":{\"videos\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"default\\/20210407\\/1eea4b4c390bd46929e39056a0cec728.png\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"videos\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}}}}" , `description` = "视频详情页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/video_details" [ RunTime:0.002975s ]
UPDATE `cmf_theme_file` SET `theme` = "hzj" , `action` = "portal/index/websiteMap" , `file` = "portal/index/website_map" , `name` = "网站地图页" , `more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `config_more` = "{\"vars\":[],\"widgets\":{\"banner\":{\"title\":\"banner\\u6a21\\u5757\",\"display\":1,\"vars\":{\"image\":{\"title\":\"\\u56fe\\u7247\",\"type\":\"image\",\"display\":1,\"value\":\"\",\"rule\":{\"require\":true},\"message\":{\"require\":\"\\u4e0d\\u80fd\\u4e3a\\u7a7a\"}}}},\"seo\":{\"title\":\"SEO\\u6a21\\u5757\",\"vars\":{\"seo_title\":{\"title\":\"SEO\\u6807\\u9898\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_keywords\":{\"title\":\"SEO\\u5173\\u952e\\u5b57\",\"type\":\"text\",\"value\":\"\",\"rule\":{\"require\":false}},\"seo_description\":{\"title\":\"SEO\\u7f51\\u7ad9\\u63cf\\u8ff0\",\"type\":\"textarea\",\"value\":\"\",\"rule\":{\"require\":false}}}}}}" , `description` = "网站地图页" , `is_public` = 0 , `list_order` = "10" WHERE `theme` = "hzj" AND `file` = "portal/index/website_map" [ RunTime:0.003598s ]
![]()
Skills required for assembly - due to the fact that some of the pads on the SMD components are under the components, you cannot just use a soldering iron. You will need to use a hot plate or oven. We will send you a stencil as well as the kits so solder paste can be applied accurately to the boards.
Using the 26 way header on the board, it can plug directly onto a Raspberry Pi computer and connects to the RPi"s 0V, 5V and TX pins. (26 way Female header is not supplied with the display and must be bought seperately)
The display is a 160x128 pixel TFT colour display with 18-bit colour, a micro-SD card slot for reading/writing data and images, and an Arduino UNO ATmega328 chipset on the back of the board to control it. As well as displaying text, the serial graphic TFT allows you to draw lines, circles and boxes, change the foreground and background colours and display bitmap images from the SD card socket.
One has the matching pinout to connect directly to a Sparkfun FTDI Basic breakout boards for programming, and is also used for the serial connection to any microcontroller.
The other is a 26 pin Raspberry Pi header. This allows the unit to plug directly onto a Raspberry Pi and connects to the 0V, 5V and TX pins on the Raspberry Pi computer. (26 way female header not included - click here for suitable headers)
The ATmega328 chip on the board is loaded with the Arduino UNO bootloader, so you can easily update the serial firmware for driving the screen or even use it as a standalone Arduino board with built in TFT display. The serial firmware sketch uses up 24k of the available 32k on-board so there is 8k left for your programming.
The ATmega328 uses SPI to communicate with TFT display so is superfast. We have used the excellent 1.8in TFT screen from Adafruit which has a wide viewing angle (unlike STN displays), high-quality colour and a high refresh rate. A full graphics library and example code for Arduino is freely available (see links at the bottom of page).
A micro-SD card slot is provided on the board. This can be used to load bitmap graphics for display on the screen but is not limited to that function. It can be used by the Arduino for any file input/output.
Commands are sent to the Serial TFT display by sending the ESC character (decimal 27, hex 0x1B), then the command sequence and then finally decimal 255 (0xFF) to terminate the command. (See example programs at bottom of page)

The 1.8″ display has 128×160 color pixels. Unlike the low cost “Nokia 6110″ and similar LCD displays, which are CSTN type and thus have poor color and slow refresh, this display is a true TFT! The TFT driv
Ms.Josey
Ms.Josey