markondej / fm_transmitter

Raspberry Pi as FM transmitter
1.32k stars 292 forks source link

Can you please put a video tutorial up? #29

Closed Mikalangelo closed 8 years ago

Mikalangelo commented 8 years ago

I am extremely new to raspberry pi and got this as a gift. I want to learn how to make this project. The words don't really mean anything to me so thats why I want a video tutorial

markondej commented 8 years ago

Jankie already made a video: https://www.youtube.com/watch?v=h2Z0s7_z6IM

Mikalangelo commented 8 years ago

What os do you use? NOOBS or Raspbian?

Mikalangelo commented 8 years ago

What program do you use for the code? Terminal or Python?

markondej commented 8 years ago

NOOBS is not OS, but simple os-choosing application with graphic layer. You can use NOOBS image to run Raspbian. This project should compile on any linux-based OS, but I recommend Raspbian. Code was written in C++ (2003 standard), so to run it, you have to: 1) Download it - ie. start your RPi with raspbian, establish internet connection (plug in ethernet wire or use WiFi dongle), run Terminal, then type: git clone https://github.com/markondej/fm_transmitter 2) Compile it - as C++ code is human readable, in order to be run on computer it should be translated into CPU machine code. Usualy this "translation" is called "compilation". To compile fm_transmitter you will need to change current working directory to where you downloaded it (in terminal): cd fm_transmitter and then use make command to perform compilation make all 3) Tada - new file should be generated - fm_transmitter, containing machine code runable on your RPi. Test it with use of this command in terminal: sudo ./fm_transmitter -f 100.0 starwars.wav

Mikalangelo commented 8 years ago

Thank you I'll try it as soon as possible!

markrsmith commented 8 years ago

Thank you for the awesome directions! Quick typo correction though, instead of sudo ./fm_transmitter -f 100.0 starwars.wavyou need to type sudo ./fm_transmitter -f 100.0 star_wars.wav