I am building a LoRa client with the following configuration:
Arduino Pro Mini (8MHz, 3.3V)
RFM95 (SPI)
BME280 (I2C)
powered directly from 2 AA Batteries (I removed the Voltage Regulator from Arduino).
With lower RF Power everything seems to be fine, but with higher RF Power i see unstable temperature readings:
With lower RF Power everything seems to be fine, but with higher RF Power i see unstable temperature readings
So if instead of some low voltage AAs, what happens if you supply the circuit with a regulated 3.3v ?
It would be unusual to need to use 20dBm of power with a LoRa device, 10dBm which is often the legal limit for unlicensed use is normally plenty.
For the transmitter to affect the temperature reading you would assume you would somehow need to be reading the temperature when the transmitter is active.
If you read the temperature sensor, store the result, and then transmit the packet, its difficult to see how the transmitter power level could affect the sensor ....................
I tested it also with 3 AA Cells and the built-in voltage regulator of Arduino, but the same problem.
even with +10db power, i can see the temperature going down. It is getting worse the more RF power.
What i dont understand is, there are 8 seconds between readings (see above table), and the during readout of BME280, the RFM95 should be still sleeping...
What you seem to be suggesting is that the code or microcontroller that is reading the sensor can see into the future and somehow knows your later going to turn on the transmitter and thus increase the current consumption from the battery\regulator.
I solved the problem:
now I use the BME280 library from https://github.com/finitespace/BME280 instead of Adafruit_BME280_Library.
I get stable and acurate readings with all RF Power settings... @srnet: thank you for your inspiration