Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update drv_cht8305.c #902

Merged
merged 1 commit into from
Aug 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/driver/drv_cht8305.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ void CHT8305_Init() {
//cmddetail:{"name":"CHT_Calibrate","args":"[DeltaTemp][DeltaHumidity]",
//cmddetail:"descr":"Calibrate the CHT Sensor as Tolerance is +/-2 degrees C.",
//cmddetail:"fn":"CHT_Calibrate","file":"driver/drv_cht8305.c","requires":"",
//cmddetail:"examples":"SHT_Calibrate -4 10"}
//cmddetail:"examples":"SHT_Calibrate -4 10 <br /> meaning -4 on current temp reading and +10 on current humidity reading"}
CMD_RegisterCommand("CHT_Calibrate", CHT_Calibrate, NULL);
//cmddetail:{"name":"CHT_Cycle","args":"[IntervalSeconds]",
//cmddetail:"descr":"This is the interval between measurements in seconds, by default 1. Max is 255.",
//cmddetail:"fn":"CHT_cycle","file":"drv/drv_cht8305.c","requires":"",
//cmddetail:"examples":"CHT_Cycle 60"}
//cmddetail:"examples":"CHT_Cycle 60 <br /> measurement is taken every 60 seconds"}
CMD_RegisterCommand("CHT_Cycle", CHT_cycle, NULL);

}
Expand Down
Loading