create account

​ A Raspberry Pi based Steemit Notification Module by guyverckw

View this thread on: hive.blogpeakd.comecency.com
· @guyverckw · (edited)
$46.03
​ A Raspberry Pi based Steemit Notification Module
After I completed the python-version of LED notification which mimic the LED notification script of SteemPi, I started to work on the eSteem-style notification for Raspbian. That's what I just completed and put on Github.

It makes use of the Piston-Steem python library for capturing of Steemit events. The module will check if the events were related to the user. If yes, extract event information, check if it is an upvote or a comment. Should it be either of them, display the information on the event on the 20x4 LCD.

Currently, I am using the RPLCD python library to drive LCD. It supports both Python2 and Python3. This is important as the Piston-Steem library requires Python3, Therefore, support of python3 in RPLCD makes life much easier.

Tutorial on how to install required libraries csn be found here: [A Guide to Setup Raspberry Pi based Steemit Notification Module](https://steemit.com/utopian-io/@guyverckw/a-raspberry-pi-based-steemit-notification-module)

### How the module works
Basically, it monitors the STEEM Blockchain, when there is any activities on the user's account, it will grab it, check if it is an upvote or a comment. If yes, it will blink the LED as well as display upvote or comment information on the 20x4 LCD. Like this:

![3C6BCE45-3626-47B6-BD82-D1DE633C7994.gif](https://steemitimages.com/DQmb36Nj7NZ7zGkGjkaFEP4x1xkg8wPSGi8zwLm2gBCgoD6/3C6BCE45-3626-47B6-BD82-D1DE633C7994.gif)

***
Here is the [notification module on Github](https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi). Feel free to down it and play with it. Anyway suggestion and comments are welcomed!
***

~~~python
from piston.steem import Steem
from piston.account import Account
from RPLCD.i2c import CharLCD
import time
import RPi.GPIO as GPIO
import sys
~~~
~~~python
# initialize Steem
account_name = 'guyverckw'
account = Account(account_name)
steem = Steem()
# initialize LCD
lcd = CharLCD('PCF8574', 0x3f)
# Clear LCD
print('Clear LCD')
# Prepare LED indicator
GPIO.setmode(GPIO.BOARD)
GPIO.setup(11, GPIO.OUT, initial=GPIO.LOW)
# Set user account, no. of history retrieve everytime, transaction ID buffer array of 10 
first = 9999999999limit = 5
History = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
History_ID = 1.0
message = ' '
~~~
~~~python
# keep checking transactions
while True: 
   index = 0 
   print (History, History_ID)
# Get last 5 history, put ID into buffer array 
   for his in account.rawhistory(first, limit): 
      if History_ID == his[0]: 
         break 
      print('History ID: %d10.0' % History_ID) 
      print(his[1]['op']) 
      if his[1]['op'][0] == 'comment':	
         message = 'There is a comment from @' + his[1]['op'][1]['author'] 
      elif his[1]['op'][0] == 'vote': 
         if his[1]['op'][1]['author'] == account_name: 
            message = 'There is a vote from @' + his[1]['op'][1]['voter'] + ' of ' + str(his[1]['op'][1]['weight']/100) +'%' 
         else: 
            History[index] = his[0] 
            index += 1 
            continue 
         History[index] = his[0] 
         index += 1 
         print (message) 
         GPIO.output(11, GPIO.HIGH) lcd.clear() 
         lcd.write_string(message) time.sleep(1) 
         GPIO.output(11, GPIO.LOW)
      History_ID = History[0] 
~~~
***
### Roadmap
I am going to expand the devices supported to a few more LCD and LED devices. This would allow users to use it on different hardware application (with different form factor HW designs).
I will in parallel to work on an integration of the module with SteemPi. 

Stay tuned!

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@guyverckw/42avj4-a-raspberry-pi-based-steemit-notification-module">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 46 others
properties (23)
authorguyverckw
permlink42avj4-a-raspberry-pi-based-steemit-notification-module
categoryutopian-io
json_metadata"{"community":"utopian","app":"steemit/0.1","format":"markdown","repository":{"id":112172162,"name":"Steemit-Notification-Module-for-Raspberry-Pi","full_name":"guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","owner":{"login":"guyverckw","id":33108899,"avatar_url":"https://avatars0.githubusercontent.com/u/33108899?v=4","gravatar_id":"","url":"https://api.github.com/users/guyverckw","html_url":"https://github.com/guyverckw","followers_url":"https://api.github.com/users/guyverckw/followers","following_url":"https://api.github.com/users/guyverckw/following{/other_user}","gists_url":"https://api.github.com/users/guyverckw/gists{/gist_id}","starred_url":"https://api.github.com/users/guyverckw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guyverckw/subscriptions","organizations_url":"https://api.github.com/users/guyverckw/orgs","repos_url":"https://api.github.com/users/guyverckw/repos","events_url":"https://api.github.com/users/guyverckw/events{/privacy}","received_events_url":"https://api.github.com/users/guyverckw/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","description":"Notification of your Steemit account activites on Raspberry Pi platform","fork":false,"url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","forks_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/forks","keys_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/keys{/key_id}","collaborators_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/teams","hooks_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/hooks","issue_events_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/issues/events{/number}","events_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/events","assignees_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/assignees{/user}","branches_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/branches{/branch}","tags_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/tags","blobs_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/refs{/sha}","trees_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/trees{/sha}","statuses_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/statuses/{sha}","languages_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/languages","stargazers_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/stargazers","contributors_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/contributors","subscribers_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/subscribers","subscription_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/subscription","commits_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/commits{/sha}","git_commits_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/commits{/sha}","comments_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/comments{/number}","issue_comment_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/issues/comments{/number}","contents_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/contents/{+path}","compare_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/compare/{base}...{head}","merges_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/merges","archive_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/downloads","issues_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/issues{/number}","pulls_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/pulls{/number}","milestones_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/milestones{/number}","notifications_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/labels{/name}","releases_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/releases{/id}","deployments_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/deployments","created_at":"2017-11-27T08:58:58Z","updated_at":"2017-11-27T18:12:24Z","pushed_at":"2017-11-28T09:39:05Z","git_url":"git://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi.git","ssh_url":"git@github.com:guyverckw/Steemit-Notification-Module-for-Raspberry-Pi.git","clone_url":"https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi.git","svn_url":"https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","score":10.299825},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemit","raspberrypi","hk"],"links":["https://steemit.com/utopian-io/@guyverckw/a-raspberry-pi-based-steemit-notification-module","https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","https://utopian.io/utopian-io/@guyverckw/42avj4-a-raspberry-pi-based-steemit-notification-module"],"image":["https://steemitimages.com/DQmb36Nj7NZ7zGkGjkaFEP4x1xkg8wPSGi8zwLm2gBCgoD6/3C6BCE45-3626-47B6-BD82-D1DE633C7994.gif"]}"
created2017-12-11 05:22:48
last_update2017-12-11 09:28:15
depth0
children32
last_payout2017-12-18 05:22:48
cashout_time1969-12-31 23:59:59
total_payout_value33.780 HBD
curator_payout_value12.253 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,768
author_reputation121,609,723,418,181
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries
0.
accountcnts
weight10
1.
accountdamla
weight23
2.
accountfreedom
weight658
3.
accountknowledges
weight48
4.
accountnetuoso
weight6
5.
accounttransisto
weight70
6.
accountutopian-io
weight536
7.
accountxeldal
weight27
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,073,651
net_rshares11,917,457,208,599
author_curate_reward""
vote details (110)
@aburmeseabroad ·
$0.14
it will be such an amazing project! all the best..
👍  
properties (23)
authoraburmeseabroad
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t054833106z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 05:48:33
last_update2017-12-11 05:48:33
depth1
children0
last_payout2017-12-18 05:48:33
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation10,522,171,851,652
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,075,476
net_rshares31,456,302,320
author_curate_reward""
vote details (1)
@ace108 ·
$0.14
couple of typo:
1. notificationwhich  - missing space
2. Toturial  - Tutorial
👍  
properties (23)
authorace108
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t063438389z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 06:34:39
last_update2017-12-11 06:34:39
depth1
children6
last_payout2017-12-18 06:34:39
cashout_time1969-12-31 23:59:59
total_payout_value0.106 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation1,228,751,080,582,895
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,078,947
net_rshares32,823,967,638
author_curate_reward""
vote details (1)
@guyverckw ·
$0.06
Corrected, thanks a lot.
👍  
properties (23)
authorguyverckw
permlinkre-ace108-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t090804380z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 09:08:03
last_update2017-12-11 09:08:03
depth2
children1
last_payout2017-12-18 09:08:03
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation121,609,723,418,181
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,090,738
net_rshares13,399,079,838
author_curate_reward""
vote details (1)
@ace108 ·
$0.14
You're welcome
👍  
properties (23)
authorace108
permlinkre-guyverckw-re-ace108-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t092940106z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 09:29:42
last_update2017-12-11 09:29:42
depth3
children0
last_payout2017-12-18 09:29:42
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation1,228,751,080,582,895
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,092,396
net_rshares31,471,508,344
author_curate_reward""
vote details (1)
@livinguktaiwan ·
$0.66
Githut >>> Github
👍  
properties (23)
authorlivinguktaiwan
permlinkre-ace108-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t092542549z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 09:25:42
last_update2017-12-11 09:25:42
depth2
children3
last_payout2017-12-18 09:25:42
cashout_time1969-12-31 23:59:59
total_payout_value0.492 HBD
curator_payout_value0.164 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation1,676,561,032,825,177
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,092,106
net_rshares150,518,368,958
author_curate_reward""
vote details (1)
@ace108 ·
Vying for spellchecker championship. :-)
properties (22)
authorace108
permlinkre-livinguktaiwan-re-ace108-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t093100306z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 09:31:00
last_update2017-12-11 09:31:00
depth3
children2
last_payout2017-12-18 09:31:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation1,228,751,080,582,895
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,092,512
net_rshares0
@anikearn ·
nice article
properties (22)
authoranikearn
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t083129147z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 08:31:36
last_update2017-12-11 08:31:36
depth1
children0
last_payout2017-12-18 08:31:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation279,291,314,932,485
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,087,844
net_rshares0
@bipul ·
Great works and good update
properties (22)
authorbipul
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171218t075351565z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-18 07:53:54
last_update2017-12-18 07:53:54
depth1
children0
last_payout2017-12-25 07:53:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation2,897,172,304,197
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,987,530
net_rshares0
@blazing ·
$0.14
wow that's going to be cool never missing an update again :D
👍  
properties (23)
authorblazing
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t100847771z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 10:08:51
last_update2017-12-11 10:08:51
depth1
children0
last_payout2017-12-18 10:08:51
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation117,662,220,860,076
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,095,474
net_rshares31,471,508,344
author_curate_reward""
vote details (1)
@brothermic ·
$0.13
haha I don't get everything you say but still I like the project!
👍  
properties (23)
authorbrothermic
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t163400532z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 16:34:00
last_update2017-12-11 16:34:00
depth1
children0
last_payout2017-12-18 16:34:00
cashout_time1969-12-31 23:59:59
total_payout_value0.120 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation70,127,808,776,053
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,133,452
net_rshares30,103,673,791
author_curate_reward""
vote details (1)
@codingdefined ·
$0.14
Thank you for the contribution. It has been approved. That's a great work, bdw I checked the code and find out there is no error handling done. So are you planning to handle the error because if the error happens it will stop, you need to start all over again.

You can contact us on [Discord](https://discord.gg/UCvqCsx).
**[[utopian-moderator]](https://utopian.io/moderators)**
👍  
properties (23)
authorcodingdefined
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t091938656z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/1.0.0"}
created2017-12-11 09:19:42
last_update2017-12-11 09:19:42
depth1
children1
last_payout2017-12-18 09:19:42
cashout_time1969-12-31 23:59:59
total_payout_value0.110 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length379
author_reputation531,776,831,872,718
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,091,637
net_rshares31,456,741,095
author_curate_reward""
vote details (1)
@guyverckw ·
Thanks for reminding, will add error handling in later.
properties (22)
authorguyverckw
permlinkre-codingdefined-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t092101244z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 09:21:00
last_update2017-12-11 09:21:00
depth2
children0
last_payout2017-12-18 09:21:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation121,609,723,418,181
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,091,749
net_rshares0
@cutiepie ·
$0.12
interesting this is but i have not much how to implement it lolzzz
👍  
properties (23)
authorcutiepie
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t132846569z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 13:28:48
last_update2017-12-11 13:28:48
depth1
children0
last_payout2017-12-18 13:28:48
cashout_time1969-12-31 23:59:59
total_payout_value0.094 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation5,599,036,868,065
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,113,418
net_rshares28,735,324,982
author_curate_reward""
vote details (1)
@fahad290 ·
good post..
properties (22)
authorfahad290
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t132545792z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 13:25:48
last_update2017-12-11 13:25:48
depth1
children0
last_payout2017-12-18 13:25:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation477,526,596,075
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,113,085
net_rshares0
@faisal79 ·
that's cool....nice steem post.....
very helpful
properties (22)
authorfaisal79
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t135024241z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 13:50:48
last_update2017-12-11 13:50:48
depth1
children0
last_payout2017-12-18 13:50:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation1,364,151,823,900
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,115,657
net_rshares0
@janvir ·
$0.14
wow amazing post really..
👍  
properties (23)
authorjanvir
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t053616846z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 05:36:24
last_update2017-12-11 05:36:24
depth1
children0
last_payout2017-12-18 05:36:24
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation-174,345,367,568
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,074,578
net_rshares31,456,302,320
author_curate_reward""
vote details (1)
@lastozgur ·
$0.13
This is awesome. I'm interested in raspberry pi and I want to make a bot like this. My idea is different with this. But this will be a good guide for me. Thanks. :)
👍  
properties (23)
authorlastozgur
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t163611635z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/1.0.0"}
created2017-12-11 16:36:12
last_update2017-12-11 16:36:12
depth1
children0
last_payout2017-12-18 16:36:12
cashout_time1969-12-31 23:59:59
total_payout_value0.124 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation1,455,260,240,478
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,133,716
net_rshares30,103,673,791
author_curate_reward""
vote details (1)
@legoman ·
$0.14
I have a raspberry pi laying around, now I know what to do with it. My python's a bit rusty but I'll give it a shot!
👍  ,
properties (23)
authorlegoman
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171212t170952655z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-12 17:09:54
last_update2017-12-12 17:09:54
depth1
children0
last_payout2017-12-19 17:09:54
cashout_time1969-12-31 23:59:59
total_payout_value0.110 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation15,096,779,808,739
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,264,064
net_rshares29,910,912,212
author_curate_reward""
vote details (2)
@mianfahad2 ·
really like your post...
properties (22)
authormianfahad2
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t134558771z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 13:46:00
last_update2017-12-11 13:46:00
depth1
children0
last_payout2017-12-18 13:46:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation460,855,120,828
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,115,183
net_rshares0
@mstafford ·
$0.16
Hey that's cool. I was just thinking the other day of starting that "Magic Mirror" project for the pi. Implementing this would be a cool feature!

On that note! I've had a couple beers at this point, and am new to the platform. Is there a way to bookmark or favorite posts so I can come back to this?
👍  , ,
properties (23)
authormstafford
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t052716863z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 05:27:15
last_update2017-12-11 05:27:15
depth1
children2
last_payout2017-12-18 05:27:15
cashout_time1969-12-31 23:59:59
total_payout_value0.160 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length300
author_reputation63,425,345,982,192
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,073,939
net_rshares38,128,452,142
author_curate_reward""
vote details (3)
@guyverckw ·
magic mirror project sound cool too.  
I don't know a very good "Bookmark" feature, I just put on comments so that I can search my comment to get back to that post.
👍  
properties (23)
authorguyverckw
permlinkre-mstafford-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t053153888z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 05:31:54
last_update2017-12-11 05:31:54
depth2
children1
last_payout2017-12-18 05:31:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation121,609,723,418,181
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,074,257
net_rshares673,098,303
author_curate_reward""
vote details (1)
@mstafford ·
Ah good call! I guess it's pretty easy to scan through a comment history.
properties (22)
authormstafford
permlinkre-guyverckw-re-mstafford-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171212t185451139z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-12 18:54:51
last_update2017-12-12 18:54:51
depth3
children0
last_payout2017-12-19 18:54:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation63,425,345,982,192
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,274,676
net_rshares0
@odsam2 ·
$0.14
Great work ...adding alot to steemit
👍  
properties (23)
authorodsam2
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t094350887z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 09:43:54
last_update2017-12-11 09:43:54
depth1
children0
last_payout2017-12-18 09:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation12,844,713,003,325
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,093,551
net_rshares31,471,508,344
author_curate_reward""
vote details (1)
@sakilansary ·
$0.14
Wow a nice steem post.....
👍  
properties (23)
authorsakilansary
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t054413183z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 05:44:18
last_update2017-12-11 05:44:18
depth1
children0
last_payout2017-12-18 05:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation2,428,363,252,111
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,075,186
net_rshares31,456,302,320
author_curate_reward""
vote details (1)
@sakilansary ·
Nice steem post......
properties (22)
authorsakilansary
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t161343082z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 16:13:54
last_update2017-12-11 16:13:54
depth1
children0
last_payout2017-12-18 16:13:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation2,428,363,252,111
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,131,112
net_rshares0
@sangeeta ·
$0.14
some days start my new language python, The invention of LED lights is very good. Now I will try. thanks for sharing
👍  ,
properties (23)
authorsangeeta
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t064521714z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 06:45:24
last_update2017-12-11 06:45:24
depth1
children0
last_payout2017-12-18 06:45:24
cashout_time1969-12-31 23:59:59
total_payout_value0.106 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation9,637,223,782,143
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,079,726
net_rshares31,671,827,793
author_curate_reward""
vote details (2)
@steemitboard ·
Congratulations @guyverckw! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/postallweek.png)](http://steemitboard.com/@guyverckw) You published a post every day of the week

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-guyverckw-20171211t084402000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-12-11 08:43:42
last_update2017-12-11 08:43:42
depth1
children0
last_payout2017-12-18 08:43:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length705
author_reputation38,975,615,169,260
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,088,831
net_rshares0
@trustedboy ·
I always upvote and resteem  your post please give me your huge part of vote
properties (22)
authortrustedboy
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t055830714z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 05:58:39
last_update2017-12-11 05:58:39
depth1
children0
last_payout2017-12-18 05:58:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation427,270,048,631
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,076,183
net_rshares0
@utopian-io ·
$0.13
### Hey @guyverckw I am @utopian-io. I have just upvoted you!
#### Achievements
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
👍  
properties (23)
authorutopian-io
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t231636389z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2017-12-11 23:16:36
last_update2017-12-11 23:16:36
depth1
children0
last_payout2017-12-18 23:16:36
cashout_time1969-12-31 23:59:59
total_payout_value0.130 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,007
author_reputation152,955,367,999,756
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,169,631
net_rshares30,121,106,458
author_curate_reward""
vote details (1)
@zoef ·
$0.20
Wow amazing. I gonna need to get me one of those rasberry pi's. This is just to nice!
👍  ,
properties (23)
authorzoef
permlinkre-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t190125372z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-11 19:01:27
last_update2017-12-11 19:01:27
depth1
children0
last_payout2017-12-18 19:01:27
cashout_time1969-12-31 23:59:59
total_payout_value0.154 HBD
curator_payout_value0.047 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation23,277,446,843,999
root_title"​ A Raspberry Pi based Steemit Notification Module"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,148,959
net_rshares46,229,266,701
author_curate_reward""
vote details (2)