Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. My Project
  3. Particle Powered Air Quality Sensor Logging to Google Docs

Particle Powered Air Quality Sensor Logging to Google Docs

Scheduled Pinned Locked Moved My Project
si7021air qualitypm2.5particlehpma115s0ccs811
69 Posts 6 Posters 6.4k Views 8 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J jaredwolff

    @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

    The MHZ19B is working out of the box without tuning. NDIR sensors seem to be easier to handle but are more power hungry.

    Nice! Glad to see something working for you. The MHZ19B seems like a good option when you have the space. I wonder how it is long term.

    How many hours have you continuously run your CCS811? I'm seeing the fresh one I had normalize to zero over almost 24h of continuous running. (See the blue trace below for TVOC & C02)

    0_1556375221442_Screen Shot 2019-04-27 at 10.26.57 AM.png

    I'm also not surprised by the readings you're getting on temp. Unless you get a sensors that is specifically more precise you could get some significant deviations. I would expect ±1 °C from most sensors though..

    FotoFieberF Offline
    FotoFieberF Offline
    FotoFieber
    Hardware Contributor
    wrote on last edited by
    #21

    @jaredwolff said in Particle Powered Air Quality Sensor Logging to Google Docs:

    Nice! Glad to see something working for you. The MHZ19B seems like a good option when you have the space.

    The MH-Z19B does use less space than the MH-Z14B. I thinkt the footprint is similar to my CCS811 PCB from aliexpress. But it is taller. I think the main argument against the MH-Z19B could be power consumption.

    I wonder how it is long term.

    I have some MH-Z14B working fine for more than two years. Accoriding to the datasheet, the MH-Z19B should last more than 15 years.

    How many hours have you continuously run your CCS811?

    More than two days. It didn't get better.

    I'm seeing the fresh one I had normalize to zero over almost 24h of continuous running. (See the blue trace below for TVOC & C02)

    I can't see the time on your graph. I only see 2019-0... would it be possible to show the time?

    The manufacturer has improved accuracy with the last firmware of the CCS811. Which version of firmware do you have on your CCS811?

    1 Reply Last reply
    0
    • J Offline
      J Offline
      jaredwolff
      wrote on last edited by jaredwolff
      #22

      @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

      The manufacturer has improved accuracy with the last firmware of the CCS811. Which version of firmware do you have on your CCS811?

      Good question. According to my code: 1.1.0

      @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

      I can't see the time on your graph. I only see 2019-0... would it be possible to show the time?

      Hmm. Yea they're full timestamps. Pretty useless huh? What are you using to create your graphs? That way we're looking at the same thing.

      On another note: I did get SPG30 and BME680 up and running. I ran the SPG30 while I was tinkering with the BME680. It's about 12 hours of data. (Sorry the x axis is not quite working out.)

      0_1556496951580_Screen Shot 2019-04-28 at 8.06.17 PM.png

      My initial impressions from the integration:

      SPG30 is about as easy as the CCS811. As you can see it has its own demons. It does require another power supply (1.8V typical for this part) And it can get power hungry if you run it tons (48mA when the heater is on).

      The BME680 is not so easy to integrate into the Particle platform. Mostly due to the added archive file (i.e. static library, i.e..a file). After tinkering with what they had I have it taking in and processing data. The only thing I really care about is the IAQ calculation which is not open source. It does some other calculations on the temperature and humidity if you choose to integrated it with a space heater. (or HVAC unit for that matter)

      FotoFieberF 1 Reply Last reply
      0
      • J jaredwolff

        @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

        The manufacturer has improved accuracy with the last firmware of the CCS811. Which version of firmware do you have on your CCS811?

        Good question. According to my code: 1.1.0

        @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

        I can't see the time on your graph. I only see 2019-0... would it be possible to show the time?

        Hmm. Yea they're full timestamps. Pretty useless huh? What are you using to create your graphs? That way we're looking at the same thing.

        On another note: I did get SPG30 and BME680 up and running. I ran the SPG30 while I was tinkering with the BME680. It's about 12 hours of data. (Sorry the x axis is not quite working out.)

        0_1556496951580_Screen Shot 2019-04-28 at 8.06.17 PM.png

        My initial impressions from the integration:

        SPG30 is about as easy as the CCS811. As you can see it has its own demons. It does require another power supply (1.8V typical for this part) And it can get power hungry if you run it tons (48mA when the heater is on).

        The BME680 is not so easy to integrate into the Particle platform. Mostly due to the added archive file (i.e. static library, i.e..a file). After tinkering with what they had I have it taking in and processing data. The only thing I really care about is the IAQ calculation which is not open source. It does some other calculations on the temperature and humidity if you choose to integrated it with a space heater. (or HVAC unit for that matter)

        FotoFieberF Offline
        FotoFieberF Offline
        FotoFieber
        Hardware Contributor
        wrote on last edited by
        #23

        @jaredwolff said in Particle Powered Air Quality Sensor Logging to Google Docs:

        Hmm. Yea they're full timestamps. Pretty useless huh? What are you using to create your graphs? That way we're looking at the same thing.

        I am using grafana with influxdb (both in docker).

        @jaredwolff

        SPG30 is about as easy as the CCS811. As you can see it has its own demons. It does require another power supply (1.8V typical for this part) And it can get power hungry if you run it tons (48mA when the heater is on).

        Awaiting mine impatiently. :) Power consumption is not a real problem in my usage scenario.

        @jaredwolff

        The BME680 is not so easy to integrate into the Particle platform. Mostly due to the added archive file (i.e. static library, i.e..a file).

        Do you build with platform.io? I only found instructions for the arduino ide...

        Temp and hum are measured on the heated sensor and must be calibrated to be useful according to some discussions I read.

        1 Reply Last reply
        0
        • J Offline
          J Offline
          jaredwolff
          wrote on last edited by jaredwolff
          #24

          @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

          I am using grafana with influxdb (both in docker).

          I like it. It may make sense to have my own infrastructure in the future. But then again, I don't feel like dealing with it all. :laughing:

          @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

          Do you build with platform.io? I only found instructions for the arduino ide...

          I'm building using the Particle SDK on my machine. They can build Arduino libraries but can't quite include external/static libraries yet (As far as I can tell) out of the box. The Particle platform, in general, has been for convenience and getting to proof of concept (really) fast. Plus they're an awesome company.

          As for the data, I'm just pushing the data from the Particle platform into Google docs (as my original post described). It's great for short tests but longer data streams you definitely need a time-based database and some nice front end graphing capabilities. :smile:

          Another update on the TVOC eval. Looks like the BME680 outputs on the same scale as the SPG30 and CCS811. (i.e. 500ppb == a reading of 500 IAQ on the BME680)

          0_1556567219754_chart.png

          (The timestamps are there if you click on the image itself. )

          @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

          Temp and hum are measured on the heated sensor and must be calibrated to be useful according to some discussions I read.

          I was thinking about this more considering the discrepancy I'm seeing in temperatures and humidity. If you're serious about the results and the accuracy of the temp & humidity it may require a 3rd temperature sensor with no heater inside.

          Supposedly the BME680 has a calibrated output but it hasn't fired up. I'll have to figure that out..

          1 Reply Last reply
          0
          • FotoFieberF Offline
            FotoFieberF Offline
            FotoFieber
            Hardware Contributor
            wrote on last edited by
            #25

            Firmware upgrade time!

            My CCS811 has bootloader version: 1000

            and had application version: 1100

            I upgraded to the newest firmware (2.0.1). Now waiting for another two days.... :) Hope then I get reasonable results like you have....

            J 1 Reply Last reply
            0
            • FotoFieberF FotoFieber

              Firmware upgrade time!

              My CCS811 has bootloader version: 1000

              and had application version: 1100

              I upgraded to the newest firmware (2.0.1). Now waiting for another two days.... :) Hope then I get reasonable results like you have....

              J Offline
              J Offline
              jaredwolff
              wrote on last edited by
              #26

              @fotofieber yeehaw. I hope that fixes the craziness you were seeing. I'm curious if that will fix the early unreliable data I've been seeing too..

              1 Reply Last reply
              0
              • J Offline
                J Offline
                jaredwolff
                wrote on last edited by
                #27

                @FotoFieber if you check out my tvoc_test branch, I implemented the CCS811 update routine. I'm interested to see how it compares to the SPG30 and BME680..

                FotoFieberF 1 Reply Last reply
                0
                • J jaredwolff

                  @FotoFieber if you check out my tvoc_test branch, I implemented the CCS811 update routine. I'm interested to see how it compares to the SPG30 and BME680..

                  FotoFieberF Offline
                  FotoFieberF Offline
                  FotoFieber
                  Hardware Contributor
                  wrote on last edited by
                  #28

                  @jaredwolff
                  The update has brought a big improvement.
                  I think one could derive airquality from the measurements, but the CO2 ppm value is still way off.
                  0_1556686461628_sensor-comparison.png

                  J 1 Reply Last reply
                  0
                  • FotoFieberF FotoFieber

                    @jaredwolff
                    The update has brought a big improvement.
                    I think one could derive airquality from the measurements, but the CO2 ppm value is still way off.
                    0_1556686461628_sensor-comparison.png

                    J Offline
                    J Offline
                    jaredwolff
                    wrote on last edited by jaredwolff
                    #29

                    @fotofieber that's great news! Pretty much what I've seen. I've stopped eC02 all together because it correlates 1:1 with TVOC on that part. Plus I don't know how actionable the C02 reading is. Does it indicate stale air? C02 is a byproduct of the VOCs? Maybe it's more useful for more industrial environments..

                    Are you logging anything other than C02?

                    FotoFieberF 1 Reply Last reply
                    0
                    • J jaredwolff

                      @fotofieber that's great news! Pretty much what I've seen. I've stopped eC02 all together because it correlates 1:1 with TVOC on that part. Plus I don't know how actionable the C02 reading is. Does it indicate stale air? C02 is a byproduct of the VOCs? Maybe it's more useful for more industrial environments..

                      Are you logging anything other than C02?

                      FotoFieberF Offline
                      FotoFieberF Offline
                      FotoFieber
                      Hardware Contributor
                      wrote on last edited by FotoFieber
                      #30

                      @jaredwolff
                      CO2 is an indicator of air quality. I use it since years mainly with consumer devices from Netatmo. In my graphs you can see, when people are in the rooms consume the air, when they leave, when I open the windows...

                      The CO2 measurement with NDIR-sensors seems much more reliable than what I see here from CCS811. They usually show quite good results just plugged in without calibration. They are easier to handle, because you don''t need to bother with handling basline (save and restore). And they don't need a temp/hum measurement to correct their values.

                      Yesterday arrived another NDIR-Sensor (Senseair S8) and a SGP30. I am curious, how they perform. Hope I have the first results in two days.

                      Are you logging anything other than C02?

                      In general I have much more values I log (radioactivity, luminosity, window open/close, motion...)

                      In this setup I log what I can get from the sensors.

                      FotoFieberF 2 Replies Last reply
                      0
                      • FotoFieberF FotoFieber

                        @jaredwolff
                        CO2 is an indicator of air quality. I use it since years mainly with consumer devices from Netatmo. In my graphs you can see, when people are in the rooms consume the air, when they leave, when I open the windows...

                        The CO2 measurement with NDIR-sensors seems much more reliable than what I see here from CCS811. They usually show quite good results just plugged in without calibration. They are easier to handle, because you don''t need to bother with handling basline (save and restore). And they don't need a temp/hum measurement to correct their values.

                        Yesterday arrived another NDIR-Sensor (Senseair S8) and a SGP30. I am curious, how they perform. Hope I have the first results in two days.

                        Are you logging anything other than C02?

                        In general I have much more values I log (radioactivity, luminosity, window open/close, motion...)

                        In this setup I log what I can get from the sensors.

                        FotoFieberF Offline
                        FotoFieberF Offline
                        FotoFieber
                        Hardware Contributor
                        wrote on last edited by
                        #31

                        This night was a complete fail for the CCS811 I have here:

                        Fresh air at 20:00
                        Sleep till 6:15 with closed windows
                        -> NDIR sensors show, how air quality gets worse
                        -> CCS811 shows, how the air quality gets better during sleep with closed window!
                        Fresh air at 06:15

                        WTF.... :)
                        0_1556788324572_sensor-comparison.png

                        1 Reply Last reply
                        0
                        • FotoFieberF FotoFieber

                          @jaredwolff
                          CO2 is an indicator of air quality. I use it since years mainly with consumer devices from Netatmo. In my graphs you can see, when people are in the rooms consume the air, when they leave, when I open the windows...

                          The CO2 measurement with NDIR-sensors seems much more reliable than what I see here from CCS811. They usually show quite good results just plugged in without calibration. They are easier to handle, because you don''t need to bother with handling basline (save and restore). And they don't need a temp/hum measurement to correct their values.

                          Yesterday arrived another NDIR-Sensor (Senseair S8) and a SGP30. I am curious, how they perform. Hope I have the first results in two days.

                          Are you logging anything other than C02?

                          In general I have much more values I log (radioactivity, luminosity, window open/close, motion...)

                          In this setup I log what I can get from the sensors.

                          FotoFieberF Offline
                          FotoFieberF Offline
                          FotoFieber
                          Hardware Contributor
                          wrote on last edited by
                          #32

                          S8 readings seem quite goot. (NDIR)
                          SGP30 :( Will try with the adafruit library instead of the sparktech.
                          0_1556954956512_sensor-comparison.png

                          J 1 Reply Last reply
                          0
                          • FotoFieberF FotoFieber

                            S8 readings seem quite goot. (NDIR)
                            SGP30 :( Will try with the adafruit library instead of the sparktech.
                            0_1556954956512_sensor-comparison.png

                            J Offline
                            J Offline
                            jaredwolff
                            wrote on last edited by
                            #33

                            @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

                            SGP30 Will try with the adafruit library instead of the sparktech.

                            I have that one in the same branch I mentioned before if you need a working reference.

                            I followed your lead on the Grafana + InfluxDB stuff. It was dead simple to setup.

                            0_1557075343811_Screen Shot 2019-05-05 at 12.55.39 PM.png

                            I just want to get HTTPS/SSL working. Pretty nifty little piece of software. :)

                            FotoFieberF 1 Reply Last reply
                            0
                            • J jaredwolff

                              @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

                              SGP30 Will try with the adafruit library instead of the sparktech.

                              I have that one in the same branch I mentioned before if you need a working reference.

                              I followed your lead on the Grafana + InfluxDB stuff. It was dead simple to setup.

                              0_1557075343811_Screen Shot 2019-05-05 at 12.55.39 PM.png

                              I just want to get HTTPS/SSL working. Pretty nifty little piece of software. :)

                              FotoFieberF Offline
                              FotoFieberF Offline
                              FotoFieber
                              Hardware Contributor
                              wrote on last edited by
                              #34

                              @jaredwolff said in Particle Powered Air Quality Sensor Logging to Google Docs:

                              I followed your lead on the Grafana + InfluxDB stuff. It was dead simple to setup.

                              Yes, really simple. I use docker for grafana and influxdb.

                              Your SGP30 CO2 ppm graph looks like mine... :(

                              I just want to get HTTPS/SSL working.

                              I use an nginx-setup here for https.

                              Pretty nifty little piece of software.

                              Yepp! They are real software gems.

                              J 2 Replies Last reply
                              0
                              • FotoFieberF FotoFieber

                                @jaredwolff said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                I followed your lead on the Grafana + InfluxDB stuff. It was dead simple to setup.

                                Yes, really simple. I use docker for grafana and influxdb.

                                Your SGP30 CO2 ppm graph looks like mine... :(

                                I just want to get HTTPS/SSL working.

                                I use an nginx-setup here for https.

                                Pretty nifty little piece of software.

                                Yepp! They are real software gems.

                                J Offline
                                J Offline
                                jaredwolff
                                wrote on last edited by jaredwolff
                                #35

                                @fotofieber also, I compiled my conclusions about some of the smaller form factor TVOC/C02 sensors. It was inspired by everything we talked about here. Our back and forth conversation has been awesome. So I wanted to say thanks for the inspiration :)

                                0_1557153919177_Screen Shot 2019-05-06 at 10.44.47 AM.png

                                The above is a screenshot from the side-by-side data of the BME680, CCS811 and SGP30.

                                The BME680 seemed impressive at first but I'm seeing a big difference in temperature and humidity. My thinking it's likely due to the heating elements inside keeping it a little less humid and a little more hot. (These are the compensated values by the way. The non-compensated values are even lower humidity and a hotter.)

                                The SGP30 is a bit of a power hog but the TVOC readings seemed to align well with the response from the BME680.

                                The CCS811, like we've seen throughout this thread, had some wacky responses using the 1.0.0 firmware. I haven't seen that since all of my CCS811 are up to date.

                                It's a toss up between all three but I'd shy away from the CCS811. If anyone here plans on building a production device, the stock is not reliable enough. (Digikey and Mouser have been out of stock lately) I'm not sure if you'd have the same problem in the EU or how things are in Asia.

                                Anyway my TLDR conclusions are here if anyone is interested. They include software implementation factors, hardware factors, availability factors and data output factors all rolled into one.

                                FotoFieberF 1 Reply Last reply
                                1
                                • FotoFieberF FotoFieber

                                  @jaredwolff said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                  I followed your lead on the Grafana + InfluxDB stuff. It was dead simple to setup.

                                  Yes, really simple. I use docker for grafana and influxdb.

                                  Your SGP30 CO2 ppm graph looks like mine... :(

                                  I just want to get HTTPS/SSL working.

                                  I use an nginx-setup here for https.

                                  Pretty nifty little piece of software.

                                  Yepp! They are real software gems.

                                  J Offline
                                  J Offline
                                  jaredwolff
                                  wrote on last edited by
                                  #36

                                  @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                  Your SGP30 CO2 ppm graph looks like mine...

                                  Also, Is your SGP30 plot the dark red one? Definitely not what I'd expect from this sensor. At first I thought it was the CCS811 as that one appears to be less reactive (at least in my testing)

                                  1 Reply Last reply
                                  0
                                  • J jaredwolff

                                    @fotofieber also, I compiled my conclusions about some of the smaller form factor TVOC/C02 sensors. It was inspired by everything we talked about here. Our back and forth conversation has been awesome. So I wanted to say thanks for the inspiration :)

                                    0_1557153919177_Screen Shot 2019-05-06 at 10.44.47 AM.png

                                    The above is a screenshot from the side-by-side data of the BME680, CCS811 and SGP30.

                                    The BME680 seemed impressive at first but I'm seeing a big difference in temperature and humidity. My thinking it's likely due to the heating elements inside keeping it a little less humid and a little more hot. (These are the compensated values by the way. The non-compensated values are even lower humidity and a hotter.)

                                    The SGP30 is a bit of a power hog but the TVOC readings seemed to align well with the response from the BME680.

                                    The CCS811, like we've seen throughout this thread, had some wacky responses using the 1.0.0 firmware. I haven't seen that since all of my CCS811 are up to date.

                                    It's a toss up between all three but I'd shy away from the CCS811. If anyone here plans on building a production device, the stock is not reliable enough. (Digikey and Mouser have been out of stock lately) I'm not sure if you'd have the same problem in the EU or how things are in Asia.

                                    Anyway my TLDR conclusions are here if anyone is interested. They include software implementation factors, hardware factors, availability factors and data output factors all rolled into one.

                                    FotoFieberF Offline
                                    FotoFieberF Offline
                                    FotoFieber
                                    Hardware Contributor
                                    wrote on last edited by
                                    #37

                                    @jaredwolff said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                    The BME680 seemed impressive at first but I'm seeing a big difference in temperature and humidity. My thinking it's likely due to the heating elements inside keeping it a little less humid and a little more hot. (These are the compensated values by the way. The non-compensated values are even lower humidity and a hotter.)

                                    I have tested several temperature sensors in the same setup and will use seperate HTU21D in my production devices anyway. So temperature and humidity would be no problem for me.

                                    @jaredwolff said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                    Also, Is your SGP30 plot the dark red one? Definitely not what I'd expect from this sensor. At first I thought it was the CCS811 as that one appears to be less reactive (at least in my testing)

                                    Yes, it's is the dark red one. :(
                                    Yesterday another CCS811 arrived. I will add it to my setup.

                                    My final setup drifts to:

                                    • HTU21D temp/hum
                                    • MHZ19B CO2
                                    • HC-SR501 (modified for 3.3V) motion
                                    • WS 2812B led stripes
                                    J 1 Reply Last reply
                                    0
                                    • FotoFieberF FotoFieber

                                      @jaredwolff said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                      The BME680 seemed impressive at first but I'm seeing a big difference in temperature and humidity. My thinking it's likely due to the heating elements inside keeping it a little less humid and a little more hot. (These are the compensated values by the way. The non-compensated values are even lower humidity and a hotter.)

                                      I have tested several temperature sensors in the same setup and will use seperate HTU21D in my production devices anyway. So temperature and humidity would be no problem for me.

                                      @jaredwolff said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                      Also, Is your SGP30 plot the dark red one? Definitely not what I'd expect from this sensor. At first I thought it was the CCS811 as that one appears to be less reactive (at least in my testing)

                                      Yes, it's is the dark red one. :(
                                      Yesterday another CCS811 arrived. I will add it to my setup.

                                      My final setup drifts to:

                                      • HTU21D temp/hum
                                      • MHZ19B CO2
                                      • HC-SR501 (modified for 3.3V) motion
                                      • WS 2812B led stripes
                                      J Offline
                                      J Offline
                                      jaredwolff
                                      wrote on last edited by jaredwolff
                                      #38

                                      @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                      I have tested several temperature sensors in the same setup and will use seperate HTU21D in my production devices anyway. So temperature and humidity would be no problem for me.

                                      After someone on a different forum suggested, I actually switched it from continuous to low power mode and the temperature and humidity readings look better.

                                      0_1557233131908_Screen Shot 2019-05-07 at 8.45.03 AM.png

                                      (Red line is in the middle between before and after the change.)

                                      @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                      Yesterday another CCS811 arrived. I will add it to my setup.

                                      Nice, curious to see your results!

                                      FotoFieberF 1 Reply Last reply
                                      0
                                      • J jaredwolff

                                        @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                        I have tested several temperature sensors in the same setup and will use seperate HTU21D in my production devices anyway. So temperature and humidity would be no problem for me.

                                        After someone on a different forum suggested, I actually switched it from continuous to low power mode and the temperature and humidity readings look better.

                                        0_1557233131908_Screen Shot 2019-05-07 at 8.45.03 AM.png

                                        (Red line is in the middle between before and after the change.)

                                        @fotofieber said in Particle Powered Air Quality Sensor Logging to Google Docs:

                                        Yesterday another CCS811 arrived. I will add it to my setup.

                                        Nice, curious to see your results!

                                        FotoFieberF Offline
                                        FotoFieberF Offline
                                        FotoFieber
                                        Hardware Contributor
                                        wrote on last edited by
                                        #39

                                        @jaredwolff 0_1557243066441_IMG_3835.jpg

                                        BME680 sensor mith MCU arrived. Hope I can read the chinese specification of the module.... :) (What stand PS for?)

                                        J 1 Reply Last reply
                                        0
                                        • FotoFieberF FotoFieber

                                          @jaredwolff 0_1557243066441_IMG_3835.jpg

                                          BME680 sensor mith MCU arrived. Hope I can read the chinese specification of the module.... :) (What stand PS for?)

                                          J Offline
                                          J Offline
                                          jaredwolff
                                          wrote on last edited by
                                          #40

                                          @fotofieber hmm I'm not sure. Can you send me more info about the board you got?

                                          FotoFieberF 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          23

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.1k

                                          Posts


                                          Copyright 2025 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • MySensors
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular