Synchronizing an LED array with a motor

In the previous sections of this chapter, we learned about controlling an LED array and DC motor using Arduino:

Synchronizing an LED array with a motor

Once you have connected the circuit as shown in the preceding image, upload the following code to Arduino. In the following code, we are writing the "Hello world" of persistence of vision:

int LEDPins[] = {2, 3, 4, 5, 6, 7, 8, 9}; int noOfLEDs = 8; //data corresponding to the each alphabet and a few characters to be displayed byte H[] = {B11111111, B11111111, B00011000, B00011000, B00011000, B00011000, B11111111, B11111111}; byte E[] = {B00000000, B11111111, B11011011, B11011011, B11011011, B11011011, ...

Get Arduino: Building exciting LED based projects and espionage devices now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.