Skip to content

Instantly share code, notes, and snippets.

View drews256's full-sized avatar
🐋
💨

Andrew Stuntz drews256

🐋
💨
View GitHub Profile
/*
* 8x8 LED array test1
* display a line of lights moving around the perimeter of the 8x8 matrix
*/
// Arduino pin definitions - (ordered to keep wiring tidy)
int row[] = {14,10,4,12,9,5,8,6}; //rows - driven LOW for on
int col[] = {17,16,13,2,15,3,7,11}; //columns - driven HIGH for on
// give our moving light a tail?
#include <SoftwareSerial.h>
SoftwareSerial BT(10, 11);
// creates a "virtual" serial port/UART
// connect BT module TX to D10
// connect BT module RX to D11
// connect BT Vcc to 5V, GND to GND
void setup()
{
// set digital pin to control as an output
pinMode(13, OUTPUT);
/*
L9110S_Motor_Driver_Example - Arduino sketch
Thank you Banana Robotics for the Bulk of this code.
Connections:
Arduino digital output D10 to motor driver input B-IA.
Arduino digital output D11 to motor driver input B-IB.
Motor driver VCC to operating voltage 5V.
/*
ADXL335
Reads an Analog Devices ADXL335 accelerometer and communicates the
acceleration to the computer.
Designed for the ADXL335 available at Tayda Electronics at
http://www.taydaelectronics.com/breakout-boards/adxl335-3-axis-accelerometer.html
/*
ESP8266 Blink by Andrew Stuntz
The LED is connected to GPIO pin 5 in this case.
Written for the ESP8266 ESP-07 version of this board.
*/
void setup() {
pinMode(5, OUTPUT); // Initialize the LED_BUILTIN pin as an output
Serial.begin(115200);