create account

Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts by techtek

View this thread on: hive.blogpeakd.comecency.com
· @techtek · (edited)
$57.94
Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts
![image.png](https://cdn.utopian.io/posts/b8a13897577553a6cd52360ef74a47ae1631image.png)

With this new update it is possible to blink a Philips Hue Lamp, new Upvotes will light up the lamp in green, and new Followers in blue, and on new Posts it will blink with red light.

<br></br>

![image.png](https://cdn.utopian.io/posts/f3b5816a1758fdb07326ba8e19650dfb0addimage.png)

[The Philips Hue](www.meethue.com/Hue) system works with a bridge that connects the lamps to your home network, beside controlling the lights with a app, the bridge can be send put, post, get commands, to be able to send and execute those commands a authorized user ID  need to be created with the CLIP API Tool on your Bridge, this can be done by following [this tutorial](https://www.developers.meethue.com/documentation/getting-started) from Philips. Once the authorized user is created, the Bridge IP and ID can be copied and saved into the Blinkit interface and used to blink the Philips Hue light on new Upvotes, Followers and Posts.

## Added Features:

### Philips Hue integration for Blinkit
- Set/save IP of the Philips Hue Bridge (find the IP in the Philips Hue, Android or IOS app)
- Set/save the ID for the authorized user 
- Set/save Blinklenght (0-11 seconds)
- Buttons to turn on and off, and blink the lights
- Buttons to start the upvotes, followers, posts script
- Blink Length slider
- [Readme ](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-04c6e90faac2675aa89e2176d2eec7d8)is updated with information about how to get the Authorized user ID 
- Added [Upvotes](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-e9fd24b8ddb7102a7de323537cf3da97), [Follower](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-51f0c1d4be911e9f4117ef35056e9329)s, [Posts](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-5bae633d3a4466f7e85b54fe9347651d) scripts that turn the light on in [Green](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-4c88fef2d13433f2b58e71eaa98eaf38), [Blue](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-8828a60af3bea5da8aef2f84acf112f9) or [Red](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-6750ab0b4b8a0492897e6c96eed3e5f8)  
- Added settings files for the Philips Hue [bridge IP](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-203b2b8298b365b91db8e694c3605aa5) and authorized [user ID](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-dd7011f2954cf4fba0274c5eefc67eab), and [blink length](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-236b49e996a9be48efedd8f87307ffcf)
- Added [blinkphilipshue.bat](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-91802323f2060a46f0b46736d101ad4a) 
- Added [philipshuegreen.exe](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-88b1a4bafa98ec3166b79a17bcbb89e5)  [philipshueblue.exe](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-63afe5f6dce58e1e87cf28f4ed674c89)  [philipshuered.exe](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-694effcdf636f5b75b9955a15f7f3a88) and [philipshueoff.exe](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-43c2a78aba2d5549fa4d072ca4ef720c)
The executables make a put command to the Bridge and are made as well with VB.net:

``` language
Public Class Form1


    Dim lampstatus As String = "true"
    Dim IP As String = My.Computer.FileSystem.ReadAllText("C:\blinkit\config\philipshueip.txt")
    Dim ID As String = My.Computer.FileSystem.ReadAllText("C:\blinkit\config\philipshueid.txt")
    Dim colour As String = My.Computer.FileSystem.ReadAllText("C:\blinkit\config\philipshuegreen.txt")
    Dim lamp As String = 1

    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

        Dim result As String
        Dim MyURL As String, postData As String
        Dim winHttpReq As Object
        winHttpReq = CreateObject("WinHttp.WinHttpRequest.5.1")
        MyURL = "http://" & IP & "/api/" & ID & "/lights/" & lamp & "/state"

        postData = "{""on"": " & lampstatus & " " & colour & " }"
        winHttpReq.Open("PUT", MyURL, False)
        winHttpReq.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")
        winHttpReq.Send(postData)

        result = winHttpReq.ResponseText


        Close()
    End Sub
End Class
```

The above script is made in Visual Basic and used to build the .EXE files, the executable will use the saved Philips Hue settings: IP, ID and Colour to make PUT requests to the Philips Hue Bridge .  The  script is added into a [text file](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-6af070f34500bbe727452f31d2123ce9) next to the related executables, for me and others to tweak and reuse. 
<br></br>

### User Interface 
- Sound module is resized
- Philips Hue module, next to the Sonoff module

Now with the new Philips Hue, and the previously added Sonoff Module, The interface is again getting a bit full, and to have maximum space for the improvements of already available and future features, the interface would need a redesign, and this will be my next point to focus on.

<br></br>

### Suggestions are always welcome

- Interface ideas and examples
- What Smart lamps do you have and want to see added to Blinkit?
- What features do you want to see added ?


---

The following repositories are updated:

### Blinkit VB .net source files
 
[Github commit](https://github.com/techtek/Blinkit-vb.net/commit/a984592f228830fb815cec92a971525e56cd050f)

### Blinkit software 
[Github Commit ](https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c)

<br></br>

---

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@techtek/blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authortechtek
permlinkblinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":122750212,"name":"Blinkit","full_name":"techtek/Blinkit","html_url":"https://github.com/techtek/Blinkit","fork":false,"owner":{"login":"techtek"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","blinkit","steemdev","technology","cryptocurrency"],"users":["techtek"],"links":["https://cdn.utopian.io/posts/b8a13897577553a6cd52360ef74a47ae1631image.png","https://cdn.utopian.io/posts/f3b5816a1758fdb07326ba8e19650dfb0addimage.png","https://www.developers.meethue.com/documentation/getting-started","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-04c6e90faac2675aa89e2176d2eec7d8","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-e9fd24b8ddb7102a7de323537cf3da97","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-51f0c1d4be911e9f4117ef35056e9329","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-5bae633d3a4466f7e85b54fe9347651d","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-4c88fef2d13433f2b58e71eaa98eaf38","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-8828a60af3bea5da8aef2f84acf112f9","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-6750ab0b4b8a0492897e6c96eed3e5f8","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-203b2b8298b365b91db8e694c3605aa5","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-dd7011f2954cf4fba0274c5eefc67eab","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-236b49e996a9be48efedd8f87307ffcf","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-91802323f2060a46f0b46736d101ad4a","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-88b1a4bafa98ec3166b79a17bcbb89e5","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-63afe5f6dce58e1e87cf28f4ed674c89","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-694effcdf636f5b75b9955a15f7f3a88","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-43c2a78aba2d5549fa4d072ca4ef720c","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c#diff-6af070f34500bbe727452f31d2123ce9","https://github.com/techtek/Blinkit-vb.net/commit/a984592f228830fb815cec92a971525e56cd050f","https://github.com/techtek/Blinkit/commit/b805e317fe88355c6c17f2467e76f4e8dc3a968c"],"image":["https://cdn.utopian.io/posts/b8a13897577553a6cd52360ef74a47ae1631image.png","https://cdn.utopian.io/posts/f3b5816a1758fdb07326ba8e19650dfb0addimage.png"],"moderator":{"account":"codingdefined","time":"2018-04-03T04:52:14.374Z","reviewed":true,"pending":false,"flagged":false},"questions":[{"question":"Is the project description formal?","answers":[{"value":"Yes it’s straight to the point","selected":true,"score":10},{"value":"Need more description ","selected":false,"score":5},{"value":"Not too descriptive","selected":false,"score":0}],"selected":0},{"question":"Is the language / grammar correct?","answers":[{"value":"Yes","selected":true,"score":20},{"value":"A few mistakes","selected":false,"score":10},{"value":"It's pretty bad","selected":false,"score":0}],"selected":0},{"question":"Was the template followed?","answers":[{"value":"Yes","selected":true,"score":10},{"value":"Partially","selected":false,"score":5},{"value":"No","selected":false,"score":0}],"selected":0},{"question":"How do you rate the amount of work?","answers":[{"value":"Very High","selected":false,"score":20},{"value":"High","selected":false,"score":16},{"value":"Medium","selected":true,"score":12},{"value":"Low","selected":false,"score":7},{"value":"Very Low","selected":false,"score":3}],"selected":2},{"question":"How do you rate the impact on the Project?","answers":[{"value":"Very High","selected":false,"score":20},{"value":"High","selected":false,"score":16},{"value":"Medium","selected":true,"score":12},{"value":"Low","selected":false,"score":7},{"value":"Very Low","selected":false,"score":3}],"selected":2}],"score":38}"
created2018-04-01 23:47:30
last_update2018-04-03 04:52:15
depth0
children17
last_payout2018-04-08 23:47:30
cashout_time1969-12-31 23:59:59
total_payout_value41.769 HBD
curator_payout_value16.168 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,317
author_reputation28,283,249,927,543
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,844,152
net_rshares24,376,495,375,145
author_curate_reward""
vote details (53)
@codingdefined ·
$0.05
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
πŸ‘  
properties (23)
authorcodingdefined
permlinkre-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180403t045221050z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-03 04:52:24
last_update2018-04-03 04:52:24
depth1
children1
last_payout2018-04-10 04:52:24
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation536,203,978,055,117
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,052,892
net_rshares17,032,144,021
author_curate_reward""
vote details (1)
@techtek ·
Thank you for approving
properties (22)
authortechtek
permlinkre-codingdefined-re-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180403t112444303z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-03 11:24:42
last_update2018-04-03 11:24:42
depth2
children0
last_payout2018-04-10 11:24: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_length23
author_reputation28,283,249,927,543
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,101,050
net_rshares0
@paulag ·
$0.07
really good work, have you been able to sell any of these?
πŸ‘  ,
properties (23)
authorpaulag
permlinkre-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180402t191522280z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-02 19:15:24
last_update2018-04-02 19:15:24
depth1
children8
last_payout2018-04-09 19:15:24
cashout_time1969-12-31 23:59:59
total_payout_value0.055 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation274,264,287,951,003
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,986,992
net_rshares23,680,620,040
author_curate_reward""
vote details (2)
@techtek ·
Thank you, i don't sell the supported hardware, but i try to integrate popular (cheap) widely available hardware instead.  maybe in the near future i will look into offering custom USB sticks with a bright LED, in exchange for Steem, but that's not a main purpose, but it is a option for the project, and is depending on the popularity of the project.

(The software is free and will always be free)
properties (22)
authortechtek
permlinkre-paulag-re-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180402t194333624z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-02 19:43:33
last_update2018-04-02 19:43:33
depth2
children7
last_payout2018-04-09 19:43:33
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_length399
author_reputation28,283,249,927,543
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,990,682
net_rshares0
@paulag ·
$0.02
how much would the hardware cost?  would it be worth your while setting them up and selling them for STEEM or SBD?
πŸ‘  
properties (23)
authorpaulag
permlinkre-techtek-re-paulag-re-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180402t201030401z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-02 20:10:33
last_update2018-04-02 20:10:33
depth3
children6
last_payout2018-04-09 20:10:33
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation274,264,287,951,003
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,994,157
net_rshares8,137,080,023
author_curate_reward""
vote details (1)
@steem-samiam ·
$0.05
Too fun to make your house blink!!
πŸ‘  ,
properties (23)
authorsteem-samiam
permlinkre-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180402t015100152z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-02 01:51:00
last_update2018-04-02 01:51:00
depth1
children1
last_payout2018-04-09 01:51:00
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation23,534,153,112,553
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,850,544
net_rshares17,991,276,152
author_curate_reward""
vote details (2)
@techtek · (edited)
Thanks again :) for trying the new features :)
πŸ‘  
properties (23)
authortechtek
permlinkre-steem-samiam-re-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180402t015606166z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-02 01:56:06
last_update2018-04-02 01:56:21
depth2
children0
last_payout2018-04-09 01:56:06
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_length46
author_reputation28,283,249,927,543
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,851,078
net_rshares590,533,853
author_curate_reward""
vote details (1)
@steemmakers ·
$0.04
<div class='pull-right'><center><a href='http://www.steemmakers.com'><img src='https://www.steemmakers.com/img/comment_logo_makers.png' /></a></center></div><b>Congratulations</b> This post has been upvoted by SteemMakers. We are a community-based project that aims to support makers and DIYers on the blockchain in every way possible. <br/><br/>Join our <a href='https://discord.gg/EFGbRuW'>Discord Channel</a> to connect with us and nominate your own or somebody else's posts in our review channel.<br/><br/><b>Help us to reward you for making it !</b> Join <a href='https://www.steemmakers.com/steemmakerstrail.php'>our voting trail</a> or <a href='https://www.steemmakers.com/steemmakersdelegation.php'>delegate steem power</a> to the community account. <br/><br/>Your post is also presented on the community website <a href='http://www.steemmakers.com'>www.steemmakers.com</a> where you can find other selected content. <br/><br/>If you like our work, please consider upvoting this comment to support the growth of our community. Thank you.
πŸ‘  
properties (23)
authorsteemmakers
permlinkre-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180403t062429675z
categoryutopian-io
json_metadata""
created2018-04-03 06:24:27
last_update2018-04-03 06:24:27
depth1
children0
last_payout2018-04-10 06:24:27
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,045
author_reputation1,907,312,584,548
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,064,724
net_rshares13,625,715,217
author_curate_reward""
vote details (1)
@utopian-io ·
### Hey @techtek 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 (22)
authorutopian-io
permlinkre-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180403t121051560z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-03 12:10:51
last_update2018-04-03 12:10:51
depth1
children0
last_payout2018-04-10 12:10: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_length1,005
author_reputation152,955,367,999,756
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,107,301
net_rshares0
@valchiz ·
$0.10
This is really a great work you are doing @techtek, new development
πŸ‘  ,
properties (23)
authorvalchiz
permlinkre-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180402t110919056z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["techtek"],"app":"steemit/0.1"}
created2018-04-02 11:09:24
last_update2018-04-02 11:09:24
depth1
children1
last_payout2018-04-09 11:09:24
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation511,633,761,707,675
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,914,553
net_rshares32,433,929,885
author_curate_reward""
vote details (2)
@techtek ·
Thank you, more to come :)
πŸ‘  
properties (23)
authortechtek
permlinkre-valchiz-re-techtek-blinkit-v1-4-or-philips-hue-integration-blink-a-lamp-on-new-upvotes-followers-and-posts-20180402t111053669z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-02 11:10:54
last_update2018-04-02 11:10:54
depth2
children0
last_payout2018-04-09 11:10: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_length26
author_reputation28,283,249,927,543
root_title"Blinkit v1.4 | Philips Hue integration, Blink a lamp on new Upvotes, Followers and Posts"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,914,760
net_rshares599,713,136
author_curate_reward""
vote details (1)