Arduino LCD Displays Wire up the arduino using these following instructions VCC (Red) to 5V Ground/GND (Black) to GND SDA (Blue) to A4 SCL (Yellow) to A5 The code used was downloaded adn the library installed in the specific location. Ensure that the LCD drivers are included in the same folder #include <Wire.h> // Comes […]
arduino
Arduino – Week 2 – Stepper Motors
What is a stepper motor? A stepper motor uses opposing electromagnets to create rotation. The different number of steps are determined by the number of poles on each the stator and the rotor. There are several different types of stepper motor, depending on the use case and the size that is required. The main types […]
Arduino – Week 1 – Software Notes
Pulse Width Modulation Using ‘unsigned char’ to replace values > ‘unsigned char’ allows you to control all of the same variables in a sketch by only changing one value unsigned char DelayTime = 255; unsigned char LEDoutput = 2; // the setup function runs once when you press reset or power the board […]