#12,001 in Electronics
Use arrows to jump to the previous/next product

Reddit mentions of Arduino Micro with Headers [A000053]

Sentiment score: 3
Reddit mentions: 4

We found 4 Reddit mentions of Arduino Micro with Headers [A000053]. Here are the top ones.

Arduino Micro with Headers [A000053]
Buying options
View on Amazon.com
or
    Features:
  • The Arduino Micro is a microcontroller board based on the ATmega32U4 (datasheet), developed in conjunction with Adafruit.
  • It has 20 digital input/output pins (of which 7 can be used as PWM outputs and 12 as analog inputs), a 16 MHz crystal oscillator, a micro USB connection, an ICSP header, and a reset button.
  • It contains everything needed to support the microcontroller; simply connect it to a computer with a micro USB cable to get started. It has a form factor that enables it to be easily placed on a breadboard.
  • The Arduino Micro board is similar to the Arduino Leonardo in that the ATmega32U4 has built-in USB communication, eliminating the need for a secondary processor.
  • The Arduino Micro can be powered via the micro USB connection or with an external power supply. The power source is selected automatically.
Specs:
Height3 Inches
Length4 Inches
Number of items1
Sizewith headers
Weight0.0551155655 Pounds
Width1 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 4 comments on Arduino Micro with Headers [A000053]:

u/Alaeron · 5 pointsr/starcitizen

After seeing a couple posts of people's custom button boxes on reddit I knew I had found my next project. I've been doing quite a bit of Arduino and small electronics lately, and this was the perfect fit. So off I went to Amazon, ordered a bunch of stuff I thought might be cool / useful and started piecing things together. Took a few weekends of working on it here and there, the most time consuming part just being tediously soldering and wiring the 38 inputs.

​

Was originally going to set it into some sort of project enclosure, but ended up getting impatient and just mounting it to two pieces of plywood with some feet. It added enough heft to it that I can lift the switch guard and rotate the somewhat stiff selector without issue. Eventually I'll get a better enclosure for it, probably grab one off of Hammond mfg or get someone with a larger 3D printer to make one. The Engine Start and black/red button (that I'm going to use for quantum jump) have leds in them that I don't currently have hooked up to the Arduino, but once we get some sort of API into Star Citizen hopefully I can tie them to engine state and jump spool/ready state.

​

The controls are:

Power on, flight ready, 3 misc buttons, zoom rotary encoder, 3 misc buttons, quantum spool, quantum jump

Hat switch + center for shield distribution and reset, engine, shield, and thruster power switches, power distribution profile selector, misc selector

Flare Fire button, flare select, 7 misc toggle switches, self destruct switch, eject switch.

​

I mapped everything to a button in the Arduino code (no rotary encoder as zoom in this screenshot) so that I can easily bind to functions in Star Citizen. Unfortunately without an API this means the switch positions can get out of sync with the actual ship status easily. If by the time of release / they make an API there still isn't a way to read / set state by API then I'll probably make a new version with only toggle buttons.

​

Code Libraries

PCF8574_library for interfacing with the IO expanders
- https://github.com/xreef/PCF8574_library

ArduinoJoystickLibrary for emulating a joystick on windows
- https://github.com/MHeironimus/ArduinoJoystickLibrary/

​

Useful Instructables

Joystick Library
- https://www.instructables.com/id/Create-a-Joystick-Using-the-Arduino-Joystick-Libra/

PCF8574
- https://www.instructables.com/id/PCF8574-GPIO-Extender-With-Arduino-and-NodeMCU/

​

Parts List

1 Terminal Expansion Board - https://www.amazon.com/gp/product/B07PGDWJ2V

3 PCF8574 IO Expansion Board - https://www.amazon.com/gp/product/B07B95LMLQ

1 Rotary Encoder - https://www.amazon.com/gp/product/B07DM2YMT4

1 4 Position Rotary Selector - https://www.amazon.com/gp/product/B07JN2967L

1 Red Ring Momentary Push Button - https://www.amazon.com/gp/product/B017ILTX60

1 Engine Start Momentary Push Button - https://www.amazon.com/gp/product/B07MK2394L

5 Heavy Duty Toggle Switch - https://www.amazon.com/gp/product/B078KBC5VH

1 12 Position Rotary Switch - https://www.amazon.com/gp/product/B074WMC9C8

1 5-Channel Rocker - https://www.amazon.com/gp/product/B07K5PFPNC

1 Arduino Micro - https://www.amazon.com/gp/product/B00AFY2S56

7 Red/Black Momentary Push Buttons - https://www.amazon.com/gp/product/B07BD2D96W

2 Red Cover Toggle Switches - https://www.amazon.com/gp/product/B07BD2D96W

8 Small Toggle Switches - https://www.amazon.com/gp/product/B013DZB6CO

u/Oddzball · 3 pointsr/starcitizen

The Arduino generic Game Controller provides the following:

X, Y, and Z axis
32 buttons
X, Y, and Z axis rotation
Rudder
Throttle
2 Point of View Hat Switches

So you can actually make your own controller relatively easy, and even have things such as a few Pots for trim adjustment, or simple buttons too.


Instructions on how to program and set up the microcontroller;

http://www.instructables.com/id/Arduino-LeonardoMicro-as-Game-ControllerJoystick/

Soldering tutorials;
https://www.youtube.com/watch?v=J5Sb21qbpEQ&list=PLNEAKeawWr2wiTBpoUUXdeRGnpqFUNhwP&index=4
https://www.youtube.com/watch?v=fYz5nIHH0iY&list=PLNEAKeawWr2wiTBpoUUXdeRGnpqFUNhwP&index=5



Parts list;

http://www.amazon.com/Arduino-ARD-A000059-Micro/dp/B00AFY2S56

http://www.amazon.com/Joystick-Analog-Stick-Assembly-Replacement/dp/B00170JDZU/ref=sr_1_1?ie=UTF8&qid=1450210079&sr=8-1&keywords=psp+joystick

And whatever the heck you build it with. Soldering is easy as pie, and some wire from whatever.

You could do a complete "Keyboard" if you will with this single Microcontroller.

Momentary Toggle switches, Regular buttons, 3 axis controls, and like i said, even a set of 3 pots for something like trim adjustment or whatever.

I highly recommend getting a breadboard, which you can simply plug and play everything in to test out your circuit and design, and then getting a perf board of some sort for the final layout.

UPDATED: Apparently there is software out there that completely removes the need for you to know how to code, provided by /u/foofad please see the following post. honestly, this just got even easier.

http://simhq.com/forum/ubbthreads.php/topics/3899105/MMJoy_-_Build_your_own_USB_con

u/jt7724 · 1 pointr/techtheatre

They could stick a micro arduino in there and have full control over fade up and flicker effects as well.

Arduino micro for $25

Adafruit trinket for $10