create account

Biomechatronics II: Move Things with Your Muscles by jshmu

View this thread on: hive.blogpeakd.comecency.com
· @jshmu ·
$171.60
Biomechatronics II: Move Things with Your Muscles
# 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>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorjshmu
permlinkbiomechatronics-ii-move-things-with-your-muscles
categoryengineering
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"}
created2018-01-17 14:35:12
last_update2018-01-17 14:35:12
depth0
children16
last_payout2018-01-24 14:35:12
cashout_time1969-12-31 23:59:59
total_payout_value128.924 HBD
curator_payout_value42.672 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,244
author_reputation888,442,970,976
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,185,118
net_rshares20,498,108,022,397
author_curate_reward""
vote details (49)
@buildrobotics ·
Awesome!!!
👍  
properties (23)
authorbuildrobotics
permlinkre-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180122t133755652z
categoryengineering
json_metadata{"tags":["engineering"],"app":"steemit/0.1"}
created2018-01-22 13:37:54
last_update2018-01-22 13:37:54
depth1
children2
last_payout2018-01-29 13:37: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_length10
author_reputation575,034,145,280
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,386,152
net_rshares1,422,643,044
author_curate_reward""
vote details (1)
@jshmu ·
$0.02
Thanks @buildrobotics :)
👍  
properties (23)
authorjshmu
permlinkre-buildrobotics-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180122t170409140z
categoryengineering
json_metadata{"tags":["engineering"],"users":["buildrobotics"],"app":"steemit/0.1"}
created2018-01-22 17:04:09
last_update2018-01-22 17:04:09
depth2
children1
last_payout2018-01-29 17:04:09
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation888,442,970,976
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,429,875
net_rshares2,295,573,203
author_curate_reward""
vote details (1)
@buildrobotics ·
Looking over your profile I see you make a lot of cool stuff - followed :)
properties (22)
authorbuildrobotics
permlinkre-jshmu-re-buildrobotics-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180122t192702246z
categoryengineering
json_metadata{"tags":["engineering"],"app":"steemit/0.1"}
created2018-01-22 19:27:03
last_update2018-01-22 19:27:03
depth3
children0
last_payout2018-01-29 19:27:03
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_length74
author_reputation575,034,145,280
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,458,527
net_rshares0
@choogirl ·
This is a great post @jshmu. Your explanations are really clear and easy to follow.
👍  
properties (23)
authorchoogirl
permlinkre-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180118t033111952z
categoryengineering
json_metadata{"tags":["engineering"],"users":["jshmu"],"app":"steemit/0.1"}
created2018-01-18 03:34:27
last_update2018-01-18 03:34:27
depth1
children1
last_payout2018-01-25 03:34:27
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_length83
author_reputation31,169,279,441,499
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,308,665
net_rshares605,286,229
author_curate_reward""
vote details (1)
@jshmu ·
Thank you @choogirl. That's what I hoped for :)
properties (22)
authorjshmu
permlinkre-choogirl-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180120t231159076z
categoryengineering
json_metadata{"tags":["engineering"],"users":["choogirl"],"app":"steemit/0.1"}
created2018-01-20 23:11:48
last_update2018-01-20 23:11:48
depth2
children0
last_payout2018-01-27 23:11:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation888,442,970,976
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,971,733
net_rshares0
@djlethalskillz ·
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
👍  
properties (23)
authordjlethalskillz
permlinkre-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180118t012127320z
categoryengineering
json_metadata{"tags":["engineering"],"app":"steemit/0.1"}
created2018-01-18 01:21:30
last_update2018-01-18 01:21:30
depth1
children1
last_payout2018-01-25 01:21:30
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_length162
author_reputation194,550,162,838,708
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,290,273
net_rshares1,885,413,023
author_curate_reward""
vote details (1)
@jshmu ·
haha aw thanks @djlethalskillz
properties (22)
authorjshmu
permlinkre-djlethalskillz-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180121t002805083z
categoryengineering
json_metadata{"tags":["engineering"],"users":["djlethalskillz"],"app":"steemit/0.1"}
created2018-01-21 00:27:54
last_update2018-01-21 00:27:54
depth2
children0
last_payout2018-01-28 00:27: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_length30
author_reputation888,442,970,976
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,982,584
net_rshares0
@natureofbeing ·
very cool!!
👍  
properties (23)
authornatureofbeing
permlinkre-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180129t023224099z
categoryengineering
json_metadata{"tags":["engineering"],"app":"steemit/0.1"}
created2018-01-29 02:32:24
last_update2018-01-29 02:32:24
depth1
children1
last_payout2018-02-05 02:32:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation99,245,337,512,310
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,162,217
net_rshares1,919,018,114
author_curate_reward""
vote details (1)
@jshmu ·
Thank you @natureofbeing!
properties (22)
authorjshmu
permlinkre-natureofbeing-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180129t154150918z
categoryengineering
json_metadata{"tags":["engineering"],"users":["natureofbeing"],"app":"steemit/0.1"}
created2018-01-29 15:41:51
last_update2018-01-29 15:41:51
depth2
children0
last_payout2018-02-05 15:41: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_length25
author_reputation888,442,970,976
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,317,742
net_rshares0
@rksumanthraju ·
Great Post !!!!
👍  
properties (23)
authorrksumanthraju
permlinkre-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180122t171405944z
categoryengineering
json_metadata{"tags":["engineering"],"app":"steemit/0.1"}
created2018-01-22 17:14:06
last_update2018-01-22 17:14:06
depth1
children1
last_payout2018-01-29 17:14: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_length15
author_reputation2,618,068,341,408
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,431,928
net_rshares1,394,190,183
author_curate_reward""
vote details (1)
@jshmu ·
Thank you @rksumanthraju :)
properties (22)
authorjshmu
permlinkre-rksumanthraju-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180123t023400785z
categoryengineering
json_metadata{"tags":["engineering"],"users":["rksumanthraju"],"app":"steemit/0.1"}
created2018-01-23 02:34:03
last_update2018-01-23 02:34:03
depth2
children0
last_payout2018-01-30 02:34:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation888,442,970,976
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,533,599
net_rshares0
@sndbox ·
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
👍  
properties (23)
authorsndbox
permlinkre-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180120t210747453z
categoryengineering
json_metadata{"tags":["engineering"],"users":["jshmu"],"app":"steemit/0.1"}
created2018-01-20 21:07:48
last_update2018-01-20 21:07:48
depth1
children1
last_payout2018-01-27 21:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation633,122,316,798,067
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,952,336
net_rshares614,503,785
author_curate_reward""
vote details (1)
@jshmu ·
Thank you so much for the support @sndbox! :)
properties (22)
authorjshmu
permlinkre-sndbox-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180120t231220170z
categoryengineering
json_metadata{"tags":["engineering"],"users":["sndbox"],"app":"steemit/0.1"}
created2018-01-20 23:12:09
last_update2018-01-20 23:12:09
depth2
children0
last_payout2018-01-27 23:12:09
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_length45
author_reputation888,442,970,976
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,971,797
net_rshares0
@steemitboard ·
Congratulations @jshmu! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](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)!
👍  
properties (23)
authorsteemitboard
permlinksteemitboard-notify-jshmu-20180123t084821000z
categoryengineering
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2018-01-23 08:48:21
last_update2018-01-23 08:48:21
depth1
children0
last_payout2018-01-30 08:48:21
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_length680
author_reputation38,975,615,169,260
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,597,383
net_rshares1,422,643,044
author_curate_reward""
vote details (1)
@voronoi ·
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 :)
👍  
properties (23)
authorvoronoi
permlinkre-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180117t221849177z
categoryengineering
json_metadata{"tags":["engineering"],"users":["jshmu"],"app":"steemit/0.1"}
created2018-01-17 22:18:48
last_update2018-01-17 22:18:48
depth1
children1
last_payout2018-01-24 22:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation122,571,378,609,706
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,265,774
net_rshares1,372,850,537
author_curate_reward""
vote details (1)
@jshmu ·
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.
properties (22)
authorjshmu
permlinkre-voronoi-re-jshmu-biomechatronics-ii-move-things-with-your-muscles-20180120t231557453z
categoryengineering
json_metadata{"tags":["engineering"],"users":["voronoi"],"app":"steemit/0.1"}
created2018-01-20 23:15:45
last_update2018-01-20 23:15:45
depth2
children0
last_payout2018-01-27 23:15:45
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_length275
author_reputation888,442,970,976
root_title"Biomechatronics II: Move Things with Your Muscles"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,972,323
net_rshares0