Questions tagged [arduino-pro-mini]
An Arduino Pro Mini is a small microcontroller derived from the Arduino Uno using the ATmega328. It is unique for its tiny size and the required external FTDI adapter.
275 questions
-1
votes
1
answer
60
views
Arduino connect programatically two wires of external 3.3V device
What is a missing puzzle in here, relay, transistor?
I would like to pull pin of external device to the ground programatically using arduino's digital pin.
0
votes
1
answer
74
views
Why are times different on different Arduino Pro Minis? [closed]
I am working on a project using a 5v Arduino Pro Mini. To save power I have it power down and wake up every about 15 minutes to check on the battery strength and then power down again. This cycle runs ...
-1
votes
1
answer
129
views
Help reducing dynamic memory usage with LoRa library
I have combined code that reads heart rate and SPO2 then sends the data using LoRaWAN. Using these 2 libraries that work well by themselves LoraWAN lib | MAX30102 lib. My board is an Arduino Pro or ...
-1
votes
2
answers
291
views
How can I get servos to not brownout my Arduinos and power supply?
I have a problem with a project where one servo is resetting (browning out) two Arduino Pro Minis running 3.3v/8mHz. The two Arduinos are connected by SoftwareSerial on pins 9 and 10 and the slave ...
0
votes
1
answer
152
views
Arduino pulls i2c bus down
I am building an airplane. As a controller I am using a Raspberry pi 4. There are 3 sensors (MPU6050, QMC5883L, BME280) and arduino pro mini connected to the raspberry via i2c. When sending requests ...
3
votes
2
answers
386
views
How to turn LEDs based on voltage readings?
I am trying to turn LEDs in an LED bridge based on the voltage reading from a power source. when the Voltage is zero nothing is ON and then the LEDs gradually turn ON as increase the voltage connected ...
5
votes
2
answers
959
views
Arduino Freezes (probably because of I2C) - Need help to write robust script
Arduino Pro mini 3.3V stucks few hours after startup. After repowered, it begins to stuck within a few seconds. If I wait long enough before turning it on it stucks little later for example now it ...
1
vote
0
answers
472
views
How can I program an Arduino Pro Mini with an ESP8266-01 connected to its TX and RX?
I am working on a project that uses an Arduino Pro Mini to gather information from various sensor. Once the readings are taken I turn on an ESP-01 from a separate dedicated 3.3v power supply. The ESP-...
2
votes
1
answer
146
views
Motion-activated lights
I am attempting to follow this tutorial to light up a dark staircase with motion-activated LED strips. If my understanding of the tutorial is correct, essentially the Arduino's job is to power or ...
-1
votes
1
answer
256
views
Arduino 3.3v pro mini, most efficient use of AA batteries for power
I want to use a 3.3V pro mini that uses a BME 280 to take temp/pressure/humidity, and nRF24L01 module to transmit the data, at ?10 minute intervals. I want to use 1, 2,3 or 4 AA batteries to power it....
-2
votes
2
answers
570
views
Arduino Pro Mini doesn't automatically reset
I have an issue with my Arduino pro mini.
Yesterday, I uploaded a sketch a few times on the pro mini, with an FTDI adapter, and everything worked fine. Today I'm trying to re-upload a sketch, but now, ...
1
vote
0
answers
129
views
Low power RF decoder possible?
I'm building a panic button project for my grandma which uses a 433MHz RF remote keyfob and a 3.3v Pro Mini connected to an RF receiver, a buzzer and an led. The purpose is that whenever she needs ...
2
votes
4
answers
303
views
Arduino Pro Mini doesn't align nor connect in fritzing
When using fritzing (0.9.6) I notice that the Arduino Pro Mini 3.3 V component doesn't align nor connect to breadboard pins like other components.
Is this a bug or a feature?
I've tried to wiggle the ...
-1
votes
1
answer
58
views
'for loop' seems to change the execution of pow()
The first time, pow() works. But inside of a 'for loop', or again afterwards, it doesn't behave !? (I'm using a Chinese Pro Mini with Arduino 1.8.16)
EDIT
To clarify what I am asking, my question is:...
0
votes
1
answer
48
views
Trying to program a Led Counter Want a Led to flash every 5 minutes however it flashes twice every second (Noob) [closed]
Heres the code i've Wrote i feel like the issue lies in how ive used the if statement
int ledPinS = 13; //Classifies pin 13 as Connected to an LED
//Flashes every second
int ledPinM = ...