I am a newbie when it comes to HW programming, and I wish to accomplish one simple design for a POC. Here it is
I need to have a board with two components,
1- A simple motor that I can control the rotation speed for programamtically (ex: computer script)
2- A simple LED that displays rotation speed
My questions are
1- What components (models) do I need to purchase?
2- Are such scripts available online as examples?
This board has both a dc motor a driver and leds to indicate rotation.
In addition you have tp provide control signals for pwm and direction. This can easily be done from a arduino. If you want to control it from a PC you write a program i processing to communicate with the arduino
You control the speed by sending values from the pc to the arduino. This can be done from either a terminal program or an application that somehow automates the process.
The program in the arduino has to parse these values, scale them and output them on a pwm pin with analogWrite(). Maybe not the first program for a beginner but pretty straighforward