This demo consists of the PiDuino, camera, analog distance sensor, servo and NeoPixel.
This demo consists of the PiDuino, camera, analog distance sensor, servo and NeoPixel.
After assembly the Arduino IDE software for the Raspberry Pi would now need to be installed.
This guide is the assembly instructions for the PiDuino Kit. The PiDuino enables the Pi to have real-time and analog capabilities.
This article will show you how to control the Arduino IO pins faster, a lot faster.
We all know we can use the digitalWrite() command to set an IO pin high or low. Before we do any mods lets do some measurement to see how long it takes.
With a simple sketch to output a square wave on digital pin 2.
int outPin = 2; // Use digital pin 2 as output void setup() { pinMode(outPin, OUTPUT); // sets the digital pin as output } void loop() { digitalWrite(outPin, HIGH); // sets output high digitalWrite(outPin, LOW); // sets output low }
To measure the time it takes to set the output pin high then low, we’re going to use a Saleae Logic Analyzer.
This project uses the Arduino board and the CAN-BUS shield .
This shield gives the Arduino CAN-Bus capability. It uses the Microchip MCP2515 CAN controller with MCP2551 CAN transceiver.