AVR ATmega Projects

MIDI code generator e1668837549849

ProxMidi A capacitive MIDI sequencing platform

Introduction ProxiMIDI is a MIDI code generator, that takes its inputs from a user using Atmel’s Capacitive touch and Proximity technology. It can generate sound signals for 4 notes of 3 instruments and vary the tempo, volume and sound depending upon the proximity inputs. The signals generated from ProxiMIDI can be connected to any MIDI

ProxMidi A capacitive MIDI sequencing platform Read More »

CONNECTING BOARD PROGRAMMER e1668067896536

Embedded Programming

1. Programming Board Blinking Code using Arduino environment CODE: I started with code code from Jaclyn Berry’s page : const int buttonPin = 7; const int ledPin = 2; int buttonState = 0; void setup() { pinMode(ledPin, OUTPUT); pinMode(buttonPin, INPUT); } void loop() { buttonState = digitalRead(buttonPin); if (buttonState == HIGH){ digitalWrite(ledPin,HIGH); } else{ digitalWrite(ledPin,LOW);

Embedded Programming Read More »

Scroll to Top