<div class=text-justify> Now that we've looked at some [brushless motor theory](https://ecency.com/hive-196387/@electronico/brushless-motors-theoretical-basis-en) and established some [safety considerations](https://ecency.com/hive-196387/@electronico/brushless-motor-with-half-bridge) we're ready for our first real test with a brushless motor. *** >Ahora que vimos un poco de [teor铆a sobre motores brushless](https://ecency.com/hive-196387/@electronico/brushless-motors-theoretical-basis-en) y establecimos algunas [consideraciones de seguridad](https://ecency.com/hive-196387/@electronico/brushless-motor-with-half-bridge) estamos listos para nuestra primera prueba real con un motor brushless. *** <center>  </center> One of the features that makes a brushless motor stand out is its ability to work at several tens of thousands of RPMs, that speed makes them a favorite in drone construction, when used in computer disk drives however the speed is tried to be kept at 7200 RPMs in most cases. Now let's consider their use in cars or electric bikes, I wouldn't want to be on an electric bike whose wheel spins at 7200RPMs or more 馃ぃ. The complexity is not only in producing the spin, but also in controlling the speed of the spin. In today's practice we will set up an open loop circuit that only requires 3 mosfets and a microcontroller to set up control for illustrative purposes. To do this I have taken one that is attached to the casing of a storage unit (recycled and dusty) popularly known as hard disk, since the electronic card that controls this motor has been removed by default we will connect the 4 wires (3 coils plus common) to take them to our control circuit. *** >Una de las caracter铆sticas que hace resaltar un motor brushless es su capacidad para trabajar a varias decenas de miles de RPMs, esa velocidad hace que sean los favoritos en la construcci贸n de drones, cuando se usan en unidades de discos para ordenadores sin embargo la velocidad se intenta mantener en 7200 RPMs en la mayor铆a de los casos. >Ahora consideremos su uso en coches o bicicletas el茅ctricas, no quisiera estar sobre una bicicleta el茅ctrica cuya rueda gire a 7200RPMs o m谩s 馃ぃ. >La complejidad no solo est谩 en producir el giro sino, adem谩s, en controlar la velocidad del mismo. En la pr谩ctica de hoy estableceremos un circuito de bucle abierto que solo requiere de 3 mosfets y un microcontrolador para establecer un control con fines ilustrativos. >Para ello he sacado uno que va pegado a la carcaza de una unidad de almacenamiento (reciclada y polvorienta) conocida popularmente como Disco Duro, ya que se ha retirado la tarjeta electr贸nica que controla este motor por defecto conectaremos los 4 cables (3 bobinas m谩s com煤n) para llevarlos a nuestro circuito de control. *** <center>  </center> We remove the ends of the cables connected at the front and in this way we can make the connections and observe the behavior of the motor in operation. *** >Extraemos las puntas de los cables conectados por la parte delantera y de esa forma podremos hacer las conexiones y observar el comportamiento del motor en funcionamiento. *** <center>  </center> To control this man we are going to use our PIC18F2550, with 3 mosfets accompanied by the protection components described above. With an ADC we will be able to adjust the switching times of the coils which should affect the speed of the motor. *** >Para controlar a este se帽or vamos a usar nuestro PIC18F2550, con 3 mosfets acompa帽ados de los componentes de protecci贸n descritos anteriormente. >Con un ADC podremos ajustar los tiempos de conmutaci贸n de las bobinas lo cual deber铆a afectar la velocidad de giro del motor. *** <center>  </center> Finally we connect our motor to the breadboard as agreed in the circuit where the protection components are implemented. *** >Finalmente conectamos nuestro motor a la protoboard seg煤n convenimos en el circuito donde se implementan los componentes de protecciones. *** <center> https://images.ecency.com/p/2gsjgna1uruvGBHDnRaj2z6FsL6XEQR3pnqa26GnVd4M7vfxxpWsxcpCt8BcdiYBkmmBtwqEpZmJLg1FVDCS6G1dX86xWto3AoSUvTWLckB64EypvS.webp?format=webp&mode=fit </center> The physical connection of all interconnected components to each other then takes on the following appearance: *** >La conexi贸n f铆sica de todos los componentes interconectados entre s铆 toma entonces la siguiente apariencia: *** <center>  </center> And with this we have completed all the physical part, now comes the exciting part, the one where we write in a code our desire about the behavior of the motor. Let's program it! We must take into account a certain activation sequence because otherwise our motor will do anything but turn! The correct sequence to the right if we consider the ABC coils in a logic where 1 is a value of activation and 0 of deactivation we have: 100 110 010 011 001 101. If we want it to rotate in the opposite direction the sequence is: 101 001 011 010 110 100. We will establish the first sequence with the following program for our PIC18F2550: *** >Y con esto tenemos completada toda la parte f铆sica, ahora viene la parte emocionante, esa en la que escribimos en un c贸digo nuestro deseo sobre el comportamiento del motor. 隆Vamos a programarlo! >Debemos tomar en cuenta cierta secuencia de activaci贸n porque de lo contrario 隆nuestro motor har谩 cualquier cosa menos girar.! >La secuencia correcta hacia la derecha si consideramos las bobinas ABC en una l贸gica donde 1 es un valor de activaci贸n y 0 de desactivaci贸n tenemos: 100 110 010 011 001 101. >Si queremos que gire en sentido contrario la secuencia es: 101 001 011 010 110 100. >Estableceremos la primera secuencia con el siguiente programa para nuestro PIC18F2550: *** ~~~ #include <18f2550.h> #device ADC = 10 #fuses HS,NOWDT,NOPROTECT,NOLVP,PUT,CPUDIV1,NODEBUG,USBDIV,PLL5,VREGEN,NOPBADEN #use delay(Clock=20000000) #use standard_io(C) #include <map_function.c #define L1 PIN_C0 #define L2 PIN_C1 #define L3 PIN_C2 ~~~ We have set L1, L2 and L3 as the ABC coils respectively. We will set a variable to capture the ADC value and another one to take the value of the time that each coil is active, remember that long times can damage the coil. *** >Hemos establecido L1, L2 y L3 como las bobinas ABC respectivamente. Estableceremos una variable para capturar el valor del ADC y otra para llevar el valor del tiempo que dura activa cada bobina, recordemos que tiempos largos pueden da帽ar la bobina. *** ~~~ int16 adc; int16 speed; ~~~ Then if we are going to use an ADC we configure it to play with the potentiometer, we will use the map function to adapt the ADC value to the time range that we will allow between each activation signal. *** >Luego si vamos a usar un ADC lo configuramos para jugar con el potenci贸metro, usaremos la funci贸n map para adaptar el valor del ADC al rango de tiempo que permitiremos entre cada se帽al de activaci贸n. *** ~~~ void main() { setup_adc_ports(AN0); setup_adc(adc_clock_internal); while(true) { set_adc_channel(0); delay_us(20); adc = read_adc(); speed=map(adc, 0, 1023, 30000, 800); ~~~ Now we just write the activation sequence in the order described above, between each interval we include a delay whose value corresponds to the speed variable associated to the ADC values, thus determining the time between each change. *** >Ahora solo escribimos la secuencia de activaci贸n en el orden descrito unos p谩rrafos arriba, entre cada intervalo incluimos un retardo cuyo valor se corresponde a la variable speed asociada a los valores del ADC, as铆 determinamos el tiempo entre cada cambio. *** ~~~ output_low(L1); //0 output_low(L2); //0 output_low(L3); //0 delay_us(speed); output_high(L1); //1 output_low(L2); //0 output_low(L3); //0 delay_us(speed); output_high(L1); //1 output_high(L2); //1 output_low(L3); //0 delay_us(speed); output_low(L1); //0 output_high(L2); //1 output_low(L3); //0 delay_us(speed); output_low(L1); //0 output_high(L2); //1 output_high(L3); //1 delay_us(speed); output_low(L1); //0 output_low(L2); //0 output_high(L3); //1 delay_us(speed); output_high(L1); //1 output_low(L2); //0 output_high(L3); //1 delay_us(speed); } } ~~~ With all this we can now see our contraption working with a simple circuit and a simple program, believe me, it won't always be so easy with this kind of motors 馃槑. *** >Con todo esto ya podemos ver nuestro artilugio funcionando con un circuito sencillo y un programa sencillo, creeme, no siempre ser谩 tan f谩cil con este tipo de motores 馃槑. *** <center>  </center> <iframe width="315" height="560" src="https://www.youtube.com/embed/0M6hhwujZWU" title="20240109 195221" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> *** *** *** *** *** *** *** <center>https://images.ecency.com/p/3W72119s5BjW4PvRk9nXBzqrPWMsMTjNrXDPFFf12CAfRz5MY8jCm5vGDUj7o96hwAT3YCMBJgcTgcWmsqeuBbZL1YbmxtaV4gyfByenDkmAkgv6rkm9ZP.webp?format=webp&mode=fit</center> <center></center> If you want to give an extra boost to the blog with a donation you can send it to the addresses: *** >Si quieres darle un impulso extra al blog con una donaci贸n puedes enviarla a las direcciones: *** BEP-20: 0x5Aee5e3e3ED3203e77eF0d8Bb3E3a420E5229Ce0 ERC-20: 0x5Aee5e3e3ED3203e77eF0d8Bb3E3a420E5229Ce0 Arbitrum One: 0x5Aee5e3e3ED3203e77eF0d8Bb3E3a420E5229Ce0 Polygon: 0x5Aee5e3e3ED3203e77eF0d8Bb3E3a420E5229Ce0 Avalanche: 0x5Aee5e3e3ED3203e77eF0d8Bb3E3a420E5229Ce0 </div>
author | electronico | ||||||
---|---|---|---|---|---|---|---|
permlink | controlling-a-brushless-motor-with | ||||||
category | hive-196387 | ||||||
json_metadata | "{"app":"ecency/3.0.37-vision","description":"Now that we've looked at some [brushless motor theory](Brushless motors - Theoretical basis. EN/ES) and established some safety considerations we're ready for our first real test with a brushless motor.","format":"markdown+html","image":["https://images.hive.blog/DQmT8qHdJyhE61PuPAQncCAfzzjD5M6MD6Pm3ueY7CB88SN/20240112_172454.gif","https://images.ecency.com/DQmVfaaq3zctErq6p3CUWzgAtBzxeDw6jTnLNjHktWhu922/image.png","https://images.ecency.com/DQmc7YVrc2jkzqm1m8rVgxDv1AepiMc56FXXum6ipdkeYzR/20240108_183825.jpg","https://images.ecency.com/DQmYeoSttwnmMeJLDnHEQSxkcBkUXkZYZiVMRuf9uHJmfyZ/20240108_183835.jpg","https://images.ecency.com/DQmQHbHb7pJQn6SD1n1MAJ9w8BkkhbrXgxanDccW9K1neUu/20240108_191223.jpg","https://images.ecency.com/p/2gsjgna1uruvGBHDnRaj2z6FsL6XEQR3pnqa26GnVd4M7vfxxpWsxcpCt8BcdiYBkmmBtwqEpZmJLg1FVDCS6G1dX86xWto3AoSUvTWLckB64EypvS.webp?format=webp&mode=fit","https://images.ecency.com/DQmXJd1nMyCj2teXysG23Bs1zafWLg9WLssvuHr8ig1R93x/image.png","https://images.ecency.com/p/3W72119s5BjW4PvRk9nXBzqrPWMsMTjNrXDPFFf12CAfRz5MY8jCm5vGDUj7o96hwAT3YCMBJgcTgcWmsqeuBbZL1YbmxtaV4gyfByenDkmAkgv6rkm9ZP.webp?format=webp&mode=fit","https://images.ecency.com/DQmcDEJsitAuNPBHeVWasdWpQzemRFJi6hzwpC3pz5moBTL/timestamp.gif"],"image_ratios":["0.8478","0.7484","0.7500","0.7500","1.3333"],"tags":["hive-196387","ecency","ocd","waivio","leofiance","neoxian","education","technology","proofofbrain","electronica-ie"]}" | ||||||
created | 2024-01-12 22:15:45 | ||||||
last_update | 2024-01-12 22:17:42 | ||||||
depth | 0 | ||||||
children | 6 | ||||||
last_payout | 2024-01-19 22:15:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 4.268 HBD | ||||||
curator_payout_value | 4.405 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 10,349 | ||||||
author_reputation | 43,746,257,869,160 | ||||||
root_title | "Controlling a brushless motor with 3 Mosfets EN/ES." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 130,435,475 | ||||||
net_rshares | 19,458,898,750,934 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 1,044,786,826 | 2.8% | ||
flemingfarm | 0 | 3,196,609,239 | 0.56% | ||
kevinwong | 0 | 2,388,988,822 | 0.56% | ||
justtryme90 | 0 | 1,421,345,116 | 70% | ||
eric-boucher | 0 | 15,241,935,913 | 2.8% | ||
juanmiguelsalas | 0 | 570,123,024 | 1.68% | ||
thecryptodrive | 0 | 65,723,929,040 | 1.12% | ||
roelandp | 0 | 292,940,844,556 | 35% | ||
cloh76 | 0 | 3,936,109,913 | 2.8% | ||
joshglen | 0 | 742,627,397 | 5.6% | ||
ace108 | 0 | 506,534,671,219 | 11% | ||
lordvader | 0 | 34,756,557,356 | 5.6% | ||
rmach | 0 | 11,857,750,893 | 35% | ||
lemouth | 0 | 1,905,849,927,960 | 70% | ||
alaqrab | 0 | 560,418,496 | 2.8% | ||
lamouthe | 0 | 5,586,449,543 | 70% | ||
tfeldman | 0 | 5,489,606,908 | 2.8% | ||
sergiomendes | 0 | 1,399,601,246 | 2.8% | ||
metabs | 0 | 7,782,323,349 | 70% | ||
mcsvi | 0 | 139,295,519,416 | 50% | ||
lk666 | 0 | 1,896,199,443 | 2.8% | ||
cnfund | 0 | 11,577,823,577 | 5.6% | ||
boxcarblue | 0 | 12,221,440,356 | 2.8% | ||
justyy | 0 | 35,012,250,829 | 5.6% | ||
michelle.gent | 0 | 3,397,790,344 | 1.12% | ||
curie | 0 | 418,752,007,346 | 5.6% | ||
modernzorker | 0 | 3,837,858,662 | 3.92% | ||
techslut | 0 | 186,989,642,764 | 28% | ||
steemstem | 0 | 1,296,408,648,731 | 70% | ||
dashfit | 0 | 487,157,746 | 2.8% | ||
tristancarax | 0 | 695,170,608 | 2.8% | ||
edb | 0 | 5,491,800,510 | 7% | ||
breezin | 0 | 3,838,056,328 | 100% | ||
yadamaniart | 0 | 3,584,467,852 | 2.8% | ||
bigtakosensei | 0 | 1,798,863,774 | 1.4% | ||
walterjay | 0 | 479,038,117,556 | 35% | ||
valth | 0 | 10,595,968,535 | 35% | ||
metroair | 0 | 26,833,187,017 | 5.6% | ||
driptorchpress | 0 | 2,181,570,895 | 1.4% | ||
voter | 0 | 3,961,797,255 | 100% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
boynashruddin | 0 | 832,329,531 | 5.6% | ||
steemiteducation | 0 | 1,154,315,396 | 2.8% | ||
dhimmel | 0 | 373,893,595,897 | 17.5% | ||
oluwatobiloba | 0 | 2,565,185,849 | 70% | ||
detlev | 0 | 25,170,233,462 | 1.68% | ||
chasmic-cosm | 0 | 843,868,695 | 2.8% | ||
dune69 | 0 | 666,466,246 | 5.6% | ||
lugaxker | 0 | 823,566,558 | 34.65% | ||
federacion45 | 0 | 8,649,699,820 | 2.8% | ||
amberyooper | 0 | 677,814,479 | 2.8% | ||
gamersclassified | 0 | 4,164,562,035 | 2.8% | ||
iansart | 0 | 3,715,746,283 | 2.8% | ||
mobbs | 0 | 104,673,582,725 | 35% | ||
eliel | 0 | 2,820,733,781 | 5.6% | ||
jerrybanfield | 0 | 20,058,738,511 | 5.6% | ||
rt395 | 0 | 2,065,369,679 | 1.5% | ||
bitrocker2020 | 0 | 11,703,047,542 | 1.12% | ||
sustainablyyours | 0 | 24,305,986,272 | 35% | ||
helo | 0 | 5,185,168,039 | 35% | ||
arunava | 0 | 17,564,229,126 | 2.24% | ||
schoolforsdg4 | 0 | 1,072,473,870 | 5% | ||
samminator | 0 | 43,455,335,236 | 35% | ||
zerotoone | 0 | 1,121,445,109 | 2.8% | ||
enjar | 0 | 46,112,946,444 | 5.04% | ||
mahdiyari | 0 | 394,910,889,667 | 80% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
firstamendment | 0 | 89,886,351,131 | 50% | ||
aboutyourbiz | 0 | 1,092,412,877 | 5.6% | ||
derosnec | 0 | 573,020,645 | 2.8% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
dandesign86 | 0 | 16,175,838,958 | 8% | ||
jayna | 0 | 7,997,240,292 | 1.12% | ||
hhayweaver | 0 | 1,061,099,746 | 1.4% | ||
techken | 0 | 42,025,706,490 | 50% | ||
princessmewmew | 0 | 7,857,038,773 | 2.8% | ||
grapthar | 0 | 1,161,755,393 | 4.2% | ||
joeyarnoldvn | 0 | 472,821,265 | 1.47% | ||
diabolika | 0 | 974,851,706 | 2.8% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 75,049,880,145 | 1.4% | ||
empath | 0 | 4,266,776,850 | 2.8% | ||
minnowbooster | 0 | 1,057,466,816,996 | 20% | ||
lenasveganliving | 0 | 633,978,913 | 2.8% | ||
howo | 0 | 2,223,033,444,760 | 70% | ||
tsoldovieri | 0 | 7,421,052,687 | 35% | ||
droida | 0 | 185,919,199,086 | 100% | ||
nitego | 0 | 577,335,349 | 1.68% | ||
steemwizards | 0 | 4,169,093,785 | 5.6% | ||
neumannsalva | 0 | 4,909,543,472 | 2.8% | ||
wargof | 0 | 1,198,810,822 | 65% | ||
stayoutoftherz | 0 | 165,561,815,050 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,944,364,956 | 4.48% | ||
zonguin | 0 | 3,764,987,255 | 17.5% | ||
investingpennies | 0 | 19,933,043,063 | 5.6% | ||
khalil319 | 0 | 1,035,920,512 | 10% | ||
martibis | 0 | 1,546,251,069 | 1.68% | ||
redrica | 0 | 2,117,731,018 | 2.8% | ||
pepskaram | 0 | 592,070,913 | 2.8% | ||
iamphysical | 0 | 854,867,801 | 90% | ||
zest | 0 | 1,013,972,896 | 35% | ||
zyx066 | 0 | 4,082,260,585 | 1.68% | ||
chrisdavidphoto | 0 | 1,085,957,062 | 1.68% | ||
revo | 0 | 11,619,793,696 | 5.6% | ||
azulear | 0 | 1,412,804,487 | 100% | ||
psicoluigi | 0 | 838,878,429 | 50% | ||
nerdnews | 0 | 941,327,143 | 5.6% | ||
rafaelaquino | 0 | 18,173,255,499 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
stickchumpion | 0 | 1,023,773,842 | 2.8% | ||
thelordsharvest | 0 | 4,657,299,503 | 5.6% | ||
vera-vaders-ea | 0 | 494,445,482 | 5.6% | ||
raj808 | 0 | 508,085,374 | 1.68% | ||
sumant | 0 | 3,908,522,219 | 2.8% | ||
aidefr | 0 | 7,603,028,458 | 35% | ||
torico | 0 | 1,517,029,992 | 1.84% | ||
therealwolf | 0 | 38,052,957,466 | 2.8% | ||
fatman | 0 | 9,010,359,845 | 2% | ||
minnowpowerup | 0 | 894,877,864 | 2.8% | ||
splash-of-angs63 | 0 | 6,712,883,901 | 60% | ||
cryptononymous | 0 | 1,975,882,674 | 2.8% | ||
meno | 0 | 25,295,820,503 | 2.8% | ||
buttcoins | 0 | 2,159,826,624 | 1.12% | ||
isnochys | 0 | 9,436,297,568 | 5% | ||
hanggggbeeee | 0 | 487,157,464 | 2.8% | ||
steemed-proxy | 0 | 1,158,433,144,922 | 5.6% | ||
fatkat | 0 | 1,493,105,550 | 2.79% | ||
investegg | 0 | 2,896,950,726 | 1.8% | ||
doifeellucky | 0 | 2,604,851,823 | 2.8% | ||
peaceandwar | 0 | 880,077,051 | 2.8% | ||
bhoa | 0 | 587,555,977 | 35% | ||
enzor | 0 | 2,266,862,809 | 35% | ||
marcoriccardi | 0 | 1,090,949,216 | 5.6% | ||
bartosz546 | 0 | 19,663,855,263 | 2.8% | ||
tazbaz | 0 | 563,343,228 | 2.8% | ||
dandays | 0 | 33,613,522,571 | 2.24% | ||
battebilly | 0 | 743,972,431 | 2.8% | ||
notb4mycoffee | 0 | 3,243,003,168 | 5.6% | ||
silverwhale | 0 | 1,622,845,302 | 5.04% | ||
caladan | 0 | 878,685,925 | 5.6% | ||
dejan.vuckovic | 0 | 762,024,861 | 1.12% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 1,006,792,604 | 4.48% | ||
sunsea | 0 | 5,143,208,093 | 2.8% | ||
postpromoter | 0 | 1,643,906,300,304 | 70% | ||
bluefinstudios | 0 | 4,167,623,013 | 1.68% | ||
steveconnor | 0 | 4,964,861,815 | 2.8% | ||
sankysanket18 | 0 | 1,702,013,390 | 35% | ||
dbddv01 | 0 | 2,579,966,518 | 17.5% | ||
zmx | 0 | 612,423,702 | 2.8% | ||
nicole-st | 0 | 1,003,648,557 | 2.8% | ||
smartsteem | 0 | 137,241,268,276 | 2.8% | ||
aboutcoolscience | 0 | 374,386,632,517 | 70% | ||
mytechtrail | 0 | 625,505,917 | 0.58% | ||
afifa | 0 | 661,623,919 | 10% | ||
sandracarrascal | 0 | 512,084,945 | 50% | ||
skycae | 0 | 704,023,402 | 5.6% | ||
kenadis | 0 | 19,211,410,305 | 70% | ||
bebeomega | 0 | 1,331,795,941 | 2.8% | ||
madridbg | 0 | 35,445,554,158 | 70% | ||
robotics101 | 0 | 21,408,248,535 | 70% | ||
marcolino76 | 0 | 657,640,353 | 2.8% | ||
lpv | 0 | 3,047,238,712 | 8.75% | ||
punchline | 0 | 8,616,880,118 | 5.6% | ||
zeroooc | 0 | 1,075,773,402 | 100% | ||
apon318 | 0 | 514,446,102 | 5.6% | ||
tomatom | 0 | 536,633,428 | 2.8% | ||
adelepazani | 0 | 1,576,326,729 | 1.12% | ||
danaedwards | 0 | 729,126,903 | 5.6% | ||
r00sj3 | 0 | 120,763,214,106 | 35% | ||
sco | 0 | 21,683,946,949 | 70% | ||
phgnomo | 0 | 860,364,105 | 2.8% | ||
ennyta | 0 | 993,997,127 | 50% | ||
juecoree | 0 | 4,219,623,208 | 49% | ||
gordon92 | 0 | 876,897,667 | 2.8% | ||
stahlberg | 0 | 1,284,511,125 | 2.8% | ||
gabrielatravels | 0 | 2,201,864,272 | 1.96% | ||
cordeta | 0 | 1,036,646,146 | 5.6% | ||
reizak | 0 | 497,852,929 | 2.24% | ||
eliaschess333 | 0 | 32,405,367,862 | 100% | ||
branbello | 0 | 1,277,744,781 | 35% | ||
hetty-rowan | 0 | 3,656,700,161 | 2.8% | ||
ydavgonzalez | 0 | 1,835,933,120 | 10% | ||
intrepidphotos | 0 | 18,586,856,826 | 52.5% | ||
fineartnow | 0 | 4,080,420,285 | 2.8% | ||
hijosdelhombre | 0 | 46,547,272,502 | 40% | ||
bengy | 0 | 25,707,359,274 | 25% | ||
bobydimitrov | 0 | 522,922,124 | 4.2% | ||
yoghurt | 0 | 1,770,094,586 | 5.6% | ||
steemvault | 0 | 2,270,989,370 | 5.6% | ||
steem4all | 0 | 944,467,520 | 2.8% | ||
shinedojo | 0 | 691,972,464 | 5.6% | ||
fragmentarion | 0 | 16,336,624,017 | 70% | ||
bennettitalia | 0 | 1,942,862,237 | 2.8% | ||
utube | 0 | 4,070,088,763 | 5.6% | ||
jigstrike | 0 | 914,197,056 | 2.8% | ||
ahmedsy | 0 | 1,258,386,259 | 5.6% | ||
kylo-ren | 0 | 486,281,969 | 5.6% | ||
dynamicrypto | 0 | 1,673,515,937 | 1% | ||
neneandy | 0 | 6,423,955,909 | 5.6% | ||
pab.ink | 0 | 722,256,870 | 35% | ||
marc-allaria | 0 | 4,236,534,296 | 2.8% | ||
real2josh | 0 | 661,181,182 | 35% | ||
sportscontest | 0 | 5,779,597,215 | 5.6% | ||
videosteemit | 0 | 1,024,294,777 | 5.6% | ||
gribouille | 0 | 1,651,640,220 | 35% | ||
pandasquad | 0 | 14,817,690,379 | 5.6% | ||
tobias-g | 0 | 14,878,176,192 | 5% | ||
leoumesh | 0 | 1,031,706,303 | 35% | ||
kingabesh | 0 | 1,418,771,642 | 35% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
mproxima | 0 | 2,830,461,786 | 2.8% | ||
fantasycrypto | 0 | 3,928,159,381 | 5.6% | ||
didic | 0 | 1,936,478,406 | 2.8% | ||
warpedpoetic | 0 | 2,116,799,736 | 5.6% | ||
emiliomoron | 0 | 10,140,347,014 | 35% | ||
galam | 0 | 662,721,006 | 24.5% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
nwjordan | 0 | 832,788,344 | 5.6% | ||
photohunt | 0 | 4,135,414,038 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
alexdory | 0 | 11,925,324,341 | 70% | ||
irgendwo | 0 | 22,616,306,219 | 5.6% | ||
vegan.niinja | 0 | 515,121,803 | 2.8% | ||
charitybot | 0 | 5,159,401,863 | 100% | ||
cyprianj | 0 | 76,837,173,806 | 70% | ||
kieranstone | 0 | 1,677,165,019 | 1.84% | ||
bernardino | 0 | 704,279,904 | 2.8% | ||
melvin7 | 0 | 109,120,049,122 | 35% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
steempampanga | 0 | 512,797,381 | 2.8% | ||
croctopus | 0 | 1,534,650,126 | 100% | ||
jjerryhan | 0 | 5,561,691,717 | 2.8% | ||
putu300 | 0 | 558,488,922 | 5% | ||
zipporah | 0 | 2,751,589,715 | 1.12% | ||
leomarylm | 0 | 2,019,478,338 | 2.8% | ||
superlotto | 0 | 14,044,476,258 | 5.6% | ||
positiveninja | 0 | 1,004,598,881 | 2.8% | ||
foxyspirit | 0 | 558,779,551 | 2.8% | ||
vonaurolacu | 0 | 1,949,771,778 | 2.8% | ||
movingman | 0 | 518,992,986 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 600,605,331 | 0.28% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
bil.prag | 0 | 2,569,436,054 | 0.28% | ||
elvigia | 0 | 11,206,676,196 | 50% | ||
sanderjansenart | 0 | 5,701,785,264 | 2.8% | ||
vittoriozuccala | 0 | 2,257,834,090 | 2.8% | ||
qberry | 0 | 3,918,815,471 | 2.8% | ||
frissonsteemit | 0 | 1,278,123,486 | 2.8% | ||
broncofan99 | 0 | 9,988,626,382 | 20% | ||
rambutan.art | 0 | 2,196,538,579 | 5.6% | ||
greddyforce | 0 | 4,332,087,854 | 2.07% | ||
javalord | 0 | 455,953,760 | 1.4% | ||
flyerchen | 0 | 1,323,838,451 | 2.8% | ||
gadrian | 0 | 448,559,868,418 | 52.5% | ||
c0wtschpotato | 0 | 599,166,052 | 2.8% | ||
therising | 0 | 97,809,496,057 | 5.6% | ||
cryptocoinkb | 0 | 2,220,537,131 | 2.8% | ||
gifty-e | 0 | 617,693,223 | 80% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
imcore | 0 | 863,615,439 | 10% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
josedelacruz | 0 | 4,900,428,432 | 50% | ||
achimmertens | 0 | 18,931,043,329 | 2.8% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
mariusfebruary | 0 | 703,434,104 | 2.24% | ||
outtheshellvlog | 0 | 895,612,487 | 2.8% | ||
we-are | 0 | 2,958,372,748 | 13.3% | ||
we-are-one | 0 | 249,851,771 | 26.8% | ||
erickyoussif | 0 | 712,915,660 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,188,264,907 | 2.8% | ||
primersion | 0 | 377,235,877,560 | 20% | ||
deholt | 0 | 4,095,826,056 | 59.5% | ||
steem.services | 0 | 1,060,860,685 | 1.12% | ||
meins0815 | 0 | 7,425,837,054 | 23% | ||
pladozero | 0 | 29,530,682,464 | 10% | ||
crimo | 0 | 635,115,540 | 11.5% | ||
minerthreat | 0 | 3,783,103,267 | 2.8% | ||
aliriera | 0 | 1,804,146,843 | 100% | ||
temitayo-pelumi | 0 | 6,567,963,676 | 70% | ||
andrick | 0 | 866,365,209 | 50% | ||
doctor-cog-diss | 0 | 66,188,610,071 | 70% | ||
marcuz | 0 | 2,462,462,544 | 35% | ||
uche-nna | 0 | 7,137,663,003 | 4.48% | ||
we-are-lucky | 0 | 244,763,501 | 0.7% | ||
cheese4ead | 0 | 4,712,876,951 | 2.8% | ||
mafufuma | 0 | 5,197,489,796 | 1% | ||
apshamilton | 0 | 14,235,394,426 | 0.7% | ||
nattybongo | 0 | 132,802,336,659 | 70% | ||
drsensor | 0 | 1,582,645,508 | 56% | ||
revueh | 0 | 2,030,442,924 | 35% | ||
ilovecryptopl | 0 | 907,092,054 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 5,389,176,758 | 2.8% | ||
ubaldonet | 0 | 2,734,745,204 | 80% | ||
armandosodano | 0 | 3,826,787,052 | 2.8% | ||
marivic10 | 0 | 817,180,174 | 2.8% | ||
hamismsf | 0 | 4,655,724,210 | 0.7% | ||
goblinknackers | 0 | 74,119,394,553 | 7% | ||
zuerich | 0 | 877,246,953,166 | 20% | ||
reinaseq | 0 | 7,740,537,724 | 100% | ||
vixmemon | 0 | 1,691,026,357 | 4.2% | ||
yaelg | 0 | 1,223,626,481 | 1.68% | ||
kylealex | 0 | 4,684,471,400 | 10% | ||
lupafilotaxia | 0 | 2,647,057,209 | 25% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
perpetuum-lynx | 0 | 2,169,020,969 | 68.6% | ||
hanshotfirst-sm | 0 | 489,273,750 | 5.6% | ||
thelittlebank | 0 | 20,528,704,118 | 2.8% | ||
pboulet | 0 | 129,630,475,769 | 56% | ||
javyeslava.photo | 0 | 579,168,213 | 2.24% | ||
stem-espanol | 0 | 3,720,488,148 | 100% | ||
voter003 | 0 | 2,795,377,954 | 1.1% | ||
voter000 | 0 | 2,970,671,661 | 6.5% | ||
futurekr | 0 | 2,350,976,141 | 100% | ||
cliffagreen | 0 | 4,902,043,077 | 10% | ||
aleestra | 0 | 13,610,944,794 | 80% | ||
palasatenea | 0 | 3,363,141,576 | 2.8% | ||
the.success.club | 0 | 3,239,141,227 | 2.8% | ||
javier.dejuan | 0 | 534,706,298 | 70% | ||
xmauron3 | 0 | 1,663,239,915 | 2.8% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
unbiasedwriter | 0 | 178,796,294,098 | 25% | ||
meanroosterfarm | 0 | 1,405,825,528 | 35% | ||
merlin7 | 0 | 11,151,326,828 | 5.6% | ||
brianoflondon | 0 | 83,906,089,183 | 1.4% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
kristall97 | 0 | 2,173,085,178 | 100% | ||
followjohngalt | 0 | 883,523,272 | 5.6% | ||
steemcryptosicko | 0 | 9,066,781,969 | 1.12% | ||
alvin0617 | 0 | 493,237,718 | 2.8% | ||
multifacetas | 0 | 1,668,658,196 | 2.8% | ||
cowpatty | 0 | 1,476,048,598 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 995,656,105 | 2.8% | ||
jpbliberty | 0 | 8,546,819,413 | 1.4% | ||
autobodhi | 0 | 1,033,944,482 | 5.6% | ||
double-negative | 0 | 520,733,609 | 20% | ||
bluerobo | 0 | 322,085,401,686 | 100% | ||
vaultec | 0 | 6,523,567,427 | 12% | ||
steemstorage | 0 | 6,833,487,662 | 5.6% | ||
steemegg | 0 | 1,085,962,438 | 2.8% | ||
jtm.support | 0 | 5,426,926,061 | 70% | ||
edithbdraw | 0 | 809,621,148 | 2.8% | ||
crowdwitness | 0 | 194,604,671,001 | 35% | ||
synergized | 0 | 3,638,563,364 | 35% | ||
hairgistix | 0 | 3,279,456,241 | 2.8% | ||
bluemaskman | 0 | 645,169,019 | 2.8% | ||
steemean | 0 | 10,080,692,754 | 5% | ||
proxy-pal | 0 | 1,391,621,954 | 5.6% | ||
newton666 | 0 | 1,522,965,951 | 35% | ||
cryptofiloz | 0 | 8,931,401,545 | 5.6% | ||
dawnoner | 0 | 1,990,451,500 | 0.56% | ||
photographercr | 0 | 2,292,124,217 | 1.12% | ||
epicdice | 0 | 1,931,230,069 | 1.68% | ||
iamsaray | 0 | 1,376,287,210 | 2.8% | ||
beerlover | 0 | 2,117,033,840 | 1.68% | ||
newtrailers | 0 | 1,116,968,578 | 5.6% | ||
kcgm | 0 | 14,205,356,977 | 100% | ||
tggr | 0 | 1,341,077,950 | 2.8% | ||
aicu | 0 | 1,536,232,752 | 5.6% | ||
walterprofe | 0 | 5,484,981,987 | 35% | ||
zeruxanime | 0 | 1,625,922,824 | 35% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
imbartley | 0 | 834,367,845 | 26.25% | ||
tiffin | 0 | 863,425,867 | 5.6% | ||
reggaesteem | 0 | 486,261,805 | 5% | ||
babytarazkp | 0 | 1,443,567,168 | 40% | ||
aicoding | 0 | 588,110,787 | 2.8% | ||
maddogmike | 0 | 689,101,186 | 0.58% | ||
knightsunited | 0 | 877,189,123 | 5.6% | ||
nazer | 0 | 2,847,546,643 | 35% | ||
stem.alfa | 0 | 3,694,622,671 | 100% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
baltai | 0 | 6,538,510,638 | 2.8% | ||
chris-uk | 0 | 1,094,581,310 | 2.8% | ||
sandymeyer | 0 | 15,181,258,850 | 1% | ||
yggdrasil.laguna | 0 | 0 | 100% | ||
atheistrepublic | 0 | 6,777,433,542 | 2.8% | ||
machan | 0 | 715,454,759 | 2.8% | ||
ibt-survival | 0 | 32,610,855,306 | 10% | ||
steemdiamond | 0 | 729,830,999 | 5.6% | ||
zirky | 0 | 2,709,325,030 | 4.76% | ||
chapmain | 0 | 0 | 100% | ||
gloriaolar | 0 | 1,689,748,105 | 1.68% | ||
lightpaintershub | 0 | 477,268,510 | 1% | ||
bilpcoinbpc | 0 | 819,764,260 | 5% | ||
cornavirus | 0 | 550,577,721 | 5.6% | ||
andreina57 | 0 | 702,266,711 | 35% | ||
blue-witness | 0 | 839,097,449 | 100% | ||
stemsocial | 0 | 587,979,396,471 | 70% | ||
peterpanpan | 0 | 741,066,958 | 1.12% | ||
hiveonboard | 0 | 735,776,733 | 2.1% | ||
hivelist | 0 | 2,361,652,601 | 1.68% | ||
hivehustlers | 0 | 1,040,449,149 | 1.17% | ||
noelyss | 0 | 21,673,708,948 | 35% | ||
jsalvage | 0 | 1,149,910,255 | 35% | ||
quinnertronics | 0 | 16,184,546,440 | 7% | ||
anafae | 0 | 607,723,769 | 1.12% | ||
hivecoffee | 0 | 691,523,252 | 5.6% | ||
gohive | 0 | 1,519,504,246 | 100% | ||
sevenoh-fiveoh | 0 | 1,039,122,371 | 2.8% | ||
artsyproxy | 0 | 477,308,649 | 5.6% | ||
altleft | 0 | 26,226,077,867 | 0.05% | ||
omarrojas | 0 | 2,372,650,771 | 2.8% | ||
noalys | 0 | 1,350,154,003 | 2.8% | ||
evagavilan2 | 0 | 1,454,670,439 | 2.8% | ||
gonklavez9 | 0 | 1,366,589,528 | 70% | ||
blezyn | 0 | 1,389,344,993 | 2.8% | ||
stemcur | 0 | 588,148,498 | 50% | ||
cosplay.hadr | 0 | 1,329,637,841 | 5.6% | ||
hadrgames | 0 | 1,368,786,572 | 5.6% | ||
rawecz | 0 | 597,090,741 | 5.6% | ||
maar | 0 | 667,170,753 | 70% | ||
meritocracy | 0 | 62,725,180,202 | 0.56% | ||
sillybilly | 0 | 586,852,993 | 100% | ||
meestemboom | 0 | 1,014,211,192 | 50% | ||
a-frobenius | 0 | 291,593,814 | 100% | ||
rondonshneezy | 0 | 518,094,944 | 2.8% | ||
hive-129556 | 0 | 1,733,514,237 | 100% | ||
yozen | 0 | 2,098,394,354 | 2.8% | ||
adamada.stem | 0 | 2,201,129,804 | 100% | ||
elgatoshawua | 0 | 688,084,165 | 2.8% | ||
limn | 0 | 943,508,083 | 2.8% | ||
nyxlabs | 0 | 552,651,874 | 3.5% | ||
oahb132 | 0 | 1,059,548,713 | 35% | ||
failingforwards | 0 | 3,498,728,944 | 2.8% | ||
maxelitereturned | 0 | 621,598,564 | 35% | ||
juecoree.stem | 0 | 481,076,318 | 70% | ||
trippymane | 0 | 1,777,998,443 | 5.6% | ||
nfttunz | 0 | 8,817,092,537 | 0.56% | ||
holovision.cash | 0 | 3,686,059,181 | 100% | ||
krrizjos18 | 0 | 3,065,857,102 | 35% | ||
holovision.stem | 0 | 205,975,058 | 100% | ||
hubeyma | 0 | 899,351,561 | 2.8% | ||
podping | 0 | 8,560,571,235 | 1.4% | ||
davidbright | 0 | 771,831,643 | 2.8% | ||
peckypeace | 0 | 5,047,931,628 | 100% | ||
drhueso | 0 | 1,409,859,173 | 2.8% | ||
pinkfloyd878 | 0 | 4,251,644,324 | 100% | ||
solominer.stem | 0 | 969,000,605 | 100% | ||
mayberlys | 0 | 2,286,809,570 | 50% | ||
irivers | 0 | 0 | 100% | ||
clinton19 | 0 | 2,866,255,815 | 100% | ||
mario02 | 0 | 571,160,220 | 2.8% | ||
seinkalar | 0 | 2,327,621,715 | 5.6% | ||
aries90 | 0 | 48,451,889,644 | 5.6% | ||
cugel | 0 | 2,544,029,788 | 2.8% | ||
acantoni | 0 | 759,981,759 | 2.8% | ||
migka | 0 | 4,360,547,297 | 90% | ||
axelx12 | 0 | 4,937,789,439 | 100% | ||
mcsherriff | 0 | 560,704,633 | 5.6% | ||
h3m4n7 | 0 | 715,262,362 | 2.8% | ||
jude9 | 0 | 519,404,331 | 17.5% | ||
alt3r | 0 | 658,740,009 | 4.31% | ||
waivio.curator | 0 | 1,820,963,937 | 3.38% | ||
ehizgabriel | 0 | 675,277,843 | 35% | ||
noctury | 0 | 548,741,735 | 2.8% | ||
benwickenton | 0 | 2,700,993,306 | 5.6% | ||
youarecreative | 0 | 508,736,544 | 50% | ||
henrietta27 | 0 | 1,706,690,493 | 2.8% | ||
blockgolem | 0 | 497,789,203 | 5.6% | ||
azj26 | 0 | 765,311,515 | 2.8% | ||
balabambuz | 0 | 722,538,550 | 2.8% | ||
archangel21 | 0 | 3,928,461,120 | 5.6% | ||
belug | 0 | 2,868,542,477 | 1.68% | ||
amafable07 | 0 | 1,024,557,441 | 35% | ||
mugueto2022 | 0 | 550,765,688 | 20% | ||
ricardoeloy | 0 | 2,041,446,025 | 14% | ||
alfazmalek02 | 0 | 465,337,158 | 100% | ||
nazom | 0 | 813,976,760 | 35% | ||
baboz | 0 | 1,481,471,779 | 1.4% | ||
sbtofficial | 0 | 4,930,623,706 | 2.8% | ||
vagabond42069 | 0 | 1,519,859,229 | 35% | ||
inibless | 0 | 1,525,277,469 | 35% | ||
ctptips | 0 | 0 | 15% | ||
cindynancy | 0 | 2,191,711,715 | 35% | ||
glimpsytips.dex | 0 | 5,592,870,053 | 7% | ||
justfavour | 0 | 3,501,065,070 | 2.8% | ||
sc000 | 0 | 1,437,387,810 | 5.6% | ||
girlcrypto | 0 | 992,311,268 | 100% | ||
vankushfamily | 0 | 667,227,530 | 35% | ||
jijisaurart | 0 | 1,294,740,175 | 2.8% | ||
tuba777 | 0 | 1,570,812,651 | 35% | ||
workaholic666 | 0 | 889,928,641 | 100% | ||
clpacksperiment | 0 | 2,485,395,706 | 2.8% | ||
humbe | 0 | 1,573,457,641 | 1% | ||
peniel2010 | 0 | 789,013,280 | 50% | ||
kingscurate | 0 | 472,688,276 | 100% | ||
technico | 0 | 875,057,052 | 2.8% | ||
abu78 | 0 | 3,897,547,413 | 2.8% | ||
beauty197 | 0 | 581,881,564 | 2.8% | ||
arduilcelebren | 0 | 871,298,681 | 2.8% | ||
opticus | 0 | 1,796,618,175 | 2.8% | ||
bemier | 0 | 858,337,344 | 2.8% | ||
lettinggotech | 0 | 1,292,478,605 | 2.8% | ||
rhemagames | 0 | 5,282,547,230 | 2.8% | ||
tecnoticias | 0 | 16,251,961,553 | 100% | ||
agileautomation | 0 | 76,556,025 | 100% | ||
profwhitetower | 0 | 0 | 100% |
WOW, what an amazing tutorial, you've spend some time on this project obviously, nice job! I do a lot of controls myself (and now post tips for python asI've done a lot of controls using python actually), very little with PIC processors though, but great little project, a lot to learn. Following...
author | agileautomation |
---|---|
permlink | re-electronico-s79i6t |
category | hive-196387 |
json_metadata | {"tags":["hive-196387"],"app":"peakd/2023.11.3"} |
created | 2024-01-14 17:35:15 |
last_update | 2024-01-14 17:35:15 |
depth | 1 |
children | 0 |
last_payout | 2024-01-21 17:35:15 |
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 | 301 |
author_reputation | 55,848,601,723 |
root_title | "Controlling a brushless motor with 3 Mosfets EN/ES." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,478,190 |
net_rshares | 0 |
I should try this because I should have all of this stuff.... how do I add a throttle?
author | buckmiggatesla |
---|---|
permlink | re-electronico-2024424t81858824z |
category | hive-196387 |
json_metadata | {"type":"post","tags":["hive-196387","ecency","ocd","waivio","leofiance","neoxian","education","technology","proofofbrain","electronica-ie"],"app":"ecency/3.0.46-mobile","format":"markdown+html"} |
created | 2024-04-24 13:19:00 |
last_update | 2024-04-24 13:19:12 |
depth | 1 |
children | 0 |
last_payout | 2024-05-01 13:19:00 |
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 | 86 |
author_reputation | 863,248,620 |
root_title | "Controlling a brushless motor with 3 Mosfets EN/ES." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,083,373 |
net_rshares | 0 |
It would have been nice if you had actually constructed the motor from scratch or did you ? I used to be a fan of these kind of DIY projects, especially the electromagnetic kinds in the past. There's this kind of joy I get when I build from scratch, including trying to introduce new ideas. Unfortunately, for some reasons I have not quite understood, I lost interest. 馃榿 Great post by the way. 馃憤
author | clinton19 |
---|---|
permlink | re-electronico-2024113t23729266z |
category | hive-196387 |
json_metadata | {"tags":["hive-196387","ecency","ocd","waivio","leofiance","neoxian","education","technology","proofofbrain","electronica-ie"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2024-01-13 01:37:30 |
last_update | 2024-01-13 01:41:09 |
depth | 1 |
children | 1 |
last_payout | 2024-01-20 01:37: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 | 397 |
author_reputation | 79,544,135,733,220 |
root_title | "Controlling a brushless motor with 3 Mosfets EN/ES." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,439,283 |
net_rshares | 111,023,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 111,023,463 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
Sure, it would have been more exciting but it would have taken me more time than I usually have for these things. Anyway the main purpose I'm looking for is the understanding about electronic control systems, maybe in the future when I'm a little less loaded we'll build some engines from scratch.... When we abandon the practice we usually lose interest, in fact it is one of the reasons why I created the blog, I can share knowledge while staying active in the area. Thanks my friend, it pleases me very much to read comments like yours in my articles.
author | electronico |
---|---|
permlink | re-clinton19-2024112t22722728z |
category | hive-196387 |
json_metadata | {"tags":["hive-196387","ecency","ocd","waivio","leofiance","neoxian","education","technology","proofofbrain","electronica-ie"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2024-01-13 02:19:33 |
last_update | 2024-01-13 02:19:33 |
depth | 2 |
children | 0 |
last_payout | 2024-01-20 02:19:33 |
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 | 556 |
author_reputation | 43,746,257,869,160 |
root_title | "Controlling a brushless motor with 3 Mosfets EN/ES." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,439,854 |
net_rshares | 110,830,234 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 110,830,234 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). Thanks for including @stemsocial as a beneficiary, which gives you stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-electronico-controlling-a-brushless-motor-with-20240113t172745843z |
category | hive-196387 |
json_metadata | {"app":"STEMsocial"} |
created | 2024-01-13 17:27:45 |
last_update | 2024-01-13 17:27:45 |
depth | 1 |
children | 1 |
last_payout | 2024-01-20 17:27: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 | 545 |
author_reputation | 22,903,677,158,169 |
root_title | "Controlling a brushless motor with 3 Mosfets EN/ES." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,453,617 |
net_rshares | 27,754,433,592 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
electronico | 0 | 27,754,433,592 | 100% |

author | electronico |
---|---|
permlink | re-stemsocial-2024114t9142839z |
category | hive-196387 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2024-01-14 13:26:21 |
last_update | 2024-01-14 13:26:21 |
depth | 2 |
children | 0 |
last_payout | 2024-01-21 13:26: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 | 84 |
author_reputation | 43,746,257,869,160 |
root_title | "Controlling a brushless motor with 3 Mosfets EN/ES." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,472,691 |
net_rshares | 0 |