Tagged Questions

Arduino is an open-source electronics prototyping platform.

learn more… | top users | synonyms

34
votes
15answers
5k views

How to start programming a microcontroller?

I have developed software in C++, Java, PHP, .NET and now I am interesting to learn to program material things. I would like to program a system that could interact with IR, LCD and to be able to ...
26
votes
13answers
3k views

Does it matter which microcontroller to use for 1st time embed system programmer?

I've experience in doing desktop and web programming for a few years. I would like to move onto doing some embed system programming. After asking the initial question, I wonder which hardware / ...
25
votes
8answers
1k views

Getting started with Arduino?

I'm going to get an Arduino starter kit like the one below. What else do I need to get started? What are some good Arduino programming resources? What else can I buy/acquire to make my first ...
22
votes
7answers
477 views

Looking for ways for a robot to locate itself in the house

I am hacking a vacuum cleaner robot to control it with a microcontroller (Arduino). I want to make it more efficient when cleaning a room. For now, it just go straight and turn when it hits something. ...
22
votes
10answers
12k views

How can I unit test Arduino code?

I'd like to be able to unit test my Arduino code. Ideally I would be able to run any tests without having to upload the code to the Arduino. Are there any tools or libraries out there which can help ...
19
votes
5answers
2k views

Working Android with Arduino

Has anyone tried to make Android and Arduino communicate with each other? I found a couple of projects online: Amarino Android-Arduino What do you guys suggest is the best way to make those two ...
10
votes
2answers
381 views

How can I properly connect an Android application to an RFCOMM socket on a Bluetooth enabled Arduino microcontroller?

I'm working with some students at my university developing a simple Bluetooth Android application that will be used for serial communication (RFCOMM) to an Arduino microcontroller with a Bluetooth ...
10
votes
2answers
731 views

Arduino programming on Mac OS X with Xcode 4?

Is there a good reference on how to set up an Arduino programming environment with Xcode 4? An ideal answer would be along the lines of, "Oh yes, there's an active project on Google Code, just ...
10
votes
4answers
11k views

Lighting Control with the Arduino

I'd like to start out with the Arduino to make something that will (preferably) dim my room lights and turn on some recessed lighting for my computer when a button or switch is activated. First of ...
9
votes
2answers
254 views

Detect Arduino port in Python

I am using an Arduino for sensing using Python 2.7 on Windows XP, but the non-static nature of the USB-to-serial port translation is giving me a headache. With a physical serial port there is no issue ...
9
votes
2answers
377 views

Setting up Xcode to work with Arduino

I have read a number of forums posts and blog "tutorials" and all of the contain comments that they are out of date or don't work. How does one setup Xcode to work with Arduino, installing a template ...
9
votes
1answer
865 views

Do interrupts interrupt other interrupts on Arduino?

I have an Arduino Uno (awesome little device!). It has two interrupts; let's call them 0 and 1. I attach a handler to interrupt 0 and a different one to interrupt 1, using attachInterrupt() : ...
9
votes
3answers
870 views

pySerial works fine in Python interpreter, but not standalone

