crtified 2 days ago

I'll preface this by saying that product design and manufacturing and public-proofing is long, hard work, and the retail price of this product is likely to be well justified for all kinds of reasons.

That said, looking at the main active components that are listed, we have -

ESP32S3 IC : $4 retail, SCD41 Sensor : $21 retail, SGP41 Sensor : $8 retail, LPS22 Sensor : $4 retail

Which is very hopeful, in the sense that some key functionality of this kind of device could potentially be open sourced and pared back to a minimal cost where hobbyists could build versions suitable for the economics of developing countries.

2
iamflimflam1 2 days ago

Tariffs are having a big impact on people outside the US using CrowdSupply.

CrowdSupply ships everything via Mouser US - so if you are outside of the US you need to export your products to Mouser. That hits you with tariffs and the tariffs are charged on what CrowdSupply are paying you for the products.

If the majority of your product is manufactured in China (e.g. PCBA) then it's very likely that the COO for your product will be China. So, you will get stung with whatever crazy tariffs are currently in place.

256dpi 2 days ago

This has been very tricky to navigate for us. We almost launched the campaign right before the Tariffs got announced. Luckily, we had the opportunity to wait it out. While CrowdSupply is an awesome platform, and I would use it again, the requirement to export everything to the US is a problem in such situations.

iamflimflam1 1 day ago

Yep, it's bitten me - just about to ship my boxes off. I'll still probably break even fortunately (or at least not lose a massive amount of money).

256dpi 1 day ago

Uff, that's hard! I'm sorry to hear that. What projects is yours?

iamflimflam1 1 day ago

ESP32 Rainbow - https://www.crowdsupply.com/atomic14/esp32-rainbow

I'm seeing if I can argue for a UK country of origin. But also, I want to get the boxes shipped and out to people - so think I'll just swallow it.

FlyingSnake 1 day ago

> ESP32S3 IC : $4 retail, SCD41 Sensor : $21 retail, SGP41 Sensor : $8 retail, LPS22 Sensor : $4 retail

I am not an expert but if I get these components, how easy would it be to build a hacked version out of these?

I’m not in the US and unaffected by the tarrifs.

crtified 15 hours ago

The basic connections are easy in theory, especially if you get a ready-to-use, breakout-board version (e.g. Adafruit modules) of each, for perhaps double or triple the price. Then it's just a matter of wiring each sensor to data lines of the controller chip, and giving everything the power it requires.

Programming libraries contain the basic functions necessary to access to sensors' readings with simple lines of code.

But the devil is in the details - to go from that to an actual practical, working model and physical build is quite a lot of work. Expect months, in hobbyist terms.

nerdsniper 1 day ago

Pretty simple. You can find lots of examples of getting each sensor working by googling "site:github.com ESP32 SCD41" etc.

There are libraries which make it extra-easy:

SCD41: SparkFun_SCD4x_Arduino_Library.h

SGP41: SensirionI2CSgp41.h

LPS22: Adafruit_LPS2X.h

Take a look through the past HN discussions of this and similar air quality monitors. Can also search HN for chip names themselves (like 'SCD41'). Many people note that the sensors drift over time, and buying "calibration bottles" of low-concentration CO2 is a slight hurdle for many - they're not that crazy expensive, but they're expensive enough to be a bit of a block for some.

FlyingSnake 1 day ago

Sounds great!

I’ll give it a try and see how far I go. Do you know any discord channels where such folks hang out?

P.S. Apt username BTW.

ajolly 1 day ago

Super easy, use esphome. There's a few vendors out there that sell pre built devices, and they usually make their configs available if you want to DIY it. For example Apollo automation.

DoingIsLearning 1 day ago

Hardware companies design breakout boards for most semi popular sensors (including the SCD41 and the SGP41) so arguably if you can put things together on a breadboard and can setup I²C comms (for example with an Arduino library) then it is certainly accessible to a hobbyist.