Top new questions this week:
|
I am currently running this piece of code:
main.ino
#include "speed_profile.h"
void setup() {
// put your setup code here, to run once:
output_pin_setup();
cli();
timer1_setup();
sei();
...
|
millis() uses timer0 (linked to CPU clock) to count time, but ADC_sleep mode stops the CPU clock, therefore millis() will drift (lag behind) after each ADC conversion performed in ADC_sleep mode.
...
|
On my board, there are 12 (2 groups of 6, each group consistent of 3 rows of 2 pins) weird male header pins. What are these, and how would you use them?
|
i have a problem with the servo library. I need to read a ppm signal and create a pwm signal of each channel. The problem is that ppm has a higher resolution than pwm so i want to use the 16 bit ...
|
Im trying to control a DC motor's speed with my Arduino Mega analogWrite(), but it doesn't seem to function properly. The motor never completely slows down, just slows down a bit (which is still ...
|
I have a couples of Arduino Pro Minis (original from sparkfun) that have those 4 disaligned pin. Unfortunetely, I need to use 2 of them, A4 and A5, because they are the I2C pins and I want to solder ...
|
I'm building a smart shopping cart with Arduino for my final year project.
The cart is supposed to be able to follow its user while shopping. I don't know of many feasible indoor positioning systems ...
|
Greatest hits from previous weeks:
|
If I upload any sketch that sends serial data, I immediately see the TX/RX LEDs flash once the sketch is uploaded. If I then start the serial monitor, the sketch appears to restart.
A bare minimum ...
|
I am a novice user of Arduino. I am not sure whether I can connect both USB and external supply through power adaptor to Arduino simultaneously. Would this burn the controller?
Basically, I want to ...
|
Can you answer these?
|
sorry if this isn't the done thing. I have a little red space invader shaped board that has an arduino chip on the back from a conference. There is an LCD display and I've just got it to function ...
|
I am using the L298N motor driver for a robotics project to control 4 motors. 2 in each input and output terminal. I have this connected to an arduino uno which is powered by about 7-8v from nimh ...
|
I have the following code below for an EthernetClient named client. It is supposed to print a 2 row, 9 column table. The headers are ID and Name and are the first cell in each row. The other columns ...
|