Other Projects

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 »

Using the GNU AVR toolchain on Windows 10

Using the GNU AVR toolchain on Windows 10

Introduction This page attempts to describe a procedure for installing a complete GCC-based toolchain on a modern Windows system. I’ve developed these instructions on my Windows 10 machine, but they should work for versions of Windows as far back as Windows 7. On older versions, you might want to use WinAVR. WinAVR used to be the preferred way to get

Using the GNU AVR toolchain on Windows 10 Read More »

I had already taken it out e1667801277861

Networking

Board Design For part of my final project I want to make my own USB audio recording device. So I’ll try to develop all the necessary electronics this week. I have the analog circuitry I need from inputs week. But I don’t have a board ready to go with a USB-capable microcontroller (bit-banging will not suffice,

Networking Read More »

Scroll to Top