New answers tagged arduino-nano
0
votes
Accepted
problem with scripts in Arduino Lab for MicroPython
It turns out that there was an incompatibility between MacOS and version 1.26.0 of the Arduino Nano ESP32 firmware. I reverted to v1.25.0, and now everything works.
0
votes
Can I use regular pins (Example: D2, A3, etc...) as serial (RX, TX)?
Yes, it is possible. You need to use the SoftwareSerial.h library, which comes with the AVR libraries package preinstalled in Arduino IDE. You just need to find some library which supports declaring ...
1
vote
Connecting the device to Arduino via the UART protocol
What is my mistake?
Most probably you switch off the driver too early.
Serial transmission takes some time, in your case approximately 1 ms (8 bytes at 115200 baud). Since the write() method buffers ...
0
votes
problem with scripts in Arduino Lab for MicroPython
Upload the file manually with mpremote or ampy
Install mpremote:
pip install mpremote
Upload your script:
mpremote connect /dev/ttyUSB0 fs put yourscript.py
mpremote connect /dev/ttyUSB0 run ...
0
votes
Watchdog on Arduino Nano does not recover
Perhaps a little late, but it seems that this issue still plagues us.
One of my devices simply has a big external SPST toggle switch. It's connected to a GPIO pin and polled in loop(). The watchdog ...
2
votes
I need more free memory on my Arduino. What can I do if I don't want to use float?
As suggested by @halfbit, you can get rid of floating point by choosing
units that let you conveniently work with integers, like millivolts
instead of volts. I would go a bit further and suggest you ...
0
votes
I need more free memory on my Arduino. What can I do if I don't want to use float?
There are many tricks to get around the floating library (not to use float):
The simplest is: don't use volts as the unit, but millivolts.
But wait, before I explain how to do that, I want to explain ...
Top 50 recent answers are included
Related Tags
arduino-nano × 1347arduino-uno × 177
serial × 106
power × 78
arduino-ide × 74
sensors × 69
programming × 63
i2c × 63
led × 51
esp8266 × 45
arduino-mega × 42
bluetooth × 42
usb × 41
nrf24l01+ × 39
spi × 36
atmega328 × 34
c++ × 33
motor × 31
servo × 31
interrupt × 29
softwareserial × 29
hc-05 × 27
pwm × 26
lcd × 25
battery × 25