Top new questions this week:
|
Like I said in the subject, I would like to know the equivalent for the instruction:
PORTB |= 0x01;
PORTB &= ~0x01;
More precisely I was using it to trigger a fast pulse conversion on my ...
|
I want to use 2 "displays" with 4 digits. The displays are common cathodes with cathode transistors connected to the digits, as the figure:
The segments of both displays are connected together on the ...
|
I'm getting the following error with a genuine Arduino Uno on Mac OSX10.11 El Capitan when uploading to it (the green light is on, the orange light flashes intermittently while attempting to upload). ...
|
I have figured out how to make a piezo buzzer play two tones at once with analogWrite() and tone() but how would I make an actual song by playing both bass and treble, such as this one. Here is the ...
|
I want to find the length of upper one signal (purple one). So for that, i used pulseIn() function for that. But i just get 0 as a result in serial monitor.
int pulsepin = 8;
int value = 0;
void ...
|
Recently I have been experimenting with battery powered sensor (mySensors).
I created node with 3.3V Arduino Pro Mini (ATMega328P @ 8Mhz with nordic radio chip and BME280 sensor) and successfully ...
|
I am completely new at Arduino. I have a joystick:
It is however quite different from all the other joystick-tutorials, as their joysticks have 5 pins, not just 4. So I am quite at loss here. How ...
|
Greatest hits from previous weeks:
|
Hi i'm trying to parse JSON resposne from webserver in my arduino in order to turn on and off a LED light. I'm using the wifi client repeating example to make a get request to my server:
...
|
I want to have a LED turn on when I push a button and go off when I push the button a second time.
This code doesn't work:
const int buttonPin = 4;
const int motorPin = 10;
const int ledPin = ...
|
Can you answer these?
|
So I have a Bunch of commonly used char arrays to build commands in my library.
So to preserve memory, I have them put into flash, via PROGMEM ext,
typedef const char PROGMEM ProgChar;
ProgChar AT[] ...
|
I want to create a system that uses a chest strap from available Bluetooth-based heart rate monitoring systems. The straps seem very convenient compared to available Arduino pulse detection systems ...
|