Skip to main content

All Questions

Filter by
Sorted by
Tagged with
1 vote
1 answer
416 views

Slave to Send Data after Receiving Command using I2C

I want to have my Slave Arduino to send signal to Master after the command was made. But the Slave Arduino does not proceeds to sending the signal after doing the command. What is wrong with my code? ...
Julius's user avatar
  • 91
-1 votes
1 answer
536 views

Does Atmega-2560 support image processing capability? [closed]

As the title says can I perform image processing on Atmega-2560? Basically I have to capture real time images and detect green or red color. I have not thought of the frame rate but it is not that ...
user6889367's user avatar
1 vote
1 answer
186 views

Get pin input status without using the arduino library

I am not allowed to use the Arduino Library (or any Library) for this program. How would I check the input of a pin? I found two different functions: In Arduino.h: #define bitRead(value, bit) (((...
kingcobra1986's user avatar
0 votes
1 answer
199 views

Trying to read analog signal with digital pin using outside ADC

Is there a way to route an analog signal from a simple temperature sensor through an ADC, MCP3008, into a digital pin. I have used all the analog pins on my Arduino Mega 2560 and am trying to utilize ...
Bennis's user avatar
  • 11
1 vote
2 answers
274 views

digitalWrite queued signals?

I have this simple code who send a signal to a android phone when I press a button: const int botonPinD = 8; const int relayPin = 12; int retardo = 100; int finBoton=1000; void setup() { pinMode(...
Kristian Damian's user avatar
6 votes
1 answer
2k views

PWM signaling with Arduinos: What is the reason for the ground connection?

This may sound like a very dumb question and I apologise in advance. I've gone through reading about PWM and working on some example sketches to control PC fan speeds using PWM and Arduino. In all ...
Phil's user avatar
  • 435