This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
BME280 > SignalK no data/gauges
#9
(2021-07-15, 10:25 AM)baltika_no_9 Wrote:
(2021-07-15, 01:55 AM)faurmic Wrote: Hi

I have a BME280 sensor connected to a PICAN-M (REV B 06/20) on a Raspberry 4 (2GB) running Openplotter (v2 starting).

I followed this tutorial :
https://cdn.shopify.com/s/files/1/0563/2...1619008196
(Only from page 17 to 22 in order to use the BME280.)

But when starting the instrument panel (page 21) I don't get any gauges. The page is blank.
In SignalK > Databrowser search for pressure or temperature : NOTHING

I was able with a python script to get readings from the sensor. So the sensor works.

Did someone had the same issue? Any idea?

Thanks for your help

Hi

Could you post the output from your python script?

Hi baltika_no_9,

Thanks for your reply.
The ouput is just the readings from the sensors (temperature, pressure, humidity).

Here's the script. If it can help anyone at least to validate his/her sensor is well functionning.


Code:
from __future__ import print_function
import qwiic_bme280
import time
import sys

def runExample():

print("\nSparkFun BME280 Sensor  Example 1\n")
mySensor = qwiic_bme280.QwiicBme280(0x76)

if mySensor.connected == False:
print("The Qwiic BME280 device isn't connected to the system. Please check your connection", \
file=sys.stderr)
return

mySensor.begin()

while True:
print("Humidity:\t%.3f" % mySensor.humidity)

print("Pressure:\t%.3f" % mySensor.pressure)



print("Temperature:\t%.2f" % mySensor.temperature_celsius)

print("")

time.sleep(1)


if __name__ == '__main__':
try:
runExample()
except (KeyboardInterrupt, SystemExit) as exErr:
print("\nEnding Example 1")
sys.exit(0)
Reply


Messages In This Thread
BME280 > SignalK no data/gauges - by faurmic - 2021-07-15, 01:55 AM
RE: BME280 > SignalK no data/gauges - by aywwa - 2021-07-15, 03:11 AM
RE: BME280 > SignalK no data/gauges - by faurmic - 2021-07-15, 04:30 AM
RE: BME280 > SignalK no data/gauges - by Lazzz - 2021-07-15, 03:41 AM
RE: BME280 > SignalK no data/gauges - by faurmic - 2021-07-16, 10:02 PM
RE: BME280 > SignalK no data/gauges - by faurmic - 2021-07-17, 05:32 PM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2021-08-27, 11:13 PM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2021-08-28, 02:49 AM
RE: BME280 > SignalK no data/gauges - by Lazzz - 2021-08-28, 03:34 AM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2021-08-28, 03:54 AM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2021-08-30, 01:03 AM
RE: BME280 > SignalK no data/gauges - by faurmic - 2021-09-06, 04:48 AM
RE: BME280 > SignalK no data/gauges - by angryemu - 2021-09-06, 02:51 PM
RE: BME280 > SignalK no data/gauges - by CaptIgmu - 2022-01-29, 10:52 PM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2022-01-29, 11:48 PM
RE: BME280 > SignalK no data/gauges - by sambos76 - 2022-03-05, 12:49 AM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2022-03-07, 02:08 AM
RE: BME280 > SignalK no data/gauges - by CaptIgmu - 2022-05-17, 01:11 AM
RE: BME280 > SignalK no data/gauges - by sebba - 2021-09-08, 02:32 PM
RE: BME280 > SignalK no data/gauges - by Matilda - 2021-09-18, 07:33 AM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2021-09-18, 09:17 AM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2022-03-03, 12:01 PM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2022-03-03, 10:56 PM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2022-03-04, 11:06 AM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2022-03-07, 10:37 PM
RE: BME280 > SignalK no data/gauges - by Jay_cd33 - 2022-03-10, 10:16 AM
RE: BME280 > SignalK no data/gauges - by Sailoog - 2022-05-17, 03:51 PM
RE: BME280 > SignalK no data/gauges - by amckeown - 2022-05-20, 05:21 PM

Forum Jump:


Users browsing this thread: 2 Guest(s)