# Download the two files attached to this step: dialer.py and dialer.service.txt # Execute the following commands on your Raspberry Pi # Create the dialer.py Python script cd ~ mkdir python sudo nano dialer.py # In the file that opens paste the contents of the dialer.py file in # Save and exit # Create the service cd /lib/systemd/system/ sudo nano dialer.service # Paste in contents from dialer.service.txt file # Save and exit sudo systemctl daemon-reload sudo systemctl enable dialer.service sudo systemctl start dialer.service