Good morning! Recently I bought an Arduino board to make sort of "light control" in my room. Here is the code of the firmware I wrote: int control = 0; int pin = 0; void setup() { ...
9
votes
6answers
3k views

Make a USB Device, Control It In Java

I'm thinking about making a physical controller (device?) with knobs, buttons, and LEDs. I'd like to interact with it using Java (respond to the knobs, light up LEDs, etc). The reason I mention Java ...
9
votes
4answers
2k views

Getting Epson receipt printer to print from Arduino

This is a bit of an odd/specific question, but I'm having no luck, so maybe someone can help. I'm trying to build a microprinter using an Arduino and an Epson TM-T88II receipt/POS printer. The printer ...
8
votes
1answer
196 views

Is there a way to “compile” Python code onto an Arduino (Uno)?

I have a robotics type project with an Arduino Uno, and to make a long story short, I am experimenting with some AI algorithms. However, I need to implement some high level matrix algorithms that ...
8
votes
2answers
746 views

Beginners tutorial for Arduino Mega ADK

Does anyone know of a good intro to controlling the Arduino Mega ADK with a handset? All I want to do is to control the LED on pin 13, using a very basic toggle switch app. Edit 26/10/11: ...
8
votes
4answers
1k views

Using 3.1's USB host mode with Arduino

Is there a good tutorial for using an Arduino with an Android where the Android device is the USB host? (The Android device has OS version 3.1 (Honeycomb) or later). The only host program on the ...
7
votes
3answers
146 views

Arduino: String array not deallocated upon scope exit

I am running into some serious memory leaks in my application, so I setup this extremely bare solution to test what happens when a String array goes out of scope... I know that the old TextString ...
7
votes
1answer
170 views

How Can I recevied data from pc to arduino?

I developed a app that send data for arduino by serial port, but i can understand how i can recevied in arduino. Because i send a string by serial port for arduino and the arduino recevied anything ...
7
votes
2answers
292 views

How to send a value from Arduino to Python and then use that value

I am in the process of building a robot that is remote controlled using Python to send control messages via the Internet through a simple GUI. I have gotten part of my code working pretty well, the ...
7
votes
3answers
2k views

Interfacing Android Nexus One with Arduino + BlueSmirf

I'm a bit new to all of this, so bear with me - I'd really appreciate your help. I am trying to link the Android Nexus One with an arduino (Duemilanove) that is connected to a BlueSmirf. I have a ...
7
votes
9answers
1k views

What are some ideas for an embedded and/or robotics project?

I'd like to start messing around programming and building something with an Arduino board, but I can't think of any great ideas on what to build. Do you have any suggestions?
7
votes
6answers
2k views

Arduino: Lightweight Compression Algorithm to store data in EEPROM

I want to store a shitload of data onto my Arduino whith ATmega168/328 Controller, but unfortunately there's only 256KB / 512KB of EEPROM storage. My idea is to make use of an compression algorithm ...
7
votes
6answers
3k views

toggle two bits with a single operation in C?

Lets say I have a byte with 6 unknown values: ???1?0?? and I want to swap bits 2 and 4 (without changing any of the ? values): ???0?1?? But how would I do this in one operation in C? I'm ...
7
votes
6answers
4k views

Arduino C++ code: can you use virtual functions and exceptions?

Following up on this comment from the question Writing firmware: assembly or high level?: When compiling C++ code for the Arduino platform, can you use virtual functions, exceptions,etc. Or would ...
6
votes
1answer
59 views

What is Nak Limit?

Am trying to understand how the Android Open Accessory API works with the Arduino ADK board, I've been able send and receive information but I just want to know how everything works. I got to this ...
6
votes
2answers
172 views

PySerial not talking to Arduino

Python version: 2.6.6 PySerial version: 2.5 Arduino board: Duemilanove 328 I have written some code to simulate some hardware I'm working with and uploaded it to the Arduino board. This code works. ...
6
votes
3answers
238 views

Why is no serial data available on my Arduino?

I've run the simple serial program on my Arduino Uno, which just echos whatever you type to it. This works perfectly when run in the Arduino Sketch IDE (v22). int incomingByte = 0; // for incoming ...
6
votes
1answer
211 views

Streaming webcam data to a webpage

My intention: Stream webcam feed to a webpage. Have buttons that talk to a Python program. I'm planning on using OpenTLD (AKA Predator) to get information about a moving speaker via webcam. Then ...
6
votes
2answers
1k views

A “Hello World” tutorial for Arduino and Android

A few days ago, Arduino just released a "start pack" for Android developers: http://arduino.cc/en/Main/ArduinoBoardADK The Arduino ADK is a microcontroller board based on the ATmega2560 ...
6
votes
5answers
539 views

How is programming an Arduino different than standard C?

I have a background in programming embedded systems(TI MSP430, Atmel ATXMega). How is programming an Arduino different than those? What knowledge about C can I take in to programming the Arduino?
6
votes
5answers
467 views

How commonly used are the xilinx chips?

I'm beginning to learn embedded with C (and maybe some C++) and someone from the office said they're willing to donate a free xilinx chip they've got sitting on their shelf. I was thinking more along ...
6
votes
3answers
1k views

Arduino Emacs development

I would like to use Emacs as a development environment for Arduino programming. What are some tips or links to use Emacs to program Arduino? Is there an official (or de facto) Emacs mode? Also, am I ...
6
votes
6answers
3k views

What are some project ideas for the Arduino?

What are some project ideas for the Arduino? (Started as a community wiki!)
6
votes
1answer
2k views

Wireless programming with the Arduino XBee Sheild and XBee Explorer

I am trying to enable wireless programming of an Arduino via the XBee Shield and an XBee Explorer. I've seen two tutorials online, XBee radios and Wireless Bootloading for ATmega168/ATmega328 that ...
6
votes
2answers
8k views

Serial Communication between Java RXTX and Arduino

I'm trying to communicate between my PC (Windows 7 using Netbeans and RXTX) with an Arduino Pro, using the serial port. The Arduino is actually connected to the PC using an FTDI cable. The code is ...
6
votes
4answers
5k views

Arduino : sending MIDI up the USB

I'm interested in making an Arduino based MIDI controller to talk to my computer. Looking at other examples of Arduino MIDI (eg. http://itp.nyu.edu/physcomp/Labs/MIDIOutput), they all seem to wire up ...
6
votes
8answers
3k views

Is the .NET Micro Framework a good way to start with embedded programming?

How does the .NET Micro Framework with a dev board compare to something like an Arduino, or Nintendo DS for starting with embedded programming?
6
votes
3answers
601 views

Need help improving a Ruby DSL for controlling an Arduino controlled drink dispenser (bar monkey)

I'm writing a DSL in Ruby to control an Arduino project I'm working on; Bardino. It's a bar monkey that will be software controlled to serve drinks. The Arduino takes commands via the serial port to ...
5
votes
1answer
77 views

More detail about new AVR instructions LAC, LAS, LAT and XCH

Looking at the AVR instruction set there are four instructions added in 2010 LAC load and clear LAS load and set LAT load and toggle XCH load and exchange Does anyone know what chips have these ...
5
votes
3answers
275 views

Xcode to develop for the Arduino

Please read this well to make sure you understand what I want to do. I DO want Xcode to be able to compile, but only so I can debug in Xcode. I do NOT want to use Xcode to compile or upload the code ...
5
votes
2answers
274 views

How do you debug Arduino code running on Arduino hardware?

Is there any way to set source-level breakpoints, run the code on actual hardware, and be able to inspect variables and continue?
5
votes
4answers
169 views

Is there a way to reference the function you are inside of in C?

I am writing a function that just looks up values inside of a table. Is it possible to call that function inside of itself? I've seen stuff about this and self and don't really understand it.
5
votes
1answer
171 views

How to use external libraries in the Eclipse (Java) and Processing for Arduino

I was able to get functionality out of the Arduino through Eclipse following the tutorial Arduino in Eclipse via Processing. However, I did run into a problem; I was unable to use libraries such as ...
5
votes
2answers
336 views

Running an audio synthesis/analysis language on an embedded device

What is the experience running programs written in an audio synthesis/analysis language such as ChucK, Pure Data, Csound, Supercollider, etc. in an embedded device such as an Arduino Mega, Beagle ...
5
votes
8answers
4k views

Bash, Serial I/O and Arduino

So, I'm in a bit over my head, and I feel like I'm very close to a solution but it's just not working quite yet. Here's my situation: I'm working with an Arduino MicroController, and I'm attempting ...
5
votes
2answers
402 views

Creating libraries for Arduino

I want to write a library for my Arduino(header and class files), but I don't know what tools to use for this job and how to test and debug them. The Arduino IDE just helps in writing plain programs ...
5
votes
2answers
974 views

Problems controlling a Rainbowduino

I've just bought a Rainbowduino to control a load of individual LEDs (NOT an RGB matrix). All the documentation so far is aimed towards controlling RGB arrays which is not what I'm after. If you're ...
5
votes
3answers
2k views

How can I get an assembly language listing of my Arduino Sketches on Windows?

I would like to be able to see an assembly language listing of my Arduino sketches. How can I achieve this? Update: I am running the Arduino Software on a Windows machine.

1 2 3 4 5 10