I'd like to share a tiny radio transmitter I made from an Arduino Uno board. If you haven't heard of them, the Uno is a cheap, easy to use microcontroller board. It's essentially a tiny, very low memory computer that can be programmed to perform basic digital and analog electrical tasks. These boards are used widely as educational tools and in DIY settings. The first "project" people do with these is usually to make an LED blink. This would require a clever circuit if you were building it from basic components, but with this device you can do the job with three lines of code. Of course, it's more useful for more complicated tasks, like controlling sensors (back when I first got this board I used it to make a crude magnetometer (a device that measures magnetic fields) for example).  I haven't used mine in awhile, but I had the idea to try and transmit on the AM radio band using one so I brought it out of storage to try out. ## Transmissions are Oscillations! *Any electrical oscillation produces electromagnetic waves.* These waves might be very low power, and they might not be detectable, but they are always there. A calculator with a 20 MHz processor is radiating tiny amounts of 20 MHz electromagnetic radiation (unless blocked by shields), but the amount produced is likely undetectable. You need a properly built antenna to actually get large/usable amounts of radio waves out into the environment. This means that a circuit that fires an electrical signal back and forth one million times a second can be converted into a crude jammer/transmitter by attaching a long wire to the oscillator. It will then radiate 1 MHz radio waves that be picked up on radios, wirelessly. The wire is likely a very poor antenna, but it's magnitudes better than having no antenna at all. In this post I'll be demonstrating using a wire and an Arduino Uno to produce radio waves. ## Uno Radio Waves The Uno is a moderately sized blue board containing the ATMEGA-328 microcontroller. This chip is a large IC that can be programmed to perform some function. In a way, the Uno is just a big supporting board for this single microcontroller.  *ATMEGA-328* The board itself provides an easy way to program and use this IC: a USB port, easy to access pins, LEDs, and more. Notably, there is a piezoelectric crystal oscillator onboard. This device oscillates at a very specific frequency, and controls the speed of the controller. In the case of the Uno, the microcontroller runs at 16 MHz (compare to the GHz+ frequencies of ordinary laptops...). 16 MHz means that the device can run one command every 1/16 of a microsecond. I used this as the basis for generating a radio signal. The AM-band stretches from about 500 kHz (0.5 MHz) up to almost 2 MHz. I decided to go for the center of the band at 1 MHz to be sure my handheld radio could pick up the signal. I wrote a simple program that is loaded onto the Uno to generate radio waves. The program tells the device to transmit the letter "V" in Morse code (this corresponds to dot-dot-dot-dash (...-)). Here's how it works (see the end of the post for the actual code if you want to use it yourself): ___________________________ The electromagnetic wave is produced by outputting a *square wave* to one of the digital output pins. Digital pins can only output two voltages: High (+5 Volts) or Low (Zero volts). So, to get a 1 MHz square wave that can be heard on the radio, we need to switch the digital pin on and off one million times a second (once per microsecond). However, the Uno time delay commands only go down to one microsecond. If we use a microsecond delay between turning the pin on and off, the output frequency will only be 500 kHz (half a MHz). To get around this I used the fact that we know the Uno operates at 16 MHz. Instead of using a time delay comand, after telling the Uno to turn digital pin #8 on I ran 8 useless addition commands (literally just adding 1 to a number over and over). These commands consume 8 microseconds of time, since the processor can do one command per 1/16 of a microsecond. Then, pin #8 is turned off, and another 8 subtractions are calculated (subtracting 1 from a number 8 times). Then the pin gets turned on and again the cycle continues, with a frequency of ... 1 MHz.  *Setup for this silly transmitter. The green wire acts as a crude antenna, while the 9V battery connector connecs to digital output pin #8 on the Uno, which is being used as the transmitter output. I used the battery connector because I lost all of my breadboard wires. The image distortion is due to the fact that I took a panorama to get the entire device in one shot.* To get the morse code transmission, I just ran the transmitter commands through a few loops to send out DOT-DOT-DOT-DASH (which is V in Morse Code). With the wire attached, you can clearly hear the morse code signal on my AM radio (shown as the grey box in the image) from up to a meter away - right around 1 MHz on the receiver as predicted! Since 1 MHz EM waves have a very long wavelength, a longer antenna would likely improve the signal and increase the range. You could even pick up these signals with a car radio if the transmitter was close enough.  *This is a square wave, and it's what the transmit pin of this demonstration outputs. The vertical axis represents Voltage and the horizontal axis represents time, so this is just a picture of a switch turning on and off over and over again.* *[Credit](https://commons.wikimedia.org/wiki/File:Square_wave.svg)* However, you wouldn't want to use this kind of transmitter to actually send information. Coming from something called Fourier's Theorem, every wave you can make with electronics is actually made up of a sum of sine/cosine functions moving at different frequencies. The result for us is that if you put a 1 MHz square wave (which is all turning a pin on and off is) through an antenna, you won't just transmit on 1 MHz: You'll also transmit on a bunch of other frequencies, at varying signal strengths. So, using this kind of transmitter without first filtering the output to be a pure sine wave will result in you littering the radio spectrum with tons of noise on many frequencies and possibly messing with channels you didn't even know you were transmitting on. But even with the noisy output, I think it's a cool demo. Uno's are really cheap (I think you can get off-brand ones for around $5), so you could build one of these and try it out on your radio in about a minute. ## Code Here's the code, if anyone's interested in trying this themselves. I did my best to comment it well so that you can follow along, but I'm not a very good programmer so don't expect the program to be amazing. Anything behind // is a comment. _______________________________ ___________________________________ // Super simple 1 MHz AM-band blank radio wave transmitter for Arduino Uno void setup() { // Initialize transmission pin pinMode(8,OUTPUT); // Use Digital Pin 8 for transmission. Change to whatever pin you like. } void transmit_1MHz() { // Transmitter Function - Custom Function // Run transmitter int j = 1; // Dummy Variable for timing digitalWrite(8,HIGH); // Turns on Digital Pin 8 // Run 8X dummy commands to delay 1/2 microsecond (at 16 MHz clock speed) j++; j++; j++; j++; j++; j++; j++; j++; digitalWrite(8,LOW); // Turns off Digital Pin 8 // Run 8x more dummy commands j--; j--; j--; j--; j--; j--; j--; j--; // The result is a 1 MHz square wave: The voltage is high (+5V) for 1/2 a microsecond, then low (0V) for 1/2 a microsecond. } void loop() { // This runs the transmitter on repeat // To help with identifying the transmission: Transmit the morse code for the letter "V": ...- for (int i = 1; i <= 4000; i++) { // Run for 400 milliseconds, since each transmit run takes 1 microsecond DOT transmit_1MHz(); // Turn on transmitter - each run takes 1 microsecond } delay(200); for (int i = 1; i <= 4000; i++) { // Run for 400 milliseconds, since each transmit run takes 1 microsecond DOT transmit_1MHz(); // Turn on transmitter - each run takes 1 microsecond } delay(200); for (int i = 1; i <= 4000; i++) { // Run for 400 milliseconds, since each transmit run takes 1 microsecond DOT transmit_1MHz(); // Turn on transmitter - each run takes 1 microsecond } delay(200); for (int i = 1; i <= 20000; i++) { // Run for 2000 milliseconds, since each transmit run takes 1 microsecond DASH transmit_1MHz(); // Turn on transmitter - each run takes 1 microsecond } delay(500); } __________________________ ___________________________ ## Conclusion I can already think of some ways to improve this (adding a filter, adding voice, or using the square wave output to drive a higher frequency transmitter), and I may try that in the future. Really this is just a quick demonstration that you can indeed broadcast weak radio signals with these common boards. Let me know if you have questons or comments, or if I made any errors. *Thanks for reading!* ________________ *All images not credited are my own. You are welcome to use them with credit.* *[Read more about the ATMEGA-328 here](https://en.wikipedia.org/wiki/ATmega328)*
author | proteus-h |
---|---|
permlink | simple-am-band-radio-transmitter-using-an-arduino-uno |
category | electronics |
json_metadata | {"tags":["electronics","steemstem","technology","gadgets","diy"],"image":["https://steemitimages.com/DQmV8DBAzHYpVe5AJV6Ec8fumNSyB3s1DkW7rEJM6spsAKs/unoradio1.jpg","https://steemitimages.com/DQmYAmLqiJj7Go8QfW5hMPe1pPAyzUe3xju8ofDmtgdJNBZ/unoradio2.jpg","https://steemitimages.com/DQmQa7nDGq9Y6mC1hHL8bDVMujPYtjw1PA4M9CYRfo5xpK8/unoradio3.jpg","https://steemitimages.com/DQmPYQa8VgJtGcFCqe2XTLiyXxbwDcwbvFsbUVcjJBfBkk2/image.png"],"links":["https://commons.wikimedia.org/wiki/File:Square_wave.svg","https://en.wikipedia.org/wiki/ATmega328"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-03-02 05:23:03 |
last_update | 2018-03-02 05:23:03 |
depth | 0 |
children | 5 |
last_payout | 2018-03-09 05:23:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 23.046 HBD |
curator_payout_value | 6.891 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,699 |
author_reputation | 11,782,898,500,172 |
root_title | "Simple AM-band radio transmitter using an Arduino Uno" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,555,139 |
net_rshares | 6,111,101,728,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 91,406,356,011 | 0.05% | ||
kushed | 0 | 10,378,450,210 | 6% | ||
steem-id | 0 | 49,799,028,710 | 6% | ||
mrs.agsexplorer | 0 | 34,390,359,307 | 10% | ||
justtryme90 | 0 | 269,602,651,355 | 10% | ||
anwenbaumeister | 0 | 116,397,404,766 | 6% | ||
liberosist | 0 | 301,642,308,378 | 6% | ||
timsaid | 0 | 18,007,692,655 | 5% | ||
velourex | 0 | 6,282,847,919 | 6% | ||
lemouth | 0 | 76,817,660,295 | 17.5% | ||
rjbauer85 | 0 | 777,954,513 | 25% | ||
anarchyhasnogods | 0 | 35,670,783,530 | 12.5% | ||
lamouthe | 0 | 5,732,343,735 | 25% | ||
steemedia | 0 | 639,957,011 | 6% | ||
meerkat | 0 | 148,203,352,589 | 6% | ||
curie | 0 | 260,852,623,355 | 6% | ||
cebymaster | 0 | 797,393,755 | 6% | ||
hendrikdegrote | 0 | 3,096,162,609,010 | 6% | ||
steemstem | 0 | 625,655,031,395 | 25% | ||
cotidiana | 0 | 712,463,247 | 6% | ||
teofilex11 | 0 | 3,113,953,020 | 6% | ||
foundation | 0 | 2,281,860,817 | 25% | ||
teamhumble | 0 | 311,023,144 | 0.06% | ||
the-devil | 0 | 3,583,804,980 | 25% | ||
da-dawn | 0 | 12,445,170,357 | 50% | ||
dna-replication | 0 | 11,165,486,459 | 40% | ||
lenin-mccarthy | 0 | 305,060,033 | 3% | ||
dyancuex | 0 | 62,215,983 | 3% | ||
pacokam8 | 0 | 161,381,735 | 1.2% | ||
michelios | 0 | 5,829,177,425 | 3% | ||
jamhuery | 0 | 4,737,949,035 | 25% | ||
mobbs | 0 | 46,877,023,480 | 21.25% | ||
bp423 | 0 | 778,550,773 | 6% | ||
oscarcc89 | 0 | 100,405,175 | 0.6% | ||
kryzsec | 0 | 7,596,704,686 | 25% | ||
markangeltrueman | 0 | 1,075,309,816 | 3% | ||
fredrikaa | 0 | 41,709,271,236 | 12.5% | ||
kontora | 0 | 3,795,907,457 | 75% | ||
trumpman | 0 | 7,074,237,459 | 5% | ||
locikll | 0 | 2,525,631,127 | 12% | ||
dber | 0 | 9,746,921,096 | 25% | ||
aboutyourbiz | 0 | 1,263,638,944 | 6% | ||
dreamien | 0 | 449,844,012 | 6% | ||
kerriknox | 0 | 99,493,451,868 | 25% | ||
alexander.alexis | 0 | 1,375,387,034 | 5% | ||
howtostartablog | 0 | 448,404,424 | 0.3% | ||
tensor | 0 | 421,894,169 | 3% | ||
slickhustler007 | 0 | 251,699,477 | 3% | ||
rockeynayak | 0 | 144,521,060 | 25% | ||
ertwro | 0 | 9,148,468,656 | 25% | ||
makrotheblack | 0 | 195,988,536 | 3% | ||
coloringiship | 0 | 149,307,408 | 0.3% | ||
anarchospace | 0 | 338,134,008 | 6% | ||
nitesh9 | 0 | 5,732,781,085 | 25% | ||
churchboy | 0 | 2,783,218,795 | 25% | ||
gambit.coin | 0 | 71,194,048 | 6% | ||
mcw | 0 | 4,158,389,515 | 10% | ||
bachuslib | 0 | 22,106,767,321 | 100% | ||
ratticus | 0 | 1,993,664,944 | 5.4% | ||
abigail-dantes | 0 | 356,480,994,249 | 25% | ||
leczy | 0 | 2,305,870,843 | 25% | ||
steemulator | 0 | 1,369,872,406 | 6% | ||
krazypoet | 0 | 105,428,449 | 0.03% | ||
mountainwashere | 0 | 6,805,600,186 | 25% | ||
justdentist | 0 | 583,066,057 | 0.6% | ||
somethingburger | 0 | 1,348,521,669 | 25% | ||
techtek | 0 | 6,457,396,612 | 25% | ||
infinitelearning | 0 | 179,966,248 | 3% | ||
ponpase | 0 | 68,007,971 | 3% | ||
jefpatat | 0 | 42,783,595,495 | 100% | ||
dddonnna | 0 | 1,338,509,949 | 100% | ||
ksolymosi | 0 | 3,233,359,394 | 25% | ||
cryptonator | 0 | 1,882,584,098 | 6% | ||
rejzons | 0 | 55,509,692 | 0.6% | ||
smafey | 0 | 59,518,246 | 3% | ||
marialefleitas | 0 | 64,741,430 | 3% | ||
hillaryaa | 0 | 70,883,376 | 6% | ||
gotgame | 0 | 221,141,944 | 3% | ||
birgitt | 0 | 152,568,249 | 6% | ||
markmorbidity | 0 | 101,749,605 | 3% | ||
rscalabrini | 0 | 926,028,177 | 6% | ||
bhargavdas | 0 | 591,663,191 | 100% | ||
carloserp-2000 | 0 | 3,554,928,384 | 25% | ||
pangoli | 0 | 1,313,183,128 | 25% | ||
rachelsmantra | 0 | 986,971,778 | 25% | ||
altherion | 0 | 9,597,751,586 | 25% | ||
gra | 0 | 8,626,607,211 | 25% | ||
artepoetico | 0 | 65,815,200 | 3% | ||
omstavan | 0 | 2,703,028,208 | 100% | ||
sci-guy | 0 | 60,343,958 | 25% | ||
pricelezz | 0 | 55,175,750 | 6% | ||
kerry234 | 0 | 63,688,319 | 6% | ||
delph-in-holland | 0 | 63,281,386 | 3% | ||
spectrums | 0 | 468,203,954 | 6% | ||
jasimg | 0 | 4,634,549,172 | 6% | ||
drmake | 0 | 77,027,846,203 | 100% | ||
xanderslee | 0 | 475,451,836 | 6% | ||
kenadis | 0 | 5,947,372,360 | 25% | ||
esaia.mystic | 0 | 296,848,522 | 6% | ||
amavi | 0 | 3,792,169,630 | 5% | ||
romanaround | 0 | 223,189,512 | 0.6% | ||
robotics101 | 0 | 599,401,648 | 21.25% | ||
jaeydallah | 0 | 81,032,701 | 6% | ||
arrjey | 0 | 54,881,421 | 2.5% | ||
gentleshaid | 0 | 3,393,851,500 | 25% | ||
steemmakers | 0 | 24,138,725,175 | 100% | ||
tito36 | 0 | 51,697,181 | 6% | ||
dethclad | 0 | 104,548,048 | 3% | ||
proteus-h | 0 | 8,816,181,037 | 100% | ||
druids | 0 | 150,830,155 | 3% | ||
sco | 0 | 964,757,281 | 5% | ||
dysfunctional | 0 | 1,611,960,177 | 12.5% | ||
speaklife | 0 | 76,419,257 | 6% | ||
laritheghost | 0 | 68,436,693 | 3% | ||
hadji | 0 | 1,082,778,244 | 25% | ||
steemstem-bot | 0 | 2,249,001,353 | 15% | ||
revilationer | 0 | 132,890,206 | 3% | ||
acelad | 0 | 683,641,028 | 6% | ||
terrylovejoy | 0 | 25,293,241,816 | 100% | ||
neneandy | 0 | 295,779,668 | 3.6% | ||
ligarayk | 0 | 62,953,512 | 6% | ||
nobyeni | 0 | 79,973,868 | 0.3% | ||
salvadorcrg | 0 | 554,632,184 | 50% | ||
randomwanderings | 0 | 163,445,730 | 6% | ||
deutsch-boost | 0 | 358,296,521 | 20% | ||
nwjordan | 0 | 578,699,484 | 6% | ||
crypticalias | 0 | 89,055,853 | 6% | ||
zipporah | 0 | 426,308,823 | 1.2% | ||
hrissm | 0 | 952,449,038 | 6% | ||
synergysteem | 0 | 1,139,325,944 | 100% | ||
positiveninja | 0 | 149,066,802 | 3% | ||
dmxmaster | 0 | 529,531,682 | 100% | ||
chosunone | 0 | 17,879,790,145 | 100% | ||
blerdrage | 0 | 103,245,130 | 3% | ||
effofex | 0 | 64,778,871 | 12.5% | ||
de-stem | 0 | 3,118,765,032 | 12.5% | ||
jarric | 0 | 524,029,987 | 100% | ||
veckinon | 0 | 639,788,075 | 100% | ||
letsawesome | 0 | 632,912,814 | 100% | ||
kimmystewart | 0 | 120,850,852 | 100% | ||
plgonzalezrx8 | 0 | 207,717,470 | 6% | ||
raselrana | 0 | 0 | 100% |
Nice post, keep going like this. Someday the community will understand your worth..
author | onderakcaalan |
---|---|
permlink | re-proteus-h-simple-am-band-radio-transmitter-using-an-arduino-uno-20180303t002350095z |
category | electronics |
json_metadata | {"tags":["electronics"],"app":"steemit/0.1"} |
created | 2018-03-03 00:23:57 |
last_update | 2018-03-03 00:23:57 |
depth | 1 |
children | 0 |
last_payout | 2018-03-10 00:23:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 2,394,870,447,873 |
root_title | "Simple AM-band radio transmitter using an Arduino Uno" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,753,588 |
net_rshares | 9,158,677,793 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proteus-h | 0 | 9,158,677,793 | 100% |
Congratulations! This post has been upvoted by SteemMakers. We are a community based project that aims to support makers and DIYers on the blockchain in every way possible. Find out more about us on our website: [www.steemmakers.com](www.steemmakers.com). <br/><br/>If you like our work, please consider upvoting this comment to support the growth of our community. Thank you.
author | steemmakers |
---|---|
permlink | re-proteus-h-simple-am-band-radio-transmitter-using-an-arduino-uno-20180305t095555073z |
category | electronics |
json_metadata | "" |
created | 2018-03-05 09:55:42 |
last_update | 2018-03-05 09:55:42 |
depth | 1 |
children | 0 |
last_payout | 2018-03-12 09:55:42 |
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 | 376 |
author_reputation | 1,907,312,584,548 |
root_title | "Simple AM-band radio transmitter using an Arduino Uno" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 42,339,404 |
net_rshares | 0 |
<center><a href="www.steemit.com/@steemstem"><img src="https://media.discordapp.net/attachments/384404201544876032/405507994583957505/steemSTEM.png"></a><br><table><tr><th> </th><th> </th><th><a href="https://steemit.com/steemstem/@steemstem/helpful-guidelines-for-crafting-steemstem-content">Guidelines</a></th><th><a href="https://steemit.com/steemstem/@steemstem/steemstem-winter-2017-2018-project-update">Project Update</a></th><th> </th><th> </th></tr></table><br><a href="https://steemit.com/steemstem/@steemstem/being-a-member-of-the-steemstem-community"><b>Being A SteemStem Member</b></a></center>
author | steemstem-bot |
---|---|
permlink | re-simple-am-band-radio-transmitter-using-an-arduino-uno-20180302t180653 |
category | electronics |
json_metadata | "" |
created | 2018-03-02 18:06:54 |
last_update | 2018-03-02 18:06:54 |
depth | 1 |
children | 0 |
last_payout | 2018-03-09 18:06:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.644 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 606 |
author_reputation | 3,811,533,615,496 |
root_title | "Simple AM-band radio transmitter using an Arduino Uno" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,690,340 |
net_rshares | 141,898,671,643 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
justtryme90 | 0 | 141,898,671,643 | 5% |
This is a good start for a transmitter, sounds like you need something faster though to be able to form proper sinusoidal waves. Then you'd need to use a PWM function to drive the levels in the wave. Probably not what this Arduino was designed for, but looks like a fun project!
author | terrylovejoy |
---|---|
permlink | re-proteus-h-simple-am-band-radio-transmitter-using-an-arduino-uno-20180302t101726026z |
category | electronics |
json_metadata | {"tags":["electronics"],"app":"steemit/0.1"} |
created | 2018-03-02 10:17:27 |
last_update | 2018-03-02 10:17:27 |
depth | 1 |
children | 1 |
last_payout | 2018-03-09 10:17:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.145 HBD |
curator_payout_value | 0.041 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 281 |
author_reputation | 15,797,973,031,321 |
root_title | "Simple AM-band radio transmitter using an Arduino Uno" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,602,146 |
net_rshares | 38,619,434,690 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proteus-h | 0 | 9,157,901,509 | 100% | ||
terrylovejoy | 0 | 29,461,533,181 | 100% |
It'd only take a few additional parts to massively improve the transmitter. A tuned LC circuit can filter out all of the non-1MHz harmonics and feeding the output to a transistor base should amplify the signal considerably. Might even be able to add voice with another transistor further down.
author | proteus-h |
---|---|
permlink | re-terrylovejoy-re-proteus-h-simple-am-band-radio-transmitter-using-an-arduino-uno-20180302t174031781z |
category | electronics |
json_metadata | {"tags":["electronics"],"app":"steemit/0.1"} |
created | 2018-03-02 17:40:30 |
last_update | 2018-03-02 17:40:30 |
depth | 2 |
children | 0 |
last_payout | 2018-03-09 17:40:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 295 |
author_reputation | 11,782,898,500,172 |
root_title | "Simple AM-band radio transmitter using an Arduino Uno" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,685,464 |
net_rshares | 12,721,877,858 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
terrylovejoy | 0 | 12,721,877,858 | 50% |