<center><img src="http://steemit.bitcalm.mm.st/posts/steemduino/banner.jpg"></center> I'm pleased to announce the first **alpha release** of **steemduino** - an Arduino library for accessing the steem web socket API. # What is steemduino? steemduino allows you to communicate with the Steem websocket API using an Arduino, the open source electronics platform. <center><img src="http://steemit.bitcalm.mm.st/posts/steemduino/counter_image.jpg"></center> <center>LED matrix showing upvotes in green and flags in red.</center> <center><img src="http://steemit.bitcalm.mm.st/posts/steemduino/lcd.gif"></center> <center>LCD showing the username of an upvoter.</center> <center><img src="http://steemit.bitcalm.mm.st/posts/steemduino/ledm.gif"></center> <center>LED matrix scrolling the username of an upvoter.</center> You can use the library to monitor incoming blocks and perform actions depending on the contents, such as displaying a message on an LCD screen or sounding an alarm. <center><strong>steemduino connects Steem to the physical world.</strong></center> With steemduino you can create a custom notification system that will alert you to anything that's happening in the steem blockchain. **In future, as more functionality is added, the only limitations will be your imagination.** # What's an alpha release? An **alpha release** is a release where the code is still experimental and probably contains bugs. There are a lot of areas in steemduino that can be improved, but releasing the library allows me to get feedback and contributions from the community. <center><strong>steemduino is open source. Fork the project and help make it better.</strong></center> The number one big issue is memory use. The web socket library used by steemduino tries to load responses into memory, and since the Arduino doesn't have very much, blocks containing large posts or comments will fail. **You've been warned.** The second issues on the list is functionality. At the moment its limited to getting blocks by their block number. You can already achieve a lot with this, but adding access to additional RPC methods will make it much more flexible. # Hardware requirements steemduino was developed on the [Arduino Mega 2560](http://go.humblecoder.com?id=80081X1531205&xs=1&url=https%3A%2F%2Fwww.amazon.com%2FARDUINO-A000067-ATMEGA2560-2560-R3%2Fdp%2FB0046AMGW0) and I recommend you use this. It's unlikely that anything will work on boards with less SRAM and Flash Memory, and it's not been tested on All the examples use an Ethernet Shield to connect to The Internet. You can also try a WiFi shield, but this hasn't been tested and the examples will need adjusting. **Note: If you decide to use an Ethernet Shield, check carefully that it's compatible with an Arduino Mega. Not all version are.** # Installation Currently steemduino and its dependencies must be installed manually. You can download them from the links below: * [steemduino](https://github.com/jonblack/steemduino) * [json-streaming-parser](https://github.com/jonblack/json-streaming-parser) * [Arduino-Websocket](https://github.com/jonblack/Arduino-Websocket) The LED matrix examples depend on the following library: * [arduino-ht1632c](https://github.com/jonblack/arduino-ht1632c) All examples come with a makefile for building the project using [Arduino-Makefile](https://github.com/sudar/Arduino-Makefile). With this you can avoid using the awful Arduino IDE. # Quick guide This section will very quickly cover how the library works. In future posts I'll cover more specific tasks and components. Each program you will have the following: 1. An instance of `SteemRpc` for accessing the steem web socket API 2. An instance of `JsonStreamingParser` and `OpListener` for parsing blocks; 3. An op handler function for processing parsed blocks. The code below is a skeleton you can use when beginning a project. It contains all the code you need to do all the steps above. ``` #include <Ethernet.h> #include <SPI.h> #include <JsonStreamingParser.h> #include <OpListener.h> #include <SteemRpc.h> EthernetClient client = EthernetClient(); SteemRpc steem(client, "node.steem.ws", "/", 80); unsigned long current_block = 0; void op_handler(const String& op_type, const String& op_data) { Serial.println(op_type); } void setup() { Serial.begin(9600); Serial.println("Connecting to network"); byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; Ethernet.begin(mac); Serial.println("Connecting to Steem web socket"); if (steem.connect()) { Serial.println("Connected to Steem web socket"); } else { Serial.println("Failed to connect to Steem websocket"); while (1) {}; } } void loop() { // Hang if the client disconnects if (!steem.is_connected()) { Serial.println("Client disconnected"); while (1) {} } // Get the last block number unsigned long last_block = steem.get_last_block_num(); if (current_block == 0) current_block = last_block; while (current_block <= last_block) { // Get the block String block = ""; if (!steem.get_block(current_block, block)) { Serial.print("Failed to get block "); Serial.println(current_block); continue; } // Parse the block JsonStreamingParser parser; OpListener listener(&op_handler); parser.setListener(&listener); const char* block_c = block.c_str(); for (size_t i = 0; i < strlen(block_c); ++i) { parser.parse(block_c[i]); } current_block += 1; } delay(5000); } ``` For more information see the examples provided with the library. If you really get stuck and need help, you're welcome to come at chat with me on [steemit.chat](http://steemit.chat) or [open an issue](https://github.com/jonblack/steemduino/issues) on GitHub. --- <center><strong><a href="https://steemit.com/@bitcalm">Follow me</a> to make sure you don't miss my next post</strong></center>
author | bitcalm |
---|---|
permlink | steemduino-an-open-source-arduino-library-for-steem |
category | arduino |
json_metadata | {"tags":["arduino","steem","steemit","steemtools","programming"],"image":["http://steemit.bitcalm.mm.st/posts/steemduino/banner.jpg","http://steemit.bitcalm.mm.st/posts/steemduino/counter_image.jpg","http://steemit.bitcalm.mm.st/posts/steemduino/lcd.gif","http://steemit.bitcalm.mm.st/posts/steemduino/ledm.gif"],"links":["http://go.humblecoder.com?id=80081X1531205&xs=1&url=https%3A%2F%2Fwww.amazon.com%2FARDUINO-A000067-ATMEGA2560-2560-R3%2Fdp%2FB0046AMGW0","https://github.com/jonblack/steemduino","https://github.com/jonblack/json-streaming-parser","https://github.com/jonblack/Arduino-Websocket","https://github.com/jonblack/arduino-ht1632c","https://github.com/sudar/Arduino-Makefile","http://steemit.chat","https://github.com/jonblack/steemduino/issues","https://steemit.com/@bitcalm"]} |
created | 2016-09-24 19:28:24 |
last_update | 2016-09-24 19:28:24 |
depth | 0 |
children | 23 |
last_payout | 2016-10-25 23:03:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1,608.048 HBD |
curator_payout_value | 188.069 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,057 |
author_reputation | 24,919,530,803,138 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,349,356 |
net_rshares | 212,735,260,168,871 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steempty | 0 | 7,449,401,509,261 | 100% | ||
smooth | 0 | 8,072,641,049,487 | 25% | ||
anonymous | 0 | 319,559,864,276 | 100% | ||
summon | 0 | 13,889,562,257,985 | 100% | ||
blocktrades | 0 | 40,824,729,140,997 | 100% | ||
ned | 0 | 62,686,297,672,402 | 100% | ||
jamesc | 0 | 35,067,940,020,211 | 100% | ||
riverhead | 0 | 5,524,157,908,307 | 100% | ||
badassmother | 0 | 2,789,177,645,079 | 100% | ||
hr1 | 0 | 1,812,160,604,459 | 100% | ||
sandra | 0 | 116,116,711,828 | 100% | ||
kushed | 0 | 5,502,156,286,294 | 100% | ||
ihashfury | 0 | 1,213,303,332,951 | 100% | ||
rossco99 | 0 | 1,326,394,396,786 | 100% | ||
roadscape | 0 | 7,319,997,058,406 | 100% | ||
boy | 0 | 7,475,198,129 | 100% | ||
xeroc | 0 | 2,034,013,304,478 | 100% | ||
bue-witness | 0 | 9,078,524,285 | 100% | ||
bunny | 0 | 1,612,956,842 | 100% | ||
bue | 0 | 134,862,027,826 | 100% | ||
mini | 0 | 4,004,351,591 | 100% | ||
moon | 0 | 513,943,213 | 100% | ||
aizensou | 0 | 111,975,755,547 | 100% | ||
au1nethyb1 | 0 | 4,186,194,257,414 | 100% | ||
smooth.witness | 0 | 1,582,670,662,366 | 25% | ||
pairmike | 0 | 170,539,841,797 | 100% | ||
pheonike | 0 | 244,308,075,223 | 100% | ||
healthcare | 0 | 1,503,742,587 | 100% | ||
daniel.pan | 0 | 2,356,238,874 | 100% | ||
fractalnode | 0 | 659,378,797 | 100% | ||
chitty | 0 | 268,497,692,395 | 100% | ||
helen.tan | 0 | 693,337,145 | 100% | ||
unosuke | 0 | 57,108,850,097 | 70% | ||
sandwich | 0 | 14,759,304,897 | 100% | ||
easteagle13 | 0 | 73,711,154,702 | 100% | ||
max-infeld | 0 | 16,319,609,152 | 100% | ||
germanaure | 0 | 8,167,049,795 | 100% | ||
spaninv | 0 | 5,634,852,097 | 100% | ||
james-show | 0 | 29,681,429,185 | 100% | ||
gekko | 0 | 2,371,359,496 | 100% | ||
richman | 0 | 7,908,510,250 | 100% | ||
hannixx42 | 0 | 59,306,024,214 | 100% | ||
klye | 0 | 46,128,096,161 | 100% | ||
oaldamster | 0 | 59,211,459,284 | 100% | ||
coar | 0 | 630,731,762 | 100% | ||
asch | 0 | 122,526,672,031 | 100% | ||
emerge | 0 | 3,993,947,343 | 100% | ||
kodi | 0 | 574,149,281 | 100% | ||
blakemiles84 | 0 | 422,594,526,114 | 100% | ||
tinfoilfedora | 0 | 35,748,053,265 | 50% | ||
cyber | 0 | 1,117,408,626,341 | 100% | ||
aizen01 | 0 | 10,522,284,015 | 100% | ||
aizen02 | 0 | 6,273,239,247 | 100% | ||
aizen03 | 0 | 3,428,203,958 | 100% | ||
aizen04 | 0 | 1,126,719,677 | 100% | ||
aizen05 | 0 | 476,416,645 | 100% | ||
aizen07 | 0 | 4,625,267,063 | 100% | ||
aizen08 | 0 | 2,765,984,309 | 100% | ||
aizen09 | 0 | 982,775,183 | 100% | ||
aizen10 | 0 | 425,040,457 | 100% | ||
aizen06 | 0 | 6,999,075,820 | 100% | ||
aizen11 | 0 | 2,939,699,501 | 100% | ||
aizen14 | 0 | 2,019,297,039 | 100% | ||
aizen19 | 0 | 2,374,481,853 | 100% | ||
theshell | 0 | 67,244,559,480 | 100% | ||
aizen15 | 0 | 625,602,184 | 100% | ||
aizen16 | 0 | 6,197,570,393 | 100% | ||
aizen20 | 0 | 621,883,546 | 100% | ||
aizen22 | 0 | 4,067,830,925 | 100% | ||
aizen23 | 0 | 1,080,910,164 | 100% | ||
aizen17 | 0 | 2,126,421,679 | 100% | ||
aizen24 | 0 | 3,347,311,905 | 100% | ||
aizen18 | 0 | 472,838,265 | 100% | ||
aizen25 | 0 | 1,267,212,123 | 100% | ||
aizen28 | 0 | 2,152,942,719 | 100% | ||
aizen26 | 0 | 3,313,797,682 | 100% | ||
aizen27 | 0 | 1,087,320,726 | 100% | ||
aizen32 | 0 | 3,738,160,987 | 100% | ||
aizen30 | 0 | 2,044,886,818 | 100% | ||
aizen31 | 0 | 3,782,981,916 | 100% | ||
aizen33 | 0 | 1,244,862,646 | 100% | ||
aizen34 | 0 | 1,497,592,629 | 100% | ||
aizen35 | 0 | 300,417,630 | 100% | ||
aizen36 | 0 | 5,642,301,114 | 100% | ||
aizen37 | 0 | 1,407,174,176 | 100% | ||
aizen29 | 0 | 393,481,934 | 100% | ||
aizen21 | 0 | 2,770,422,259 | 100% | ||
aizen12 | 0 | 4,253,537,201 | 100% | ||
aizen38 | 0 | 1,809,671,099 | 100% | ||
zebbra2014 | 0 | 10,227,897,893 | 100% | ||
hien-tran | 0 | 13,436,687,730 | 100% | ||
johnerfx | 0 | 13,257,593,305 | 100% | ||
aizen39 | 0 | 504,286,365 | 100% | ||
facer | 0 | 27,123,139,310 | 100% | ||
schro | 0 | 135,277,938,966 | 100% | ||
johnerminer | 0 | 1,154,590,238 | 100% | ||
tee-em | 0 | 7,109,615,909 | 100% | ||
thedashguy | 0 | 170,659,595,591 | 100% | ||
antizvuk | 0 | 4,561,510,412 | 100% | ||
geoffrey | 0 | 193,432,837,315 | 100% | ||
kimziv | 0 | 181,320,371,810 | 100% | ||
magnebit | 0 | 14,869,393,443 | 100% | ||
pmartynov | 0 | 87,194,375,867 | 100% | ||
clement | 0 | 43,911,555,999 | 100% | ||
venuspcs | 0 | 86,941,042,552 | 100% | ||
asmolokalo | 0 | 112,477,891,975 | 100% | ||
good-karma | 0 | 68,982,470,695 | 100% | ||
garik100 | 0 | 1,404,625,631 | 100% | ||
robrigo | 0 | 122,506,240,673 | 100% | ||
rxhector | 0 | 1,868,868,588 | 100% | ||
picokernel | 0 | 51,266,332,110 | 100% | ||
aizen13 | 0 | 375,506,182 | 100% | ||
aizen41 | 0 | 3,226,351,657 | 100% | ||
aizen42 | 0 | 916,394,826 | 100% | ||
aizen46 | 0 | 3,123,188,568 | 100% | ||
aizen47 | 0 | 854,428,686 | 100% | ||
aizen48 | 0 | 209,345,715 | 100% | ||
aizen49 | 0 | 109,076,166 | 100% | ||
furion | 0 | 129,901,192,744 | 100% | ||
seanmchughart | 0 | 10,595,901,254 | 100% | ||
mirspirs | 0 | 241,529,832 | 100% | ||
aizen51 | 0 | 907,123,632 | 100% | ||
strangerarray | 0 | 24,999,685,052 | 100% | ||
renohq | 0 | 1,232,496,565,242 | 100% | ||
aizen43 | 0 | 439,282,662 | 100% | ||
aizen44 | 0 | 65,137,501 | 100% | ||
aizen54 | 0 | 735,695,233 | 100% | ||
ausbitbank | 0 | 18,890,434,248 | 100% | ||
freeyourmind | 0 | 213,842,015,881 | 100% | ||
cloh76 | 0 | 1,572,903,957 | 100% | ||
jesta | 0 | 549,701,978,138 | 100% | ||
toxonaut | 0 | 33,665,448,176 | 100% | ||
paco | 0 | 130,081,508,523 | 100% | ||
edrivegom | 0 | 2,210,156,589 | 100% | ||
karen13 | 0 | 4,224,576,099 | 40% | ||
meiisheree | 0 | 21,707,052,092 | 100% | ||
igster | 0 | 25,011,639,404 | 100% | ||
juvyjabian | 0 | 9,623,712,762 | 100% | ||
dmacshady | 0 | 2,875,208,843 | 100% | ||
aizen52 | 0 | 225,006,586 | 100% | ||
stephencurry | 0 | 93,409,535,005 | 100% | ||
grolelo | 0 | 28,394,088,263 | 100% | ||
arcange | 0 | 19,167,764,867 | 100% | ||
creemej | 0 | 30,325,682,786 | 100% | ||
keyser | 0 | 1,169,118,918 | 100% | ||
ibeyz | 0 | 0 | 100% | ||
aizen55 | 0 | 183,279,156 | 100% | ||
blueorgy | 0 | 192,398,215,563 | 100% | ||
licianek | 0 | 249,061,299 | 100% | ||
geronimo | 0 | 7,025,233,556 | 100% | ||
moviefan | 0 | 3,160,184,300 | 100% | ||
bitcoiner | 0 | 6,229,715,306 | 100% | ||
azurejasper | 0 | 4,199,785,357 | 100% | ||
sharker | 0 | 5,618,086,374 | 100% | ||
sauravrungta | 0 | 37,528,061,384 | 100% | ||
bento | 0 | 138,848,238 | 100% | ||
shredlord | 0 | 4,760,074,248 | 35% | ||
elmusic | 0 | 104,788,510 | 100% | ||
jl777 | 0 | 205,346,971,957 | 40% | ||
lostnuggett | 0 | 8,986,645,387 | 100% | ||
raymonjohnstone | 0 | 2,670,564,119 | 100% | ||
yogi | 0 | 116,274,683 | 100% | ||
bristolchris72 | 0 | 3,653,023,335 | 100% | ||
sergey44 | 0 | 1,358,315,495 | 100% | ||
happyphoenix | 0 | 905,662,481 | 100% | ||
claudiop63 | 0 | 43,769,619,912 | 100% | ||
proto | 0 | 17,156,727,721 | 40% | ||
sisterholics | 0 | 31,033,426,852 | 100% | ||
celebr1ty | 0 | 58,743,762,178 | 100% | ||
aizen53 | 0 | 80,569,663 | 100% | ||
steemster1 | 0 | 129,265,924 | 100% | ||
fabien | 0 | 31,145,589,489 | 100% | ||
originate | 0 | 264,988,132,848 | 100% | ||
sulev | 0 | 5,196,245,166 | 100% | ||
choccy | 0 | 275,046,659 | 100% | ||
williambanks | 0 | 38,101,578,998 | 100% | ||
bento04 | 0 | 432,763,092 | 100% | ||
bento03 | 0 | 725,882,544 | 100% | ||
aizen | 0 | 1,480,399,927 | 100% | ||
taker | 0 | 8,598,947,179 | 40% | ||
bento02 | 0 | 230,753,083 | 100% | ||
bento01 | 0 | 531,514,506 | 100% | ||
coinbar | 0 | 1,624,420,829 | 100% | ||
sharon | 0 | 51,143,991 | 100% | ||
allasyummyfood | 0 | 67,416,372,452 | 100% | ||
lillianjones | 0 | 52,114,341 | 100% | ||
laonie | 0 | 1,088,718,028,162 | 100% | ||
ozchartart | 0 | 292,905,369,926 | 100% | ||
croatia | 0 | 5,017,737,130 | 100% | ||
rawnetics | 0 | 24,134,918,612 | 100% | ||
angelamerkel | 0 | 64,087,026 | 100% | ||
naturalista | 0 | 2,289,353,078 | 100% | ||
bento06 | 0 | 78,760,618 | 100% | ||
myfirst | 0 | 34,954,164,192 | 100% | ||
somebody | 0 | 222,091,864,600 | 100% | ||
sunshine | 0 | 17,057,573,664 | 100% | ||
flysaga | 0 | 8,297,238,847 | 100% | ||
brendio | 0 | 13,393,726,645 | 100% | ||
kryptik | 0 | 8,705,493,320 | 100% | ||
midnightoil | 0 | 48,576,182,914 | 100% | ||
mibenkito | 0 | 103,540,965,219 | 100% | ||
altucher | 0 | 981,847,902 | 100% | ||
timferriss | 0 | 97,763,703 | 100% | ||
armen | 0 | 8,235,854,283 | 100% | ||
tommycoin | 0 | 22,923,016,735 | 100% | ||
kurtbeil | 0 | 9,515,104,054 | 100% | ||
bayareacoins | 0 | 18,686,431,844 | 100% | ||
darrenrowse | 0 | 100,793,594 | 100% | ||
xiaohui | 0 | 124,683,272,866 | 100% | ||
ekitcho | 0 | 11,293,318,138 | 100% | ||
elfkitchen | 0 | 6,483,163,563 | 100% | ||
oflyhigh | 0 | 7,737,466,189 | 100% | ||
sirwinchester | 0 | 83,926,829,690 | 25% | ||
xiaokongcom | 0 | 4,052,218,137 | 100% | ||
gargon | 0 | 16,844,664,817 | 100% | ||
nonlinearone | 0 | 44,938,844,160 | 100% | ||
msjennifer | 0 | 52,526,031 | 100% | ||
ciao | 0 | 50,841,397 | 100% | ||
xcepta | 0 | 528,229,125 | 100% | ||
cristi | 0 | 19,212,699,541 | 100% | ||
numberone | 0 | 1,519,249,555 | 100% | ||
steemo | 0 | 50,521,096 | 100% | ||
pcashmore | 0 | 172,691,146 | 100% | ||
ninjaboon | 0 | 95,610,178 | 100% | ||
xianjun | 0 | 7,729,419,970 | 100% | ||
steema | 0 | 50,390,768 | 100% | ||
andrew.sullivan | 0 | 57,390,310 | 100% | ||
brianclark | 0 | 1,008,347,549 | 100% | ||
daniel.kahneman | 0 | 801,467,908 | 100% | ||
tucker.max | 0 | 224,314,753 | 100% | ||
darren.rowse | 0 | 714,010,748 | 100% | ||
bhavnapatel68 | 0 | 4,436,385,078 | 100% | ||
chris.dunn | 0 | 53,625,872 | 100% | ||
confucius | 0 | 61,561,917 | 100% | ||
mrosenquist | 0 | 30,674,666,929 | 100% | ||
bledarus | 0 | 2,708,485,793 | 100% | ||
pat.flynn | 0 | 1,135,531,590 | 100% | ||
mattmarshall | 0 | 1,179,525,410 | 100% | ||
timothysykes | 0 | 421,723,896 | 100% | ||
bitcalm | 0 | 50,012,689,402 | 100% | ||
patflynn | 0 | 102,864,165 | 100% | ||
jarvis | 0 | 51,166,070 | 100% | ||
microluck | 0 | 533,736,948 | 100% | ||
andrewsullivan | 0 | 864,597,278 | 100% | ||
matrixdweller | 0 | 12,911,403,497 | 100% | ||
birdman | 0 | 696,809,621 | 100% | ||
fortuner | 0 | 50,692,212 | 100% | ||
kyriacos | 0 | 33,979,916,600 | 100% | ||
peppernrino | 0 | 65,954,726 | 100% | ||
serejandmyself | 0 | 110,912,134,974 | 100% | ||
harvey.levin | 0 | 471,307,443 | 100% | ||
gdsprgdd | 0 | 2,808,796,235 | 100% | ||
cryptomancer | 0 | 13,307,665,538 | 100% | ||
johnbyrd | 0 | 50,698,107 | 100% | ||
thomasaustin | 0 | 50,682,252 | 100% | ||
thermor | 0 | 50,680,459 | 100% | ||
ficholl | 0 | 50,691,211 | 100% | ||
widell | 0 | 50,673,817 | 100% | ||
shneakysquirrel | 0 | 3,956,919,117 | 100% | ||
vasilii | 0 | 70,361,224 | 100% | ||
mada | 0 | 18,104,024,166 | 100% | ||
revelbrooks | 0 | 50,311,250 | 100% | ||
mrlogic | 0 | 379,622,297 | 100% | ||
rand.fishkin | 0 | 187,533,004 | 100% | ||
trev | 0 | 0 | 0% | ||
someguy123 | 0 | 92,826,447,580 | 100% | ||
joelbow | 0 | 78,411,391 | 100% | ||
imag1ne | 0 | 3,108,031,293 | 100% | ||
mandibil | 0 | 72,066,736,134 | 100% | ||
embraceurdialect | 0 | 57,580,866 | 100% | ||
gstanley19 | 0 | 59,218,467 | 100% | ||
justinschwalm | 0 | 104,406,928 | 100% | ||
curpose | 0 | 50,416,427 | 100% | ||
cryptoeasy | 0 | 2,590,467,108 | 100% | ||
englishtchrivy | 0 | 6,889,693,078 | 100% | ||
anush1961 | 0 | 51,119,395 | 100% | ||
sammie | 0 | 176,372,587 | 100% | ||
laonie11 | 0 | 18,542,167,539 | 100% | ||
troich | 0 | 50,588,612 | 100% | ||
team101 | 0 | 201,760,420 | 100% | ||
crion | 0 | 50,593,879 | 100% | ||
hitherise | 0 | 50,271,139 | 100% | ||
wiss | 0 | 50,262,756 | 100% | ||
goldstein | 0 | 1,235,571,185 | 100% | ||
jamespro | 0 | 53,281,654 | 100% | ||
stroully | 0 | 51,033,798 | 100% | ||
titusfrost | 0 | 4,609,206,182 | 100% | ||
maryfromsochi | 0 | 3,482,110,070 | 100% | ||
gumer | 0 | 243,085,539 | 100% | ||
thadm | 0 | 50,712,038 | 100% | ||
prof | 0 | 50,710,305 | 100% | ||
yorsens | 0 | 50,370,757 | 100% | ||
michaelmatthews | 0 | 737,265,787 | 100% | ||
harveylevin | 0 | 171,105,984 | 100% | ||
bane | 0 | 50,065,875 | 100% | ||
vive | 0 | 50,059,754 | 100% | ||
coad | 0 | 50,054,445 | 100% | ||
dubi | 0 | 21,150,960,761 | 100% | ||
pjo | 0 | 199,853,853 | 100% | ||
sofa | 0 | 50,840,303 | 100% | ||
gary.vaynerchuk | 0 | 118,332,391 | 100% | ||
alina1 | 0 | 238,477,706 | 100% | ||
doggnostic | 0 | 50,639,382 | 100% | ||
ivicaa | 0 | 5,191,097,027 | 100% | ||
ailo | 0 | 50,933,404 | 100% | ||
z3r0d4yz | 0 | 251,229,116 | 100% | ||
portuguesinha | 0 | 791,939,576 | 100% | ||
gregorygarcia | 0 | 51,890,765 | 100% | ||
eavy | 0 | 50,441,122 | 100% | ||
roto | 0 | 50,454,901 | 100% | ||
spacov | 0 | 51,325,709 | 100% | ||
snmfoundation | 0 | 50,108,922 | 100% | ||
cfisher | 0 | 50,602,980 | 100% | ||
battalar | 0 | 50,223,099 | 100% | ||
slow | 0 | 50,139,069 | 100% | ||
dodders007 | 0 | 3,312,226,100 | 100% | ||
igtes | 0 | 61,497,708 | 100% | ||
buffett | 0 | 122,404,463 | 100% | ||
uct | 0 | 159,730,645 | 100% | ||
front | 0 | 159,716,853 | 100% | ||
listentojon | 0 | 673,668,782 | 100% | ||
ranger | 0 | 158,642,800 | 100% | ||
bethsoft | 0 | 157,937,685 | 100% | ||
planet | 0 | 157,182,398 | 100% | ||
nsawashere | 0 | 153,822,450 | 100% | ||
cle4r | 0 | 153,794,971 | 100% | ||
allgoodthings | 0 | 1,315,771,903 | 100% | ||
greenpeace | 0 | 156,378,592 | 100% | ||
steem-wallet | 0 | 155,493,039 | 100% | ||
kaktus1818 | 0 | 155,149,158 | 100% | ||
steempolizei | 0 | 154,986,758 | 100% | ||
lamaisonjeandel | 0 | 452,920,501 | 100% | ||
dougkarr | 0 | 6,449,511,334 | 100% | ||
techslut | 0 | 388,119,290 | 100% | ||
gramion | 0 | 152,906,362 | 100% | ||
paulocouto | 0 | 158,139,354 | 100% | ||
paolacu20 | 0 | 150,203,760 | 100% | ||
dcomxv1 | 0 | 580,258,659 | 100% | ||
veryrico | 0 | 281,074,288 | 100% | ||
miakotine | 0 | 1,400,900,410 | 100% | ||
plentyoffish | 0 | 78,172,068 | 100% | ||
miverjordal | 0 | 130,183,773 | 100% | ||
zulfan91 | 0 | 144,569,462 | 100% | ||
zarkill | 0 | 144,488,183 | 100% | ||
sara121 | 0 | 143,874,540 | 100% | ||
redlionresources | 0 | 144,068,138 | 100% | ||
brogue | 0 | 143,910,085 | 100% | ||
xet | 0 | 143,558,984 | 100% | ||
joshuatree12 | 0 | 143,365,600 | 100% | ||
fat.cat | 0 | 140,378,555 | 100% | ||
marcdvirus | 0 | 143,186,482 | 100% | ||
ribbitnot | 0 | 142,607,639 | 100% | ||
maxdeveloper | 0 | 0 | 100% | ||
gichan | 0 | 0 | 100% | ||
unzro | 0 | 0 | 100% |
Cool work! Welcome to me blog @alex2016
author | alex2016 |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t034354180z |
category | arduino |
json_metadata | {"tags":["arduino"],"users":["alex2016"]} |
created | 2016-09-25 03:43:54 |
last_update | 2016-09-25 03:43:54 |
depth | 1 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 39 |
author_reputation | 14,164,066,108,826 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,352,675 |
net_rshares | 0 |
So sool. I which I has one to pay with. Maybe I could try something similar with my Raspberry Pi Nice Post tho!
author | arcange |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t202010573z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-24 20:20:09 |
last_update | 2016-09-24 20:20:09 |
depth | 1 |
children | 1 |
last_payout | 2016-10-25 23:03: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 | 111 |
author_reputation | 1,146,615,920,099,066 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,349,782 |
net_rshares | 0 |
On the Rpi you can use python and you have tonnes of memory which makes it a lot easier. Just as much fun, too. I say go for it!
author | bitcalm |
---|---|
permlink | re-arcange-re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t202937587z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-24 20:29:36 |
last_update | 2016-09-24 20:29:36 |
depth | 2 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 128 |
author_reputation | 24,919,530,803,138 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,349,847 |
net_rshares | 0 |
This is awesome
author | bhavnapatel68 |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t112959674z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 11:30:00 |
last_update | 2016-09-25 11:30:00 |
depth | 1 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 4,976,629,087,476 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,354,919 |
net_rshares | 0 |
I need an upvote to my steemit post. This is the link: https://steemit.com/steemit/@collin22000/how-to-make-your-child-smarter
author | collin22000 |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t224440346z |
category | arduino |
json_metadata | {"tags":["arduino"],"links":["https://steemit.com/steemit/@collin22000/how-to-make-your-child-smarter"]} |
created | 2016-09-24 22:44:45 |
last_update | 2016-09-24 22:44:45 |
depth | 1 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 127 |
author_reputation | 4,511,051,043 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,350,952 |
net_rshares | 0 |
do you know of any online/offline emulator of the arduino? for testing without the actual chipset...
author | cristi |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t195854403z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-24 19:58:54 |
last_update | 2016-09-24 19:58:54 |
depth | 1 |
children | 1 |
last_payout | 2016-10-25 23:03: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 | 100 |
author_reputation | 128,305,218,872,904 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,349,616 |
net_rshares | 48,992,600,053 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcalm | 0 | 48,992,600,053 | 100% |
I found [this stack exchange post](http://arduino.stackexchange.com/questions/61/can-i-program-for-arduino-without-having-a-real-board) with a list of possibilities. I've not used any of them and have no idea how well they work. The complicated side of emulating Arduino's is that you need to emulate the chip, and not all boards use the same one. An Uno uses a different chip to a Mega, for example. That complicates things. I've always said to myself if I ever end up a squadrillionaire (that's more zero's than there are atoms in the observable universe), I'd write one. It'd be a fun project, but not for the faint of heart. But in all honesty these things are so cheap ($50 or so) you don't lose much if it ends up collecting dust in a cupboard. For me an emulator would help with automated testing.
author | bitcalm |
---|---|
permlink | re-cristi-re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t202851661z |
category | arduino |
json_metadata | {"tags":["arduino"],"links":["http://arduino.stackexchange.com/questions/61/can-i-program-for-arduino-without-having-a-real-board"]} |
created | 2016-09-24 20:28:51 |
last_update | 2016-09-24 20:28:51 |
depth | 2 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 806 |
author_reputation | 24,919,530,803,138 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,349,840 |
net_rshares | 0 |
This is fantastic! The applications are so vast it's hard to even fathom. Amazing work! Very exciting!
author | dougkarr |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t162951143z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 16:29:51 |
last_update | 2016-09-25 16:29:51 |
depth | 1 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 102 |
author_reputation | 42,423,973,873,019 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,356,887 |
net_rshares | 6,449,511,334 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dougkarr | 0 | 6,449,511,334 | 100% |
WOW. This is awesome. I'd love to have one of those large displays made of LED lights, connected to rPI to show updates in realtime.
author | furion |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t193545489z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-24 19:35:45 |
last_update | 2016-09-24 19:35:45 |
depth | 1 |
children | 1 |
last_payout | 2016-10-25 23:03:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 132 |
author_reputation | 116,503,940,714,958 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,349,427 |
net_rshares | 161,989,034,768 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aizensou | 0 | 111,975,755,547 | 100% | ||
bitcalm | 0 | 50,013,279,221 | 100% |
On an rPi you could probably get away with using Piston since you could use python :) Arduino's are much, much, much less powerful. This makes programming them a lot more challenging, but still fun. The LED matrix in the post is made by Sure Electronics, and you can chain up to four of them together. That's 128x16!
author | bitcalm |
---|---|
permlink | re-furion-re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t202151137z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-24 20:21:51 |
last_update | 2016-09-24 20:21:51 |
depth | 2 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 317 |
author_reputation | 24,919,530,803,138 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,349,794 |
net_rshares | 0 |
Great project, I have actually programmed few autonomous robots on raspberry pi and I think exploring blockchain or Steem on it, would be great way to do some experiments. I would love to join experiments if you have some in mind?
author | good-karma |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-2016925t71956339z |
category | arduino |
json_metadata | {"tags":"arduino"} |
created | 2016-09-25 04:20:00 |
last_update | 2016-09-25 04:20:00 |
depth | 1 |
children | 1 |
last_payout | 2016-10-25 23:03: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 | 230 |
author_reputation | 656,210,817,936,836 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,352,878 |
net_rshares | 50,018,190,190 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcalm | 0 | 50,018,190,190 | 100% |
For now I don't have any experiments in mind. The focus will be on improving the efficiency of the library. This will mean adapting the web socket library to work with streams rather than load data into memory, then the stream can just "pass through" the Arduino. I'll also be adding more features in the sense of support for additional RPC calls. I'll couple this with additional components so people get a taste for what's possible.
author | bitcalm |
---|---|
permlink | re-good-karma-re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-2016925t71956339z-20160925t071844218z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 07:18:42 |
last_update | 2016-09-25 07:18:42 |
depth | 2 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 435 |
author_reputation | 24,919,530,803,138 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,353,657 |
net_rshares | 0 |
WOW. This is awesome
author | hien-tran |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t071424296z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 07:14:27 |
last_update | 2016-09-25 07:14:27 |
depth | 1 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 20 |
author_reputation | 26,408,240,002,629 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,353,637 |
net_rshares | 13,436,687,730 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hien-tran | 0 | 13,436,687,730 | 100% |
Great project! I might be helping out on the github repo!
author | nicoschtein |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20161001t215022067z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-10-01 21:50:21 |
last_update | 2016-10-01 21:50:21 |
depth | 1 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 57 |
author_reputation | 6,372,873,566 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,417,272 |
net_rshares | 0 |
great stuff. now we need something similar on the RPI? or is there already one for the RPI?
author | ninjaboon |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t043727814z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 04:37:12 |
last_update | 2016-09-25 04:37:12 |
depth | 1 |
children | 1 |
last_payout | 2016-10-25 23:03: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 | 91 |
author_reputation | 95,092,046,715 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,352,941 |
net_rshares | 0 |
You can use python on an RPi so you can use existing libraries such as Piston. I'm not sure how you'd access the IO pins, but I'm sure it's possible, I've just never tried.
author | bitcalm |
---|---|
permlink | re-ninjaboon-re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t071639227z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 07:16:39 |
last_update | 2016-09-25 07:16:39 |
depth | 2 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 172 |
author_reputation | 24,919,530,803,138 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,353,651 |
net_rshares | 0 |
This is great, bookmarking: $b.programming $b.arduino $b.steemit
author | nonlinearone |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t225302097z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-24 22:53:03 |
last_update | 2016-09-24 22:53:03 |
depth | 1 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 64 |
author_reputation | 32,682,086,388,813 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,351,022 |
net_rshares | 0 |
Awesome project @bitcalm - Can't wait to play around with this. I'll update the Steem API Docs this is a great toolkit add-on.. The LED matrix is awesome and chaining them up would be epic :)
author | originate |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t220032782z |
category | arduino |
json_metadata | {"tags":["arduino"],"users":["bitcalm"]} |
created | 2016-09-24 22:00:33 |
last_update | 2016-09-24 22:30:00 |
depth | 1 |
children | 1 |
last_payout | 2016-10-25 23:03: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 | 191 |
author_reputation | 175,421,925,272,702 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,350,644 |
net_rshares | 48,993,741,607 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcalm | 0 | 48,993,741,607 | 100% |
Thanks. Great that you'll add it to the docs. There are so many components you can do fun things with, I'm sure others will come up with creative projects. Can't wait to see them :)
author | bitcalm |
---|---|
permlink | re-originate-re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t113324029z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 11:33:24 |
last_update | 2016-09-25 11:33:24 |
depth | 2 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 181 |
author_reputation | 24,919,530,803,138 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,354,940 |
net_rshares | 0 |
Awesome!
author | team101 |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160924t215038122z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-24 21:50:51 |
last_update | 2016-09-24 21:50:51 |
depth | 1 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 8 |
author_reputation | 12,700,047,182,916 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,350,587 |
net_rshares | 0 |
holy shit .. this is cooool! Now let's add transaction signing to it .. then we can go IoT .. we'll be out in the public before the industry realizes what's going on!!
author | xeroc |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t102310008z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 10:23:09 |
last_update | 2016-09-25 10:23:09 |
depth | 1 |
children | 1 |
last_payout | 2016-10-25 23:03:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 167 |
author_reputation | 118,819,064,085,695 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,354,498 |
net_rshares | 402,267,972,225 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 348,712,067,078 | 100% | ||
gekko | 0 | 2,371,359,496 | 100% | ||
bitcalm | 0 | 51,039,784,325 | 100% | ||
corruption | 0 | 144,761,326 | 100% |
Thanks. There is a lot of potential with IoT. I started this just thinking of a more physical notifications. I'm sure there are many other uses I'm not aware of. If you have ideas, let me know :) Edit: I just thought of one - with some additions to the library, you can make an actual bot. You could even make it move around for effect while it upvotes. Lol.
author | bitcalm |
---|---|
permlink | re-xeroc-re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t113136305z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 11:31:36 |
last_update | 2016-09-25 11:34:57 |
depth | 2 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 359 |
author_reputation | 24,919,530,803,138 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,354,931 |
net_rshares | 50,108,922 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snmfoundation | 0 | 50,108,922 | 100% |
It's amazing bro
author | zulfan91 |
---|---|
permlink | re-bitcalm-steemduino-an-open-source-arduino-library-for-steem-20160925t023807079z |
category | arduino |
json_metadata | {"tags":["arduino"]} |
created | 2016-09-25 02:38:06 |
last_update | 2016-09-25 02:38:06 |
depth | 1 |
children | 0 |
last_payout | 2016-10-25 23:03: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 | 16 |
author_reputation | 590,940,014,050 |
root_title | "[steemduino] An Open Source Arduino Library for Steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,352,305 |
net_rshares | 0 |