How to use AM2320? #1805
Replies: 5 comments
-
Posted at 2018-12-15 by @MaBecker Hi, Check chapter 8.3 Single bus communication (ONE-WIRE) how to wire this sensor and then try to use module DHT22/AM230x/RHT0x Temperature and RH Sensor |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-12-15 by iwae Hi @MaBecker, thank you for your response. I will try that. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-12-17 by DrAzzy "single bus" is NOT the same as OneWire!!! OneWire is a specific protocol used almost exclusively by Dallas Semiconductor products. The slave devices all have a unique serial number, there's a way to parasite power so you don't need a separate power wire, etc. The Aosong temperature/humidity sensors do not use OneWire, they use their own single wire protocol; calling it a bus is misuse of that term, IMO, as well - "bus" sort of implies that more than two devices can be connected to it - but with no provision for addressing, the single wire protocol that the Aosong sensors use can only ever have two devices connected to it - the sensor, and the controller it talks to (I mean, I guess you could have multiple controllers connected to it, but I still don't think this counts!). But yeah, it looks like you can talk to that as if it's an AM2302 (aka DHT22) if you ground the SCL pin. An I2C module for those would be nice though - reading the single wire protocol in javascript doesn't play to Espruino's strengths.... Like, it works, but behind the scenes it's generating IIRC 80 callbacks within just a few milliseconds. An I2C module for it wouldn't be hard to write either... |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-01-26 by AndrewWakeling To use AM232x with I2C, it requires a specific "wake up" command which requires a command to be sent, followed by a 800 us to 3 ms delay, then a stop signal. (See section 8.2.4 of https://www.isweek.com/Uploads/20180528/5b0bbbc09cff2.pdf ) Alternatively, you could always bit bang the entire I2C conversation manually. (e.g. http://forum.espruino.com/conversations/286138/?offset=25 ). It's probably easier to fall back to the "single-bus" mode (which is wired differently as mentioned above). I'm trying to use Espruino with an AM2322 and I ran into this complication. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-01-28 by @gfwilliams Wow, that's a bit frustrating. It could be that you can do:
I'm not sure, but that might be good enough to send the command followed by a stop. You could use But as being as there is already a library to handle AM230x comms in it's single-bus mode it's probably more sensible to just use that |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2018-12-14 by iwae
Hi guys,
in a project based on Arduino I used the AM2320 with the following library:
https://github.com/hibikiledo/AM2320
I couldn't find any informations how to use it with espruino.
Can you help me with that?
Thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions