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

0
votes
2answers
59 views

Is it a good idea to use Arduino boards in commercial projects? Why?

I am thinking about making a real project using arduino to earn money. I want to know if there is anyone that has used Arduino boards in a real project? What are the problems that you have faced?
-2
votes
0answers
23 views

arduino code for 16x8 unicolor ledmatrix tetris game that works by giving input in serialmonitor [on hold]

i am stuck with arduino code that works for 16x8 unicolor ledmatrix of tetris game and the controls are given from serial monitor like 'a' for rotate and 'd' for down,'l' for left,'r' for right moves....
1
vote
0answers
46 views

How can I implement a parking counter with multiple entrances and exit?

I'm relatively new to arduino projects and am trying to solve a real world problem on a parking lot space counter. My Idea is to have a sensor placed on the entrances and exit to count the total ...
-1
votes
0answers
24 views

Choosing the right hardware for WIFI project

i have just a little experience with arduinos and no experience with raspberries. so the project is simply trying to control a tv hdmi input with RFID card reader which is connected to a wifi network. ...
1
vote
3answers
41 views

Products and the use of each [closed]

I am an Arduino enthusiast (I don't own one yet) and for this reason I would like to know what is the use of each product. For example I would like to make a mood Led tape for my room but I don't ...
1
vote
1answer
47 views

Is it possible to digitally stop a moving motorbike using an Arduino module?

I am working on a bike protection project that is supposed to be part of my CS syllabus. Although I got most of the things worked out, there is one thing that bugs me; that is to how to stop a moving ...
0
votes
0answers
23 views

Robot car follow line and measuring capacitor

Hi, how are you guys my project is robot car follow the line to a center station to measure capacitor then will put its value in the variable. after that, we have 3 End station one of them will ...
1
vote
2answers
59 views

Arduino whack-a-mole game not working

everyone , I am new to this. Currently I am trying to make a Whack-a-mole game for my school project. There will be a total of 6 moles (correspond to 6 led which will light up randomly). At each ...
0
votes
0answers
21 views

Core libs from Arduino are not found when external libs are moved to project location

I have an Arduino project in Atmel Studio. Some of my external libraries are on the folder: C:\Users\waas\Documents\Arduino\libraries The project compiles. But now, I want to have everything on ...
0
votes
2answers
36 views

Arduino Mega prototype analog timer interrupts: newbie question

I am currently using an Arduino Mega with a fast vibration sensor to trigger the components operation (force sensor, temperature sensor) and also toggle sleep mode. I am very new at this and I have ...
0
votes
2answers
64 views

MPU6050 safe to use with glue?

My current project involves embedding an MPU6050 accelerometer into straps, one of which goes below the knee, the other above the knee. I need to fit the sensor into the strap and currently i have 6-...
0
votes
2answers
37 views

How to calculate the time it takes before the water valve stops dispensing water in an Automatic Water level controller?

I am making a project about an automated water level controller using ultrasonic, potentiometer and Arduino board. I need a mathematical calculation on how it works. So here's a simple scenario: I ...
-1
votes
1answer
54 views

What would be a good way to identify items spending as little as possible?

I'm a software developer for quite some time and now I'm going to start developing for Arduino. My question is related to technology I can use. It's also my first time posting here, so if this site is ...
0
votes
0answers
31 views

I have a connection problem with my GSM module

I'm having hard time getting a connection with the notwork using my SIM900 based GSM module. The clip bellow shows the blinking pattern I've got, which indicates that the GSM module doesn't have a ...
0
votes
1answer
36 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 ...
2
votes
2answers
314 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
51 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
516 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
27 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. ...
-3
votes
2answers
82 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
1answer
154 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
221 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
317 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
371 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
235 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
147 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 ...
53
votes
5answers
19k 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 ...