Closed Mikalangelo closed 8 years ago
Jankie already made a video: https://www.youtube.com/watch?v=h2Z0s7_z6IM
What os do you use? NOOBS or Raspbian?
What program do you use for the code? Terminal or Python?
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
Thank you I'll try it as soon as possible!
Thank you for the awesome directions! Quick typo correction though, instead of sudo ./fm_transmitter -f 100.0 starwars.wav
you need to type sudo ./fm_transmitter -f 100.0 star_wars.wav
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