Last time I bought couple of accessories for my Raspberry Pi3 from the bookstore in Shamshuipo. >上次在深水埗那書店買了幾件配件給我的樹莓派。  Let see what they are: First came a Lego-style box for Raspberry Pi3, look at the openings, they were customized for Pi 3. >讓我們仔細看看:先來是樂高積木款式的盒子,看看那些口子就知道這是pi 3 專用的。  Just need to align the holes on circuit board with the poles on the case, it was fairly easy to put Pi 3 in the case. This was how it looks like afterward. >只需要將電路板上的小孔對準盒中的小棒子,就可以把樹莓派安裝到盒子中。完成後就是這個樣子。     The other 2 accessories were one integrated 20x4 LCD display and some female-to-female breadboard cables. >另外兩件配件是一塊經已整合好的20x4液晶顯示板和一些麵包板連接線。     I was going to connect this LCD to Pi3 and use it for displaying of text. First of all I had to connect it to Pi3. The LCD already has a I2C LCD Controller integrated, I only need to connect the 4 pins of the controller to the GPIO pins of Pi3 using following mapping : | LCD Pin # | Pi3 GPIO Pin # | |:----------:|:--------------:| | GND | PIN 6 | | VCC | PIN 2 | | SDA | PIN 3 | | SCL | PIN 5 | >我想把液晶顯示板接到樹莓派上作為顯示之用。所以我因為液晶顯示板已經整合了控制器,所以我只需根據上面的針腳配置表將它接到樹莓派的GPIO針腳上。   Then I had to enable i2c on Pi3. From Command Line type : sudo raspi-config >先要開啟在樹莓派上的i2c 支援,在命令行鍵入上面的命令  Complete following steps: * Select "Interfacing Options" * Select "I2C" * Select "Yes" * Select "Ok" Then select "Finish" to quit raspi-config. >完成上面的步驟之後就選"Finish"去離開。     Then I have to install python i2c utilities "python-smbus" & "i2c-tools" by typing following commands in Command Line: * sudo apt-get update * sudo apt-get install -y python-smbus i2c-tools >在命令行打入上面的命令去安裝 python 應用 "python-smbus" 和 "i2c-tools"。 I tested the LCD hardware by * sudo i2cdetect -y 1 利用上面的命令去測驗液晶顯示板  This showed the LCD was connected to address 0x3f. >可以見到液晶顯示板已經連接到記憶地址0x3f。 In order to talk to the LCD, python libraries were needed. Using following to steps to create the libraries: >要用上液晶顯示板,先要有相對應的python代碼庫。利用下面的命令去建立兩個檔案: * sudo nano i2c_lib.py type following in the file: >把下面的代碼輸入到檔案中: ~~~python import smbus from time import * class i2c_device: def __init__(self, addr, port=1): self.addr = addr self.bus = smbus.SMBus(port) # Write a single command def write_cmd(self, cmd): self.bus.write_byte(self.addr, cmd) sleep(0.0001) # Write a command and argument def write_cmd_arg(self, cmd, data): self.bus.write_byte_data(self.addr, cmd, data) sleep(0.0001) # Write a block of data def write_block_data(self, cmd, data): self.bus.write_block_data(self.addr, cmd, data) sleep(0.0001) # Read a single byte def read(self): return self.bus.read_byte(self.addr) # Read def read_data(self, cmd): return self.bus.read_byte_data(self.addr, cmd) # Read a block of data def read_block_data(self, cmd): return self.bus.read_block_data(self.addr, cmd) ~~~ And other file | 第二個檔案: * sudo nano lcddriver.py Type following in the file: >把下面的代碼輸入到檔案中: ~~~python import i2c_lib from time import * # LCD Address ADDRESS = 0x3f # commands LCD_CLEARDISPLAY = 0x01 LCD_RETURNHOME = 0x02 LCD_ENTRYMODESET = 0x04 LCD_DISPLAYCONTROL = 0x08 LCD_CURSORSHIFT = 0x10 LCD_FUNCTIONSET = 0x20 LCD_SETCGRAMADDR = 0x40 LCD_SETDDRAMADDR = 0x80 # flags for display entry mode LCD_ENTRYRIGHT = 0x00 LCD_ENTRYLEFT = 0x02 LCD_ENTRYSHIFTINCREMENT = 0x01 LCD_ENTRYSHIFTDECREMENT = 0x00 # flags for display on/off control LCD_DISPLAYON = 0x04 LCD_DISPLAYOFF = 0x00 LCD_CURSORON = 0x02 LCD_CURSOROFF = 0x00 LCD_BLINKON = 0x01 LCD_BLINKOFF = 0x00 # flags for display/cursor shift LCD_DISPLAYMOVE = 0x08 LCD_CURSORMOVE = 0x00 LCD_MOVERIGHT = 0x04 LCD_MOVELEFT = 0x00 # flags for function set LCD_8BITMODE = 0x10 LCD_4BITMODE = 0x00 LCD_2LINE = 0x08 LCD_1LINE = 0x00 LCD_5x10DOTS = 0x04 LCD_5x8DOTS = 0x00 # flags for backlight control LCD_BACKLIGHT = 0x08 LCD_NOBACKLIGHT = 0x00 En = 0b00000100 # Enable bit Rw = 0b00000010 # Read/Write bit Rs = 0b00000001 # Register select bit class lcd: #initializes objects and lcd def __init__(self): self.lcd_device = i2c_lib.i2c_device(ADDRESS) self.lcd_write(0x03) self.lcd_write(0x03) self.lcd_write(0x03) self.lcd_write(0x02) self.lcd_write(LCD_FUNCTIONSET | LCD_2LINE | LCD_5x8DOTS | LCD_4BITMODE) self.lcd_write(LCD_DISPLAYCONTROL | LCD_DISPLAYON) self.lcd_write(LCD_CLEARDISPLAY) self.lcd_write(LCD_ENTRYMODESET | LCD_ENTRYLEFT) sleep(0.2) # clocks EN to latch command def lcd_strobe(self, data): self.lcd_device.write_cmd(data | En | LCD_BACKLIGHT) sleep(.0005) self.lcd_device.write_cmd(((data & ~En) | LCD_BACKLIGHT)) sleep(.0001) def lcd_write_four_bits(self, data): self.lcd_device.write_cmd(data | LCD_BACKLIGHT) self.lcd_strobe(data) # write a command to lcd def lcd_write(self, cmd, mode=0): self.lcd_write_four_bits(mode | (cmd & 0xF0)) self.lcd_write_four_bits(mode | ((cmd << 4) & 0xF0)) # put string function def lcd_display_string(self, string, line): if line == 1: self.lcd_write(0x80) if line == 2: self.lcd_write(0xC0) if line == 3: self.lcd_write(0x94) if line == 4: self.lcd_write(0xD4) for char in string: self.lcd_write(ord(char), Rs) # clear lcd and set to home def lcd_clear(self): self.lcd_write(LCD_CLEARDISPLAY) self.lcd_write(LCD_RETURNHOME) ~~~ Make sure the i2C address in this file is set to #3f. >記得要把代碼中的i2c地址改成 #3f. ~~~python # LCD Address ADDRESS = 0x3f ~~~ Finally I could use the LCD dispaly by creating a python script file: >最後就是建立python檔案來顯示文字到液晶顯示板: * sudo nano display.py ~~~python # loading the class import lcddriver from time import * import time # lcd start lcd = lcddriver.lcd() # this command clears the display (captain obvious) lcd.lcd_clear() # clock = time() actions = ['Follow', ' Vote', ' Resteem'] action1 = "" print ("Start : %s" % time.ctime()) # now we can display some characters (text, line) lcd.lcd_display_string("Hello Steemit !", 1) lcd.lcd_display_string("This is @guyverckw", 2) lcd.lcd_display_string(" Please ", 3) for action in actions : action1 = action1 + action lcd.lcd_display_string(action1 , 4) time.sleep( 2 ) print ("End : %s" % time.ctime()) ~~~ Then run the script | 執行代碼: * python display.py Then you should able to see this: >應該就能見到這樣:  I encountered a major problem when trying to make this works, there was nothing displayed on the LCD. After checking a lot of works from others, I found that it was the contrast of the LCD was not properly set. Contrast of it can be set at the switch on the controller: >我在這個過程中遇到最大的問題就是在液晶顯示板上看不見任何東西。經過大量翻查其他人的經驗,我發現原來是因為液晶顯示板的對比度設置得不好。只要在控制器上的這個開關上扭動一下,就可以改變對比度。  After contrast was adjusted correctly texts could be seen on LCD. >對比度設置妥當就能見到文字了。  This conclude my test with this 20x4 LCD panel. I will use it on other projects later. I will share them after they are done. Stay tuned. >液晶顯示板的初試驗完滿結束。我將會把它用於其他的項目上面。有機會再為大家分享。 *** #### 請關注!點讚!轉發!  #### Please Follow! Upvote! Resteem!  [兼賣樹莓派的書店 | Bookstore that sold Raspberry Pi parts](https://steemit.com/cn/@guyverckw/bookstore-that-sold-raspberry-pi) [樹莓派 3 開盒及初建分享 | Raspberry Pi 3 Open box and Setup](https://steemit.com/cn/@guyverckw/raspberry-pi-3-initial-setup) !steemitworldmap 22.331800 lat 114.161748 long d3scr
author | guyverckw |
---|---|
permlink | raspberry-pi-with-20x4-lcd |
category | cn |
json_metadata | {"tags":["cn","learning","raspberry","pi3","technology"],"image":["https://steemitimages.com/DQmW4ddBR6pTnJYCgnmYSyRN7YeK6a4jp4sfWA3tUM3BX64/B8BBE34A-6C81-45F0-AC44-21E16C5EFC8A.jpeg","https://steemitimages.com/DQmdC5ee4FjwWhVcypaa8Y5L7DSm6rr79pVXPWt8oqwzDJS/4BA2D1CE-484F-4D94-99AF-E12A27268BB5.jpeg","https://steemitimages.com/DQme8UhmoA8jQYm6BnavJEP4jUofprvVuLbvbdH87mmNys1/66CEDE09-A772-4AE9-860D-2F2A20C399C6.jpeg","https://steemitimages.com/DQmVnCtDwXrN866XGxx8cMY5MTsX8hrSmE656yA5CnGoH7p/D57BD1E1-777A-4B8E-B76D-9E13C1D8AE45.jpeg","https://steemitimages.com/DQmWERjEVwBCv9J8yEFxKFsDpQ8ExsBK3TzptWmFVRhSefb/20BD6175-3CF7-4FE4-9D45-A4E3CF4C6EC9.jpeg","https://steemitimages.com/DQmYwfi4KD26RdiUYwxWdFL8dWNFkEx2jX4rab5XJgKq6GK/BAD8EFB9-1678-4C84-9DC7-49B6BB84AF92.jpeg","https://steemitimages.com/DQmVA5j1JYGGvfykv78deDfAkczScShmRuFGqM4LW4vvt3Z/3FDD41AA-8EC8-4B6E-9807-B37BF090E151.jpeg","https://steemitimages.com/DQmVbQJhWx6dodooeZ7T6QweUPxMJBPNx3hAhQ4CivY81wo/50624029-F748-4DF5-B1D6-887B8D76C9EE.jpeg","https://steemitimages.com/DQmU1CnjsEgju8r7Wg1fAYa8C5R3SzpZetpzJXbwEkEHbNK/CA89D61B-55EF-44AE-87A4-72FFCB8463E3.jpeg","https://steemitimages.com/DQmPSSyJvxQ6Q51JbfyxCxwhHjFS9GuiQnFa74uYrpeFNvV/DC7B6DC6-13CB-447E-B9A2-C4779C2EC0D8.jpeg","https://steemitimages.com/DQmP2n8YenUHCg1LYa5hqWChQDrQxxeupjXq76s3KSCLANr/CC78023A-868C-4363-A416-E4BA1D038705.jpeg","https://steemitimages.com/DQmQkJaqcZMfq3Na6LmQwFTR7oCaRFrJ4bjMTKWrNjXUUeF/25777C33-04E8-45BD-B11E-512B8ABA0C5E.jpeg","https://steemitimages.com/DQmao8rCq5gUMBVwcuEmD4KJmKTc9k6QW4a14a3V29JVjo7/79D813BF-AED2-4EB2-94A7-BB1441AB7A03.jpeg","https://steemitimages.com/DQmR8jxbdBjARea9w2mvRaMjnqF4cDj3GRxr4ko9uDkoz13/6171BDC7-9D04-4101-A717-B02734B63F25.jpeg","https://steemitimages.com/DQmeV3iAJYQnQ4phmnp3WUN2RdQ8EiRBra5Tnk7AeTujofq/87B8694E-2600-4493-8E4E-1EA890F9219E.jpeg","https://steemitimages.com/DQmW8M6e2s4H54UP9NHzJGAxCvTAVuCd1QfrigEkXqgbisw/C3AF0291-A8C1-4345-8BFB-FC8165A85282.jpeg","https://steemitimages.com/DQmRi1tRmPCjR9LYGFpE5UGwDyijFXNT4ud9HvpfD2BJCqN/4920F615-224B-40D0-9985-1AD7DD8578AF.jpeg","https://steemitimages.com/DQmPjYBaJ8TmFBs5ZW9usGXtGJujy7noYqdmEybnwjQ3ynn/372C6B75-FF66-4B45-97A5-0B6AE29DC203.jpeg","https://steemitimages.com/DQmSRiMqrQ8FtAyM6TaiqB2RtKjJEmR9asmfgpmxuuWQ2Kg/0B4638DE-6672-4AB6-99F4-0CF216CE1B85.gif","https://steemitimages.com/DQmP2n8YenUHCg1LYa5hqWChQDrQxxeupjXq76s3KSCLANr/8731A3A3-3BAA-4900-97C6-1ED33982DCE7.jpeg","https://steemitimages.com/DQmbBEpLbpitmDCCh9HVBLRWYp83s6a4J5iXDz9vKNnxaBn/FE267572-12B5-453C-8DB6-DFEF8290FE0A.jpeg","https://steemitimages.com/DQmfP2uETiLCBUUTKbgsubWJwDzLwgNJgm1m4bS5Ej4reyi/IMG_1080.JPG"],"links":["https://steemit.com/cn/@guyverckw/bookstore-that-sold-raspberry-pi","https://steemit.com/cn/@guyverckw/raspberry-pi-3-initial-setup"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-10-21 17:30:57 |
last_update | 2017-10-22 02:22:12 |
depth | 0 |
children | 22 |
last_payout | 2017-10-28 17:30:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 47.959 HBD |
curator_payout_value | 13.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11,176 |
author_reputation | 121,609,723,418,181 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,235,368 |
net_rshares | 26,865,341,329,616 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 6,832,457,321,900 | 35% | ||
cryptoctopus | 0 | 1,419,658,082,191 | 30% | ||
rok-sivante | 0 | 1,173,270,982,626 | 100% | ||
grandpere | 0 | 70,746,984,036 | 30% | ||
robrigo | 0 | 209,972,907,587 | 100% | ||
freeyourmind | 0 | 5,887,614,406 | 100% | ||
biophil | 0 | 29,557,531,413 | 100% | ||
fundurian | 0 | 45,190,039,073 | 25% | ||
arcange | 0 | 24,235,741,424 | 10% | ||
ubg | 0 | 204,624,685 | 1% | ||
raphaelle | 0 | 3,657,790,872 | 10% | ||
cryptoninja | 0 | 678,578,831 | 7% | ||
snowflake | 0 | 4,700,024,867 | 100% | ||
tumutanzi | 0 | 1,273,796,103,062 | 8% | ||
cornerstone | 0 | 383,944,990,647 | 33% | ||
justyy | 0 | 80,915,026,839 | 22.17% | ||
nc-mgtow | 0 | 2,516,358,598 | 100% | ||
happyukgo | 0 | 512,100,453 | 35% | ||
toyman | 0 | 0 | 100% | ||
ozymandias | 0 | 602,960,536 | 100% | ||
lydiachan | 0 | 19,129,656,459 | 40% | ||
someonewhoisme | 0 | 5,675,661,254 | 100% | ||
corvuscoraxx | 0 | 72,318,332 | 6.84% | ||
macbaren | 0 | 30,229,849,830 | 30% | ||
hammadakhtar | 0 | 624,925,370 | 10% | ||
luna33 | 0 | 334,919,065 | 100% | ||
htliao | 0 | 4,029,787,412,586 | 24% | ||
redpill | 0 | 13,050,899,817 | 30% | ||
sequentialvibe | 0 | 1,397,010,143 | 2% | ||
ojaber | 0 | 27,715,494,194 | 100% | ||
susanlo | 0 | 52,648,568,768 | 80% | ||
cryptoemperor | 0 | 43,765,295,374 | 100% | ||
guyverckw | 0 | 121,050,713,415 | 60% | ||
nanosesame | 0 | 36,264,258,350 | 100% | ||
cpyjeffrey | 0 | 6,362,230,790 | 100% | ||
john.liao | 0 | 746,214,661 | 100% | ||
kenchung | 0 | 53,669,068,776 | 100% | ||
pakyeechan | 0 | 44,900,430,202 | 80% | ||
jeffreytong | 0 | 13,968,860,873 | 100% | ||
johnliao | 0 | 4,600,446,964 | 100% | ||
helloworld123 | 0 | 1,187,550,534 | 100% | ||
nuagnorab | 0 | 19,789,417,143 | 100% | ||
kitcat | 0 | 87,243,577,766 | 50% | ||
victorier | 0 | 104,434,770,248 | 100% | ||
linuslee0216 | 0 | 4,086,468,118,523 | 21% | ||
chl | 0 | 23,082,572,235 | 100% | ||
wilkinshui | 0 | 181,934,402,323 | 100% | ||
carobetc | 0 | 11,572,139,747 | 100% | ||
thomaskikansha | 0 | 65,705,802,151 | 100% | ||
chingyi | 0 | 4,808,070,494 | 100% | ||
mrjt | 0 | 2,246,969,334 | 100% | ||
dontstopmenow | 0 | 9,634,587,134 | 30% | ||
aaronli | 0 | 54,191,225,528 | 100% | ||
mahdiyari | 0 | 2,909,578,597 | 8% | ||
marylaw | 0 | 38,588,737,441 | 100% | ||
jenthedreamer | 0 | 2,786,813,417 | 100% | ||
tobykai | 0 | 6,853,233,521 | 100% | ||
pyc1512 | 0 | 619,520,000 | 100% | ||
krischy | 0 | 87,449,857,297 | 100% | ||
claratze | 0 | 624,304,164 | 100% | ||
biuiam | 0 | 30,203,894,419 | 100% | ||
kristytyxd | 0 | 1,704,096,510 | 100% | ||
carinewhy | 0 | 66,688,143,234 | 100% | ||
colinct | 0 | 1,505,278,954 | 100% | ||
gentlebot | 0 | 233,700,083,083 | 100% | ||
incrediblesnow | 0 | 6,463,787,256 | 100% | ||
thing-2 | 0 | 232,871,646,046 | 100% | ||
jpederson96 | 0 | 2,416,874,786 | 30% | ||
mcw | 0 | 37,833,039,297 | 100% | ||
sanzo | 0 | 605,496,188 | 100% | ||
blazing | 0 | 2,908,292,293 | 100% | ||
yuwineryyuvia | 0 | 2,282,029,677 | 100% | ||
boooster | 0 | 4,424,829,395 | 100% | ||
eason1117 | 0 | 621,960,106 | 100% | ||
votebooster | 0 | 617,302,270 | 100% | ||
catwomanteresa | 0 | 13,247,964,823 | 50% | ||
everrich | 0 | 620,879,852 | 100% | ||
kawaiiiiiiii030 | 0 | 1,892,720,987 | 100% | ||
powerfj | 0 | 5,135,190,065 | 50% | ||
nicolemoker | 0 | 5,211,574,363,186 | 25% | ||
idx | 0 | 7,353,944,111 | 35% | ||
techtek | 0 | 19,015,485,869 | 100% | ||
interactive | 0 | 5,840,232,968 | 100% | ||
hyplooper | 0 | 130,292,201 | 30% | ||
fr3eze | 0 | 11,785,322,395 | 37% | ||
john811 | 0 | 5,258,100,344 | 100% | ||
webresultat | 0 | 2,125,508,663 | 30% | ||
wuzupin | 0 | 178,300,897 | 30% | ||
yhhhhhhhhh | 0 | 3,270,049,392 | 100% | ||
deskart | 0 | 496,805,007 | 100% | ||
fawadnaseem | 0 | 564,043,708 | 100% | ||
tonygreene113 | 0 | 240,572,043 | 30% | ||
click3rs | 0 | 61,876,597 | 15% | ||
goodboyphilip | 0 | 41,328,441,223 | 100% | ||
rusinho027 | 0 | 556,996,387 | 30% | ||
primetimesports | 0 | 128,361,227 | 0.02% | ||
nijhum | 0 | 897,302,604 | 100% | ||
superbing | 0 | 2,299,699,876 | 35% | ||
dailyfortune | 0 | 1,435,847,481 | 35% | ||
mila00 | 0 | 185,227,711 | 30% | ||
connieleung | 0 | 4,742,762,388 | 100% | ||
abdelhamidtsouli | 0 | 207,847,261 | 30% | ||
xiaoshancun | 0 | 1,578,729,450 | 100% | ||
dailystats | 0 | 1,391,969,624 | 35% | ||
arek336 | 0 | 232,663,085 | 30% | ||
brendashockley | 0 | 95,669,100 | 25% | ||
dennisphillips | 0 | 95,669,100 | 25% | ||
gladyslui | 0 | 4,516,892,635 | 100% | ||
esaug | 0 | 593,723,712 | 30% | ||
brittuf | 0 | 19,326,702,475 | 15% | ||
vandadream | 0 | 1,278,360,605 | 100% | ||
lee26 | 0 | 595,617,300 | 100% | ||
ryankofi | 0 | 211,292,223 | 30% | ||
kawing | 0 | 618,309,842 | 100% | ||
sammarkjames | 0 | 1,026,274,006 | 30% | ||
ah-2002 | 0 | 134,875,827 | 30% | ||
jingmi | 0 | 1,505,540,571 | 100% | ||
riazalalvi | 0 | 104,057,167 | 100% | ||
fazlayrabby | 0 | 54,978,211 | 30% | ||
terencetze | 0 | 617,240,000 | 100% | ||
lifeisbulltrap | 0 | 618,104,017 | 100% | ||
keepup | 0 | 569,276,980 | 100% | ||
sultanuto | 0 | 151,959,566 | 30% | ||
michelleluilui | 0 | 617,240,000 | 100% | ||
stephenma26 | 0 | 1,160,576,655 | 100% | ||
zahidulhovon | 0 | 1,137,354,753 | 100% | ||
socket1312 | 0 | 1,056,113,066 | 100% |
Wow nice post
author | ashikbiswas01 |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171021t190740584z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-21 19:07:48 |
last_update | 2017-10-21 19:07:48 |
depth | 1 |
children | 0 |
last_payout | 2017-10-28 19:07:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 5,991,879,112,520 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,241,681 |
net_rshares | 9,481,929,073 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ashikbiswas01 | 0 | 9,481,929,073 | 100% |
Very good man
author | ashikbiswas01 |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171021t191601647z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-21 19:16:09 |
last_update | 2017-10-21 19:16:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-28 19:16:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 5,991,879,112,520 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,242,153 |
net_rshares | 0 |
That's looks a great buy :D
author | blazing |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t105653732z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 10:56:57 |
last_update | 2017-10-22 10:56:57 |
depth | 1 |
children | 1 |
last_payout | 2017-10-29 10:56:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.091 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 117,662,220,860,076 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,289,496 |
net_rshares | 41,553,392,282 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 41,553,392,282 | 20% |
Yes, it is fun.
author | guyverckw |
---|---|
permlink | re-blazing-re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t110108182z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 11:01:09 |
last_update | 2017-10-22 11:01:09 |
depth | 2 |
children | 0 |
last_payout | 2017-10-29 11:01:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 121,609,723,418,181 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,289,786 |
net_rshares | 0 |
like your post....
author | fahad290 |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t141216118z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 14:12:18 |
last_update | 2017-10-22 14:12:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-29 14:12:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 477,526,596,075 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,302,562 |
net_rshares | 40,431,695,383 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 40,431,695,383 | 20% |
are you a engineer
author | fawadnaseem |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171021t175852848z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-21 17:58:45 |
last_update | 2017-10-21 17:58:45 |
depth | 1 |
children | 1 |
last_payout | 2017-10-28 17:58:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.067 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 211,718,545,703 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,237,129 |
net_rshares | 40,020,162,119 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 40,020,162,119 | 20% |
I used to be, not anymore
author | guyverckw |
---|---|
permlink | re-fawadnaseem-re-guyverckw-raspberry-pi-with-20x4-lcd-20171021t190933279z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-21 19:09:36 |
last_update | 2017-10-21 19:09:36 |
depth | 2 |
children | 0 |
last_payout | 2017-10-28 19:09:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 121,609,723,418,181 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,241,795 |
net_rshares | 0 |
说难不难,说简单也不简单的小玩具啊。
author | fr3eze |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t070405802z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 07:04:09 |
last_update | 2017-10-22 07:04:09 |
depth | 1 |
children | 1 |
last_payout | 2017-10-29 07:04:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.081 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 62,201,653,753,684 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,276,170 |
net_rshares | 41,551,182,724 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 41,551,182,724 | 20% |
太容易就真的變成玩具了
author | guyverckw |
---|---|
permlink | re-fr3eze-re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t072015014z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 07:20:15 |
last_update | 2017-10-22 07:20:15 |
depth | 2 |
children | 0 |
last_payout | 2017-10-29 07:20:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 121,609,723,418,181 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,277,019 |
net_rshares | 0 |
<p>wow this really requires a lot of skill I do not think I can build this on my own.</p>
author | fury123 |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171021t231817578z |
category | cn |
json_metadata | {"tags":"cn","app":"esteem/1.0.0","format":"markdown+html"} |
created | 2017-10-21 18:18:30 |
last_update | 2017-10-21 18:18:30 |
depth | 1 |
children | 1 |
last_payout | 2017-10-28 18:18:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.085 HBD |
curator_payout_value | 0.027 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 6,610,638,415,250 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,238,443 |
net_rshares | 50,445,717,236 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 40,020,162,119 | 20% | ||
fury123 | 0 | 10,425,555,117 | 100% |
Frankly, follow exactly the steps in my post, it is not difficult to build the same thing. Give it a try.
author | guyverckw |
---|---|
permlink | re-fury123-re-guyverckw-raspberry-pi-with-20x4-lcd-20171021t190655820z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-21 19:06:57 |
last_update | 2017-10-21 19:06:57 |
depth | 2 |
children | 0 |
last_payout | 2017-10-28 19:06:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 121,609,723,418,181 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,241,636 |
net_rshares | 0 |
雖然完全看不明白,但是用那 Lego 組裝很有趣!👍🏻👍🏻
author | goodboyphilip |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171021t183803682z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-21 18:38:03 |
last_update | 2017-10-21 18:38:03 |
depth | 1 |
children | 1 |
last_payout | 2017-10-28 18:38:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 21,579,716,361,297 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,239,727 |
net_rshares | 40,020,162,119 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 40,020,162,119 | 20% |
找不到其他Lego配件,否則應該更有趣
author | guyverckw |
---|---|
permlink | re-goodboyphilip-re-guyverckw-raspberry-pi-with-20x4-lcd-20171021t190526527z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-21 19:05:30 |
last_update | 2017-10-21 19:05:30 |
depth | 2 |
children | 0 |
last_payout | 2017-10-28 19:05:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 121,609,723,418,181 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,241,542 |
net_rshares | 0 |
好繽紛的線! 希望之後可以看見你們都玩些什麼~ :D
author | lydiachan |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t150310118z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 15:03:09 |
last_update | 2017-10-22 15:03:09 |
depth | 1 |
children | 2 |
last_payout | 2017-10-29 15:03:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 38,600,108,764,289 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,306,133 |
net_rshares | 40,431,695,383 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 40,431,695,383 | 20% |
Yes, madam!
author | guyverckw |
---|---|
permlink | re-lydiachan-re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t155138291z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 15:51:39 |
last_update | 2017-10-22 15:51:39 |
depth | 2 |
children | 1 |
last_payout | 2017-10-29 15:51:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 121,609,723,418,181 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,309,689 |
net_rshares | 15,941,380,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lydiachan | 0 | 15,941,380,382 | 50% |
Nice!!! :D
author | lydiachan |
---|---|
permlink | re-guyverckw-re-lydiachan-re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t161016959z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 16:10:21 |
last_update | 2017-10-22 16:10:21 |
depth | 3 |
children | 0 |
last_payout | 2017-10-29 16:10:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 38,600,108,764,289 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,310,950 |
net_rshares | 0 |
Thanks for sharing..
author | mian290 |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t143235783z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 14:32:42 |
last_update | 2017-10-22 14:32:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-29 14:32:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 160,829,086,681 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,304,066 |
net_rshares | 0 |
Nice buy.
author | nijhum |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t194251848z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 19:42:00 |
last_update | 2017-10-22 19:42:00 |
depth | 1 |
children | 0 |
last_payout | 2017-10-29 19:42:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 374,629,992,415 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,325,361 |
net_rshares | 0 |
Upped!! Will you soon try SteemPi on it ? :)
author | techtek |
---|---|
permlink | re-guyverckw-raspberry-pi-with-20x4-lcd-20171021t234545052z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-21 23:45:48 |
last_update | 2017-10-21 23:45:48 |
depth | 1 |
children | 3 |
last_payout | 2017-10-28 23:45:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.073 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 28,283,249,927,543 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,254,422 |
net_rshares | 42,637,011,059 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 42,637,011,059 | 20% |
Actually, SteemPi is now on it already, just the LED part I not yet tested. After the LED part is done, I will post it.
author | guyverckw |
---|---|
permlink | re-techtek-re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t020227767z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 02:02:30 |
last_update | 2017-10-22 02:02:30 |
depth | 2 |
children | 2 |
last_payout | 2017-10-29 02:02:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 121,609,723,418,181 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,260,637 |
net_rshares | 18,635,176,152 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
techtek | 0 | 18,635,176,152 | 100% |
This is a test for the LED notification of Steempi.
author | guyverckw |
---|---|
permlink | re-guyverckw-re-techtek-re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t101425150z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 10:14:27 |
last_update | 2017-10-22 10:14:27 |
depth | 3 |
children | 0 |
last_payout | 2017-10-29 10:14:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 121,609,723,418,181 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,286,857 |
net_rshares | 0 |
Awesome :) I just bought steempi.com (you can see it in my latest post very happy :) ! )
author | techtek |
---|---|
permlink | re-guyverckw-re-techtek-re-guyverckw-raspberry-pi-with-20x4-lcd-20171022t020836299z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-10-22 02:08:39 |
last_update | 2017-10-22 02:08:39 |
depth | 3 |
children | 0 |
last_payout | 2017-10-29 02:08:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.088 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 28,283,249,927,543 |
root_title | "Raspberry Pi with 20x4 LCD - D.I.Y. Series (3) | 樹莓派 加上 20x4 液晶顯示 - 自己動手系列(3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,260,945 |
net_rshares | 41,418,810,743 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 41,418,810,743 | 20% |