Refers to the sum total of software, circuit diagrams, documentation, libraries, and hardware that make up an Arduino based application.

learn more… | top users | synonyms

-3
votes
0answers
50 views

How to choose resistors in my arduino project?

Ok so I am trying to make my first arduino project and i got stuck in an early phase in my opinion.( i am a complete noob ) I am trying to make a remote motion alarm with 2 components.( well known ...
0
votes
1answer
34 views

Arduino project - will this fit together?

I'm about to order parts for my project and I'd like to avoid some rookie mistake I might've missed. I'll be using Arduino chip and a wifi module to host a very simple webpage and a battery to make ...
1
vote
1answer
32 views

Moving motion sensor?

Long story short, I'm trying to build some form of device that you can wear and it will detect when something moves behind you. I wanted to use PIR sensors for the motion detection, but I have no idea ...
0
votes
2answers
45 views

Machine installed with arduino suddenly turns on when usb is unplugged

Why is my machine suddenly turns ON when I unplugged the USB on my computer? Does it have connection on the auto reset feature of my arduino board? String input = ""; void setup(){ Serial.begin(...
0
votes
2answers
225 views

Are there flexible pressure sensors for Arduino that can measure forces of at least 600 lbs?

I'm in need of flexible pressure sensors that can read how much force is exerted on someone's foot while running (these sensors would be placed inside the shoe). Since pressure can often be three ...
0
votes
1answer
22 views

Detecting Motion behind a robot

I am building a motion following robot. It has two PIR sensors on the left and right. It has an ultrasonic sensor in the front. When either of the PIR sensors detect motion then it turns to that side. ...
0
votes
0answers
33 views

Beginning electronics programming [closed]

I have substantial experience programming computers, but never programmed micro controllers or built digital equipment. The closest I ever came was controlling modems by reading & writing "...
-3
votes
2answers
77 views

Suggest me some good seller for Arduino UNO [closed]

I want to start a new project with arduino uno and want to make some amazing mini projects, but i am confused that from where should i buy. So please suggest me some affordable robotic stores.
0
votes
0answers
117 views

Ethernet module-enc28j60 interfacing with Arduino Uno problem

I am making a project in which I need a TCP protocol to send the stream of bytes in a local network, I do not need of web accessing service by this Ethernet module. I have downloaded a "...
0
votes
1answer
113 views

Arduino “piston” device

Is there any compact piston-like devices on the market that can apply pressure safely various parts of the head? I can further expound if needed. The ideal size would be something within the 1-2 ...
1
vote
1answer
131 views

USB 1.1 Low Speed project for Arduino UNO/ATmega328P to learn USB protocol

Arduino UNO is 5V, 16 MHz. USB 1.1 Low Speed spec operate: at 5V level - so we avoid to maintain voltage level at 1.5 Mb/s - so we have 16/1.5 ~= 10 instructions per elementary protocol signal Is ...
1
vote
4answers
245 views

I want to build a radar alert system with Arduino

I'm new to all this. I bought an Arduino Uno recently and an Ultrasonic distance sensor. My mom's cats keep walking down into the basement and doing their... business. Anyhow, I want to create a radar ...
1
vote
0answers
280 views

7 Key Educational Piano with Capacitive Sensor

I am working on a project for grade 10 computer science. I am supposed to make a piano that has 7 keys using a capacitive sensor, and the piano is supposed to teach you songs like Twinkle Twinkle ...
-2
votes
4answers
222 views

What project design tools are available?

What do you guys use for project designing? I just found out about AutoDesk's 123D Circuits, which is nice but I wonder if there is something with more components, tools, etc? For example, I can add ...
1
vote
2answers
135 views

How has Arduino been used in the classroom?

I remember seeing Primo, this robot that is based on Arduino and serves to teach kids to program. My interest in the platform comes from there, but it is always nice to learn about other cool ...
41
votes
5answers
14k views

How to organize my Arduino projects' structure for easy source control?

It's been a long time I've been looking for a good answer to this question. Typically, any Arduino project but the simplest one will include: The main source code file MyProject.ino Libraries ...