[vc_row][vc_column width=”1/1″][vc_tour][vc_tab title=”Introduction” tab_id=”1394068994-1-1″][vc_column_text]Electronic paper, e-paper and electronic ink are display technologies which are designed to mimic the appearance of ordinary ink on paper. Unlike conventional backlit flat panel displays which emit light, electronic paper displays reflect light like ordinary paper, theoretically making it more comfortable to read, and giving the surface a wider viewing angle compared to conventional displays. The contrast ratio in available displays as of 2008 might be described as similar to that of newspaper, though newly developed displays are slightly better. An ideal e-paper display can be read in direct sunlight without the image appearing to fade.
There are some updates on this version.
- Has 5V input to solve when displaying “pcDuino” on the E-Paper Shield the pcDuino will reboot.
- At the first version the SPI interface cross the Arduino SPI, we fix this issue, now we can use hard SPI interface, improved display speed.
[/vc_column_text][/vc_tab][vc_tab title=”Wiring Diagram” tab_id=”1394068994-2-52″][vc_column_text]
Just plug E-paper Shield to pcDuino or Arduino[/vc_column_text][/vc_tab][vc_tab title=”Experimental introduction” tab_id=”1394073266280-2-6″][vc_column_text]This experiment is let E-Paper Shield display “pcDuino”
void ClearScring(void) { bool DeviceStatus; DeviceStatus = digitalRead(STATUS_PIN); //Record the status before sending digitalWrite(CS_PIN,LOW);//Low CS signal SpiExchangeByte(3); //Send commands while(digitalRead(STATUS_PIN) == DeviceStatus)//Judge and wait for module to idle { ; } digitalWrite(CS_PIN,HIGH);//High CS singal }
[/vc_column_text][/vc_tab][vc_tab title=”Dowanload” tab_id=”1394080249972-3-10″][vc_column_text]Download epdtest
[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row]
Leave a Reply
You must be logged in to post a comment.