3
votes
4answers
81 views
Using classes with the Arduino
I'm trying to use class objects with the Arduino but keep running into problems. All I want to do is declare a class and create an object of that class. Can anyone give me an exam …
7
votes
4answers
93 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 …
6
votes
5answers
170 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 co …
1
vote
2answers
73 views
How to Get Ambient Temp from Arduino Lilypad Temperature Sensor
I am connecting a LilyPad Temperature sensor to a LilyPad Arduino 328 Main Board with the goal of reading fairly accurate ambient temperature readings. The sensor is receiving pow …
3
votes
6answers
128 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?
0
votes
5answers
94 views
Writing to a COM port with .Net
How would I go about writing to a COM port, trying to convert the following example to .Net (C#), specifically the PHP part? If possible is there an easier way to write out to a U …
1
vote
2answers
69 views
Arduino and External Peripherals
I am a CS guy getting started with Arduino. This is probably a very basic electronics question but from going over the arduino tutorials everything is connected to the arduino wit …
0
votes
1answer
77 views
Pyserial problem with arduino - Works with python shell but not in program
Alright so I am positive my Arduino circuit is correct and the code for it. I know this because when I use the serial monitor built into Arduino IDE and send 'H' an LED lights up, …
2
votes
1answer
55 views
Writing Byte Arrays to serial with Ruby
I'm not clear on how to write simple byte code arrays with ruby, more-so I'm absolutely stumped on how to use the Ruby SerialPort library, well to be honest I have it working prett …
2
votes
2answers
94 views
Line Tracking Robot [closed]
Me and my friends are building a line tracking robot based on my previous question about how to track white line on a black surface. We settled on using photo resistors and a ardui …
1
vote
1answer
81 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 …
2
votes
2answers
283 views
How to turn on a single Arduino port using C#?
I have an Arduino Duemilanove USB. I have just a single LED wired up to a single port on it. I want to use C# to turn on this LED. Does anyone have a simple example of how to do th …
1
vote
1answer
60 views
RAD and BlinkM, how to control a BlinkM, with an Arduino through RAD
So I'm running RAD on my MacBook, I've been able to send serial commands with screen to the device and just light LEDs and simple stuff with the pins connected to the Arduino, howe …
2
votes
2answers
199 views
What’s the difference/relationship between avr and Arduino?
I've been interested in hardware programming recently but not started yet.
I did some searching working,and have a vague idea:
Arduino is a combination of both chip
and brea …
4
votes
5answers
678 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 …
