FSM Lecture 36: Exercise-003 Testing on hardware
Exercise-003 Testing on hardware In this article let's test the Productivity Timer Exercise. Let’s test this application on the real hardware. I have the setup as shown…
Exercise-003 Testing on hardware In this article let's test the Productivity Timer Exercise. Let’s test this application on the real hardware. I have the setup as shown…
Exercise-003 Implementing initial transition actions The protimer_init function is an initial transition function. It is making a transition to IDLE state. But the IDLE state has…
Exercise-003 Helper function implementation In this article, we learn how to implement helper functions. First, display_message. You have to call the first lcd_set_cursor, then call lcd_print_string, as…
Exercise-003 Implementing LCD functions Part 2 In this article, let’s continue implementing the LCD functions. lcd_set_cursor() → you must first mention the column and then row for…
Exercise-003 Implementing LCD functions Part 1 In this article, let’s implement the lcd.cpp. You can look at one usage example(Figure 1). First, you have to create the…
Adding arduino Library to project in platformIO In this article, let’s explore Arduino’s official LCD library. 1. For that, you have to go Arduino website, go to…