# Last post, I made a <a href="https://steemit.com/engineering/@jshmu/biomechatronics-intro-simple-lasercut-rack-and-pinion-mechanism">simple rack and pinion claw mechanism</a> that moves like this: > <center>https://media.giphy.com/media/1a9zi6DxZRzb2/giphy.gif </center> > <center>My rack and pinion claw in action. All I have to do is push and pull the rack to move the claw up and down.</center> But here, I have to use my fingers to make the claw pinch. What if I wanted the claw to pinch by itself? Even better: what if I wanted it to be muscle-activated — pinch when I flex my arm muscle? That's what I did. > <center> https://media.giphy.com/media/3o752blvicsEaD6XcI/giphy.gif </center> > <center> When my partner flexes, the claw pinches. When she relaxes, the claw opens up. </center> You can imagine something like this is similar to how muscle-activated prosthetics work. > <center> https://media2.giphy.com/media/7T8yZiFFHz9Sg/giphy.gif </center> > <center> The person determines what his prosthetic hand does by contracting the remaining muscles in his amputated limb. That muscle contraction information is processed by a computer and conveyed to the prosthetic hand, telling it exactly what to do. </center> ### Here are the steps for how I did it: 1. Get data from arm muscle contracting 2. Process that data so it is perfectly clear when the muscle is contracting 3. Make a motor move when that data says the muscle is contracting 4. Attach that motor to my claw mechanism ## 1. Get data from arm muscles contracting I hooked up my partner to some EMG electrodes. > <center><a href="https://imgbb.com/"><img src="https://image.ibb.co/c7KVE6/01_11_18_biomech_muscle_electrodes_1.png" alt="01_11_18_biomech_muscle_electrodes_1" border="0"></a></center> > <center> Black is ground, red is positive, and white is reference. They're adhesive; you just need to add some conducting gel between the electrodes and the skin before you put it on. </center> Then, using a bunch of cables, we sent the voltages from the electrodes into a computer with MATLAB (a programming software), we got this: > <center><a href="http://imgbb.com/"><img src="http://image.ibb.co/e1xcE6/01_10_18_biomech_muscle_unprocessed_only_emg_2.png" alt="01_10_18_biomech_muscle_unprocessed_only_emg_2" border="0"></a></center> > <center> Those spikes in the data (shown by the red arrows) happened when my partner contracted her arm muscles! But this graph is very shaky.</center> The electrodes are collecting muscle contraction data, but it isn't smooth enough to be useful. How did we clean it up? ## 2. Process that data so it is perfectly clear when the muscle is contracting The data we got has time in the x-axis; it is in the time-domain. However, to clean it up, we want it in the frequency-domain. This groups all the voltage changes that happen at the same rate in the time-domain graph into a single spike in the frequency-domain plot. The bigger the spike, the greater the voltage change happening at that frequency. Basically, we want the left graph below to turn into the right graph below: > <center><a href="https://ibb.co/hcxQE6"><img src="https://preview.ibb.co/crTnSR/01_10_18_biomech_muscle_fourier_1.png" alt="01_10_18_biomech_muscle_fourier_1" border="0"></a></center> We did this with our data using a <i>Fourier transform</i> algorithm in MATLAB. It took all the data we collected in our 5-second window and turned it into this: ><center><a href="https://ibb.co/cBvtHR"><img src="https://preview.ibb.co/bukFWm/01_10_18_biomech_muscle_unprocessed_6.png" alt="01_10_18_biomech_muscle_unprocessed_6" border="0"></a></center> > <center>Looking at the transformed data [right] makes it much easier to decide what information I want and what I do not want. For instance, I can decide that I want to keep the stuff at 10 Hz and to get rid of the stuff at 10,000 Hz. </center> That big spike at 60 Hz in the right plot is <i>noise</i> from the outlets we needed to plug our equipment into. (Outlets output electrical power in alternating current or AC, which alternates at a rate of 60 times per second. Fun fact: it would be 50 Hz if we were in Europe or Asia because the standards for electrical outlets are just different in those continents). We want to get rid of that 60 Hz noise or <i>filter</i> it out. We did this by adding an <b>instrumentation amplifier</b>. Basically, this is an arrangement of electrical components that, when applied to a circuit, takes two input signals and gives you one output signal. That output signal shows only the difference between the two inputs. We used an instrumentation amplifier to get the difference between the red and the white electrodes. The output was only the voltage changes that are happening across the red and white electrodes (i.e. the voltage changes due to the muscle moving/contracting!). Here it is: > <center> <a href="https://ibb.co/hcdxcR"><img src="https://preview.ibb.co/fCkM46/01_10_18_biomech_muscle_processed_1.png" alt="01_10_18_biomech_muscle_processed_1" border="0"></a> </center> > <center> That peak at 60 Hz [right plot] is MUCH smaller now relative to everything else. With the instrumentation amplifier, we also got rid of a lot of other noise in the room from other electronics (because it was consistent across the red and white electrode), making the data much smoother in the time-domain [left plot]. </center> Alright, much cleaner, but not quite what we want. This is what we want: ><center><a href="https://imgbb.com/"><img src="https://image.ibb.co/mDVccR/01_10_18_biomech_enve.png" alt="01_10_18_biomech_enve" border="0"></a></center> ><center>All the red arrows point to spikes that clearly correspond to a muscle contraction. Anything that isn't a contraction is flat.</center> And that is what we got when we added an <b>envelope detector</b>. This arrangement of electrical components takes a very shaky, high-frequency signal and outputs data that just skims the top of it, like this: > <center><a href="https://imgbb.com/"><img src="https://image.ibb.co/dSF7Bm/Untitled_drawing_35.png" alt="Untitled_drawing_35" border="0"></a> </center> > <center> The blue line is what we had before envelope detection. The red line is what we have after envelope detection (as the green line in the previous plot).</center> ## 3. Make a motor move when that data says the muscle is contracting We have this nice clean data. Now we want a motor to see that data and determine whether it will spin forward or backward. First, we needed an <b>Arduino </b>(a microcontroller or a really small computer), which we programmed to look at the processed data and decide whether the muscle was contracting or not (whether the voltage was above a threshold or not). ><center><a href="https://imgbb.com/"><img src="https://image.ibb.co/bLaPrm/01_10_18_motor_direction_biomech.png" alt="01_10_18_motor_direction_biomech" border="0"></a></center> ><center> If the processed muscle contraction data was above the 1.5 volt threshold, the Arduino told the motor to spin forward. If not, spin backward. </center> That decision was sent to an component called an <b>H-bridge</b>, another arrangement of electrical components. Basically, by switching the poles of the H-bridge (V+ and ground), we controlled which direction the motor turned. The Arduino did that switching for us. > <center><a href="http://imgbb.com/"><img src="http://image.ibb.co/eDZJMm/01_10_18_biomech_h_bridge_muscle.png" alt="01_10_18_biomech_h_bridge_muscle" border="0"></a></center> > <center> If above the 1.5 volt threshold, Arduino sends the right information to the H-bridge to turn the motor forward. If below, Arduino sends the left information (just flips the ground and V+) to the H-bridge to turn the motor backward.</center> Now that we have the motor turning forward if the muscle is contracted and backward if the muscle is relaxed, we need to connect that motor to the rack and pinion mechansim. ## 4. Attach that motor to my claw mechanism To link the motor to the mechanism, we just made another little gear, and attached it to everything else: > <center><a href="https://imgbb.com/"><img src="https://image.ibb.co/diR6nR/Untitled_drawing_40.png" alt="Untitled_drawing_40" border="0"></a> </center> > <center>The motor is attached to the gear. When the gear turns forward, it moves the rack and makes the claw pinch. </center> And... <b><i>TADA</i></b>, a mechanism that responds to arm movement! Here's a quick recap: ><center><a href="http://ibb.co/maosE6"><img src="http://preview.ibb.co/n7OQZ6/Untitled_drawing_42.png" alt="Untitled_drawing_42" border="0"></a></center> > <center> https://media.giphy.com/media/3o752blvicsEaD6XcI/giphy.gif </center> > <center> Here it is again in case you forgot what the goal was during all this technical stuff.</center> <center> ### Thanks for reading! If you missed my post about making the claw mechanism, <a href="https://steemit.com/engineering/@jshmu/biomechatronics-intro-simple-lasercut-rack-and-pinion-mechanism">here it is.</a> <br> Stay tuned! I have two more projects from my Biomechatronics <br>class to share, including my robotic gripper. # Feel free to post questions, and follow @jshmu. </center>
author | jshmu |
---|---|
permlink | biomechatronics-ii-move-things-with-your-muscles |
category | engineering |
json_metadata | {"tags":["engineering","science","design","biomedical","electronics"],"users":["jshmu"],"image":["https://media.giphy.com/media/1a9zi6DxZRzb2/giphy.gif","https://media.giphy.com/media/3o752blvicsEaD6XcI/giphy.gif","https://media2.giphy.com/media/7T8yZiFFHz9Sg/giphy.gif","https://image.ibb.co/c7KVE6/01_11_18_biomech_muscle_electrodes_1.png","http://image.ibb.co/e1xcE6/01_10_18_biomech_muscle_unprocessed_only_emg_2.png","https://preview.ibb.co/crTnSR/01_10_18_biomech_muscle_fourier_1.png","https://preview.ibb.co/bukFWm/01_10_18_biomech_muscle_unprocessed_6.png","https://preview.ibb.co/fCkM46/01_10_18_biomech_muscle_processed_1.png","https://image.ibb.co/mDVccR/01_10_18_biomech_enve.png","https://image.ibb.co/dSF7Bm/Untitled_drawing_35.png","https://image.ibb.co/bLaPrm/01_10_18_motor_direction_biomech.png","http://image.ibb.co/eDZJMm/01_10_18_biomech_h_bridge_muscle.png","https://image.ibb.co/diR6nR/Untitled_drawing_40.png","http://preview.ibb.co/n7OQZ6/Untitled_drawing_42.png"],"links":["https://steemit.com/engineering/@jshmu/biomechatronics-intro-simple-lasercut-rack-and-pinion-mechanism","https://imgbb.com/","http://imgbb.com/","https://ibb.co/hcxQE6","https://ibb.co/cBvtHR","https://ibb.co/hcdxcR","http://ibb.co/maosE6"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-01-17 14:35:12 |
last_update | 2018-01-17 14:35:12 |
depth | 0 |
children | 16 |
last_payout | 2018-01-24 14:35:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 128.924 HBD |
curator_payout_value | 42.672 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,244 |
author_reputation | 888,442,970,976 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,185,118 |
net_rshares | 20,498,108,022,397 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 95,523,261,138 | 0.24% | ||
kushed | 0 | 43,872,382,258 | 24% | ||
anwenbaumeister | 0 | 372,602,299,914 | 24% | ||
roelandp | 0 | 951,813,009,587 | 12% | ||
ausbitbank | 0 | 82,949,804,431 | 1% | ||
liberosist | 0 | 1,226,182,095,312 | 24% | ||
natureofbeing | 0 | 0 | 20% | ||
meerkat | 0 | 573,816,912,946 | 24% | ||
curie | 0 | 1,000,100,496,360 | 24% | ||
hendrikdegrote | 0 | 10,578,555,580,784 | 28.79% | ||
voronoi | 0 | 778,230,033,405 | 100% | ||
benfink | 0 | 23,029,868,551 | 100% | ||
elizacheng | 0 | 1,044,388,025 | 5% | ||
choogirl | 0 | 70,937,845,303 | 7% | ||
world-travel-pro | 0 | 3,029,872,331 | 5% | ||
slefesteem | 0 | 131,026,104 | 25% | ||
kenfinkel | 0 | 8,505,676,445 | 100% | ||
wdougwatson | 0 | 602,377,575 | 5% | ||
katari | 0 | 2,163,291,815 | 100% | ||
sndbox | 0 | 4,603,709,130,414 | 25% | ||
thinknzombie | 0 | 2,764,779,800 | 1% | ||
mcw | 0 | 3,020,779,882 | 10% | ||
somethingburger | 0 | 5,480,476,921 | 100% | ||
shadly | 0 | 0 | 100% | ||
buildrobotics | 0 | 2,440,627,451 | 100% | ||
jshmu | 0 | 592,996,153 | 100% | ||
masterwriter | 0 | 91,137,340 | 25% | ||
djlethalskillz | 0 | 11,803,185,176 | 100% | ||
saimegh | 0 | 4,030,657,337 | 100% | ||
rayken04 | 0 | 54,493,713 | 10% | ||
playitforward | 0 | 13,621,005,094 | 25% | ||
mrblinddraw | 0 | 10,206,145,215 | 25% | ||
animagic | 0 | 4,467,076,808 | 25% | ||
rksumanthraju | 0 | 461,105,313 | 100% | ||
peterschilder | 0 | 11,377,134,686 | 100% | ||
emrebeyler | 0 | 493,585,826 | 1% | ||
halleyleow | 0 | 167,585,352 | 5% | ||
shaff.aff | 0 | 153,635,240 | 25% | ||
jeffbernst | 0 | 2,745,559,602 | 100% | ||
jctdesign | 0 | 288,684,001 | 100% | ||
zapper | 0 | 170,539,574 | 3% | ||
erhanoz | 0 | 1,889,041,395 | 25% | ||
hostfatan | 0 | 58,352,584 | 25% | ||
donaldpete | 0 | 135,249,409 | 25% | ||
ohmylove | 0 | 80,006,347 | 25% | ||
fosterswisdom | 0 | 150,490,189 | 100% | ||
howtosteem | 0 | 3,885,346,036 | 100% | ||
sproutcowboy | 0 | 534,592,259 | 100% | ||
meonline | 0 | 144,400,996 | 100% |
Awesome!!!
author | buildrobotics |
---|---|
permlink | re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180122t133755652z |
category | engineering |
json_metadata | {"tags":["engineering"],"app":"steemit/0.1"} |
created | 2018-01-22 13:37:54 |
last_update | 2018-01-22 13:37:54 |
depth | 1 |
children | 2 |
last_payout | 2018-01-29 13:37:54 |
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 | 10 |
author_reputation | 575,034,145,280 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,386,152 |
net_rshares | 1,422,643,044 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jshmu | 0 | 1,422,643,044 | 100% |
Thanks @buildrobotics :)
author | jshmu |
---|---|
permlink | re-buildrobotics-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180122t170409140z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["buildrobotics"],"app":"steemit/0.1"} |
created | 2018-01-22 17:04:09 |
last_update | 2018-01-22 17:04:09 |
depth | 2 |
children | 1 |
last_payout | 2018-01-29 17:04:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 888,442,970,976 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,429,875 |
net_rshares | 2,295,573,203 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
buildrobotics | 0 | 2,295,573,203 | 100% |
Looking over your profile I see you make a lot of cool stuff - followed :)
author | buildrobotics |
---|---|
permlink | re-jshmu-re-buildrobotics-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180122t192702246z |
category | engineering |
json_metadata | {"tags":["engineering"],"app":"steemit/0.1"} |
created | 2018-01-22 19:27:03 |
last_update | 2018-01-22 19:27:03 |
depth | 3 |
children | 0 |
last_payout | 2018-01-29 19:27:03 |
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 | 74 |
author_reputation | 575,034,145,280 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,458,527 |
net_rshares | 0 |
This is a great post @jshmu. Your explanations are really clear and easy to follow.
author | choogirl |
---|---|
permlink | re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180118t033111952z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["jshmu"],"app":"steemit/0.1"} |
created | 2018-01-18 03:34:27 |
last_update | 2018-01-18 03:34:27 |
depth | 1 |
children | 1 |
last_payout | 2018-01-25 03:34:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 31,169,279,441,499 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,308,665 |
net_rshares | 605,286,229 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jshmu | 0 | 605,286,229 | 100% |
Thank you @choogirl. That's what I hoped for :)
author | jshmu |
---|---|
permlink | re-choogirl-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180120t231159076z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["choogirl"],"app":"steemit/0.1"} |
created | 2018-01-20 23:11:48 |
last_update | 2018-01-20 23:11:48 |
depth | 2 |
children | 0 |
last_payout | 2018-01-27 23:11:48 |
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 | 47 |
author_reputation | 888,442,970,976 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,971,733 |
net_rshares | 0 |
Dope Stuff! reminds me of when i was yonger i always wanted to build my own robot but i ended up in music domain making robot music hahah Great stuff! Keep it up
author | djlethalskillz |
---|---|
permlink | re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180118t012127320z |
category | engineering |
json_metadata | {"tags":["engineering"],"app":"steemit/0.1"} |
created | 2018-01-18 01:21:30 |
last_update | 2018-01-18 01:21:30 |
depth | 1 |
children | 1 |
last_payout | 2018-01-25 01:21:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 162 |
author_reputation | 194,550,162,838,708 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,290,273 |
net_rshares | 1,885,413,023 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jshmu | 0 | 1,885,413,023 | 100% |
haha aw thanks @djlethalskillz
author | jshmu |
---|---|
permlink | re-djlethalskillz-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180121t002805083z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["djlethalskillz"],"app":"steemit/0.1"} |
created | 2018-01-21 00:27:54 |
last_update | 2018-01-21 00:27:54 |
depth | 2 |
children | 0 |
last_payout | 2018-01-28 00:27:54 |
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 | 30 |
author_reputation | 888,442,970,976 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,982,584 |
net_rshares | 0 |
very cool!!
author | natureofbeing |
---|---|
permlink | re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180129t023224099z |
category | engineering |
json_metadata | {"tags":["engineering"],"app":"steemit/0.1"} |
created | 2018-01-29 02:32:24 |
last_update | 2018-01-29 02:32:24 |
depth | 1 |
children | 1 |
last_payout | 2018-02-05 02:32:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 99,245,337,512,310 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,162,217 |
net_rshares | 1,919,018,114 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jshmu | 0 | 1,919,018,114 | 100% |
Thank you @natureofbeing!
author | jshmu |
---|---|
permlink | re-natureofbeing-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180129t154150918z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["natureofbeing"],"app":"steemit/0.1"} |
created | 2018-01-29 15:41:51 |
last_update | 2018-01-29 15:41:51 |
depth | 2 |
children | 0 |
last_payout | 2018-02-05 15:41:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 888,442,970,976 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,317,742 |
net_rshares | 0 |
Great Post !!!!
author | rksumanthraju |
---|---|
permlink | re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180122t171405944z |
category | engineering |
json_metadata | {"tags":["engineering"],"app":"steemit/0.1"} |
created | 2018-01-22 17:14:06 |
last_update | 2018-01-22 17:14:06 |
depth | 1 |
children | 1 |
last_payout | 2018-01-29 17:14:06 |
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 | 2,618,068,341,408 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,431,928 |
net_rshares | 1,394,190,183 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jshmu | 0 | 1,394,190,183 | 100% |
Thank you @rksumanthraju :)
author | jshmu |
---|---|
permlink | re-rksumanthraju-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180123t023400785z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["rksumanthraju"],"app":"steemit/0.1"} |
created | 2018-01-23 02:34:03 |
last_update | 2018-01-23 02:34:03 |
depth | 2 |
children | 0 |
last_payout | 2018-01-30 02:34:03 |
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 | 27 |
author_reputation | 888,442,970,976 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,533,599 |
net_rshares | 0 |
Hello, your post was nominated for an upvote by a fellow within the Sndbox incubator. Thank you for sharing your detailed research and creative engineering with us @jshmu! Steem on :D
author | sndbox |
---|---|
permlink | re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180120t210747453z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["jshmu"],"app":"steemit/0.1"} |
created | 2018-01-20 21:07:48 |
last_update | 2018-01-20 21:07:48 |
depth | 1 |
children | 1 |
last_payout | 2018-01-27 21:07:48 |
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 | 183 |
author_reputation | 633,122,316,798,067 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,952,336 |
net_rshares | 614,503,785 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jshmu | 0 | 614,503,785 | 100% |
Thank you so much for the support @sndbox! :)
author | jshmu |
---|---|
permlink | re-sndbox-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180120t231220170z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["sndbox"],"app":"steemit/0.1"} |
created | 2018-01-20 23:12:09 |
last_update | 2018-01-20 23:12:09 |
depth | 2 |
children | 0 |
last_payout | 2018-01-27 23:12: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 | 45 |
author_reputation | 888,442,970,976 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,971,797 |
net_rshares | 0 |
Congratulations @jshmu! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@jshmu) Award for the number of upvotes 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)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-jshmu-20180123t084821000z |
category | engineering |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2018-01-23 08:48:21 |
last_update | 2018-01-23 08:48:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-30 08:48:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 680 |
author_reputation | 38,975,615,169,260 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,597,383 |
net_rshares | 1,422,643,044 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jshmu | 0 | 1,422,643,044 | 100% |
This is fascinating work @jshmu Thanks for providing such a comprehensive breakdown of how you softened the muscle contraction analysis. What's the next step for your claw? Looking forward to more :)
author | voronoi |
---|---|
permlink | re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180117t221849177z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["jshmu"],"app":"steemit/0.1"} |
created | 2018-01-17 22:18:48 |
last_update | 2018-01-17 22:18:48 |
depth | 1 |
children | 1 |
last_payout | 2018-01-24 22:18:48 |
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 | 200 |
author_reputation | 122,571,378,609,706 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,265,774 |
net_rshares | 1,372,850,537 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jshmu | 0 | 1,372,850,537 | 100% |
Glad you enjoyed it @voronoi! Sorry to say that there is no next step for this claw :/ BUT robotic gripper project (will post about it in a bit) uses much more accurate muscle contraction data from the Myo Gesture Control Armband (commercially available) to move the gripper.
author | jshmu |
---|---|
permlink | re-voronoi-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180120t231557453z |
category | engineering |
json_metadata | {"tags":["engineering"],"users":["voronoi"],"app":"steemit/0.1"} |
created | 2018-01-20 23:15:45 |
last_update | 2018-01-20 23:15:45 |
depth | 2 |
children | 0 |
last_payout | 2018-01-27 23:15:45 |
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 | 275 |
author_reputation | 888,442,970,976 |
root_title | "Biomechatronics II: Move Things with Your Muscles" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,972,323 |
net_rshares | 0 |