Top new questions this week:
|
I am developing an application where an Arduino Pro Mini communicates with a 12-bit ADC over SPI. The communication is one-way, meaning that the ADC will only send data back to the Arduino, not ...
|
I have been working merrily along with CH340 to make Com10 work. It has been working flawlessly but now I am getting various messages like it can't open the port then the programmer is not ...
|
So I'm trying to connect my arduino micro to the MPU 6050. I was using this tutorial
https://diyhacking.com/arduino-mpu-6050-imu-sensor-tutorial/
This tutorial worked with my arduino Uno but not ...
|
this is my first question in this forum.
I need to receive a string from the Arduino serial monitor and display it when the communication is over. I have a similar problem like the one discussed in ...
|
Story:
I was playing around with my Uno along with a servo.
To my stupidity (or more appropriately: ignorance), I set the voltage to my servo with analogWrite(), rather than servo.write(). It worked ...
|
I am trying to find a small voice recorder that I can use with my Arduino Micro, and I found this. It is exactly what I am looking for, but it is now a retired product. I googled ISD1932, but many ...
|
I was using a temperature sensor DS18B20 with Arduino.
I've read that you should connect the digital input line and the 5V line with a 4.7kOhm resistor - like in the picture.
Can someone explain ...
|
Greatest hits from previous weeks:
|
Recently I have linked up a typical 16*2 LCD (Liquid Crystal Display) display to my Arduino Uno and have linked all the pins up.
Here is my connection:(LCD pin first)
1=GND, 2=+5v, 4=11, 6=12, 11=5, ...
|
I am sending a list of servo positions via the serial connection to the arduino in the following format
1:90&2:80&3:180
Which would be parsed as:
servoId : Position & servoId : ...
|
Can you answer these?
|
Update: Examples from library are working if DHCP is enabled!
Using this library I try to connect with static IP but it always say DNS failed. Ethernet module is blinking that means is good ...
|
I used the code below to control an ESP8266. I am getting some unknown symbols in the responses.
#include <SoftwareSerial.h>
const byte rxPin=2;
const byte txPin=3;
SoftwareSerial ESP8266( ...
|
I'm developing a keyboard emulator using Digispark Pro (based on Arduino) which uses USB port as the keyboard interface. I haven't programmed it yet because I doubt how should I recognize the chip to ...
|