All Questions
Tagged with arduino-uno software
21 questions
1
vote
1
answer
620
views
Dealing with noise in arduino interrupt
I'm makeing two modules,
module2 gets sensor signal, and send wireless message to module1, with HC-12. Then module1 is going to do some work it is supposed to do. Circuit configuration is in the ...
1
vote
1
answer
1k
views
Random characters transmitted from ESP8266 to Arduino
Below is the code for getting a value from Firebase and sending the received data to arduino for performing necessary action.
The code here here sends a string "o" to arduino once
//uploaded to ...
0
votes
2
answers
1k
views
"expected primary-expression before '.' token" in debug code
I'm making some code for school, and is adding debug code to it. When compiling, I get the error as written in the title. This is the code in question:
#define DEBUG 1
#ifdef DEBUG
#define Serial....
0
votes
0
answers
79
views
Effective Controlling of Continous Servo Motor
I have difficulty in controlling a MG995 continuous motor. For I know I can control the speed of the motor as writing servo1.write(p) , where the value of p changes the speed of the motor. When the ...
1
vote
1
answer
1k
views
Is it possible to transmit radio signal with cheap 433Mhz transmitter as strings and receive it with an RTL-SDR
I have these Arduino transmitters and receivers.
They are very common. I am just trying to transmit a "Hello" Message using this code.
#include <RH_ASK.h>
#ifdef RH_HAVE_HARDWARE_SPI
#include &...
1
vote
1
answer
2k
views
Tinkercad but offline?
I have some issues with network and would like to work with arduino everywhere. I use Tinkercad which is great, but I would like to installit to my laptop and work without using WiFi. I couldn't find ...
-2
votes
1
answer
973
views
GPRS Based OTA to the NODEMCU
I need the OTA firmware update. I have the only option in my hand GSM(GPRS SIM800), with the help of this is it possible OTA, plz help me for this how I Do OTA via GPRS, FYI, I completed OTA Via WIFI.
1
vote
0
answers
582
views
Configuring Timers to Add One More 50kHz Square Wave
I am generating two 50kHz square waves, but I would like to generate three square waves. I have problems with generating the third square wave.
Basically, I need to configure the timer bits so that I ...
1
vote
1
answer
1k
views
Arduino Square Wave Phase Shift by 270 degrees
I am using this code to generate a square wave with Arduino and shift it by 90 and 180 degrees. However, this code is not able to shift it to 270 degrees. Could you please suggest how may I modify the ...
0
votes
1
answer
136
views
Coding Arduino's samples/period and cycles/sample configurations for input signal [closed]
Am I able to code the Arduino so that I can change cycles/sample of an input waveform and a number of samples/period configurations? I would like to modify these parameters in order to be able to ...
-1
votes
1
answer
345
views
Setting a default arduino program in NodeMCU
Just after saying farewell to my old broken D1 mini I could not resist myself and bought a brand new nodemcu in the morning. I tried my previous arduino sketches to board and everything works fine, ...
2
votes
1
answer
382
views
Can I run arduino on Windows Embedded Compact 2013?
I'm actually working on a robotic project for which I'm planning to use arduino to drive the wheels.For this, I want to send signals from my Onboard embedded computer (which has Windows Embedded ...
6
votes
3
answers
7k
views
Arduino UNO hangs without visible reason
I'm having trouble with Arduino UNO. I bought a cheap clone (what obviously may be the reason) along with display+keypad shield (site in Polish). For my project I wrote a menu library, which (along ...
2
votes
1
answer
980
views
Arduino Robot won't move
I am building a robot for a school project. I use an Arduino Uno, 2 dc motor's and an Ultra Sonic range measurement module. I want the robot to be autonomous, he has to be able to move around on his ...
1
vote
3
answers
12k
views
Problem with Software Serial: no response
I am using an Arduino Uno board with IDE 1.6.7.
I have tried to implement a tweaked version of the basic example (SoftwareSerial example) from the Software Serial library. The code is attached.
It ...