KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
AM2321
โ 13
Open GitHub โ
AM2321 sensor support for Arduino
Download README (.md)
Explore Similar Repositories
slenderman
:
A poorly drawn typeface
cloudyfs
:
A cloud in your file system
SharpSnippetCompiler-v5
:
SharpSnippetCompiler with SharpDevelop v5.0
robotics-matlab
:
๐พ research on robotics, computational graphics, and 3D photography
bootplate-moonstone
:
The foundation for applications written using the moonstone library
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
AM2321
?
Download (.md)
# AM2321 - AM2321 sensor support for Arduino. - More: http://playground.arduino.cc/Main/AM2321 ## Example: #include <AM2321.h> void readByAM2321() { AM2321 am2321; am2321.read(); Serial.print("("); Serial.print(am2321.temperature/10.0); Serial.print(", "); Serial.print(am2321.humidity/10.0); Serial.println(')'); }