Overview of the Serial Communication Protocol
Testing the Code
With the Arduino's serial monitor, you can enter data directly to your Arduino. After your sketch is running, open the Serial Monitor by clicking its icon. Be sure to select 9600 baud in the lower right corner (Figure 3); then, you can type L (uppercase) to turn the LED on and l (lowercase) to turn it off.
To move the servo, enter a number between 0 and 180 followed by a period. Because the Arduino doesn't know how many digits are in your number, the period lets it know that you're done sending. Sending a number and waiting five seconds also works, because Serial.setTimeout
(Listing 1, line 13) makes sure the program doesn't stall.
Independent of the output, if the button or switch changes state, you'll get a message in the serial window. If a program were to receive this serial output, it could interpret the messages and take action on the basis of the values, as shown in the Python snippet in Listing 2.
Listing 2
Python Serial Transmitter
01 import serial 02 import time 03 ser = serial.Serial('/dev/ttyAMA0') # open the Arduino serial port 04 05 while 1: 06 ser.write('L') # turn the LED on 07 time.sleep ( 1 ) # wait a second 08 ser.write ( 'l' ) # turn the LED off 09 time.sleep (1) 10 ser.close() # close port
Controlling the LED
As with any Python program, import
brings in an external library. In this case, line 1 is the interface to serial ports [4], and line 2 is the time module, which provides the sleep
function.
The serial.Serial
function opens a serial port. The only required argument is the port name. In this case, /dev/ttyAMA0
is the Arduino. Without any other parameters, communication will default to 9600 baud, 8N1 (data, parity, stop bits).
The infinite loop (lines 5-9) sends an uppercase L out the serial port (line 6), waits one second (line 7), sends a lowercase l out the serial port (line 8), and waits one second (line 9). Although line 10 will never be reached in this example, ser.close
shuts down a port. Python also takes care of the port if the program terminates.
Once you've programmed the Arduino, run the Python snippet, and your LED should start blinking. Of course, you can now change the timing or send other commands by modifying the desktop program instead of reprogramming the Arduino. This arrangement can be very handy if the Arduino is embedded in another piece of equipment (or suspended 30 feet in the air).
Listening to Inputs
The Python code in Listing 3 reports the changing states of the button and switch. The infinite loop that starts in line 4 gets a line from the serial port with ser.readline
(line 5) and splits it at the colon (line 6). To the left of the colon, the string will either be Switch
or Button
. If it is Switch
(line 7) and the status (right of the colon, statusParts[1]
) is
, then the switch is ON (line 8). Otherwise the switch is off (line 9). Lines 10-12 work the same way, except it checks and reports the state of the button.
Listing 3
Python Serial Receiver
01 import serial 02 ser = serial.Serial('/dev/ttyAMA0') # open the Arduino serial port 03 04 While 1: 05 status = ser.readline() 06 statusParts = status.split ( ":" ) 07 If statusParts [ 0 ] == "Switch": 08 If statusParts [ 1 ] == "0": print ( "The switch is ON" ) 09 Elif statusParts [ 1 ] == "1": print ( "The switch is OFF" ) 10 Elif statusParts [ 0 ] == "Button": 11 If statusParts [ 1 ] == "0": print ( "The button is pressed" ) 12 Elif statusParts [ 1 ] == "1": print ( "The button is released" )
When you run the snippet in Listing 3 and fiddle with the button and switch, you should see messages announcing the changes in state in the terminal. Although this example just shows a message, it is not hard to see how this could trigger other code.
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.