44 lines
1.2 KiB
NASM
44 lines
1.2 KiB
NASM
; ***************************************************************************
|
|
; copyright : (C) 2025 by Martin Preuss
|
|
; email : martin@libchipcard.de
|
|
;
|
|
; ***************************************************************************
|
|
; * This file is part of the project "AqHome". *
|
|
; * Please see toplevel file COPYING of that project for license details. *
|
|
; ***************************************************************************
|
|
|
|
.cseg
|
|
|
|
|
|
; ---------------------------------------------------------------------------
|
|
; @routine SGP30_SendTVOC
|
|
|
|
SGP30_SendTVOC:
|
|
ldi r16, SGP30_VALUE_TVOC
|
|
rcall SGP30_GetValue
|
|
brcc SGP30_SendTVOC_end
|
|
ldi r17, VALUE_ID_SGP30_TVOC ; VALUE ID
|
|
ldi r22, AQHOME_VALUETYPE_TVOC ; VALUE TYPE
|
|
rcall Main_SendValueReport
|
|
SGP30_SendTVOC_end:
|
|
ret
|
|
; @end
|
|
|
|
|
|
|
|
; ---------------------------------------------------------------------------
|
|
; @routine SGP30_SendCO2
|
|
|
|
SGP30_SendCO2:
|
|
ldi r16, SGP30_VALUE_CO2
|
|
rcall SGP30_GetValue
|
|
brcc SGP30_SendCO2_end
|
|
ldi r17, VALUE_ID_SGP30_CO2 ; VALUE ID
|
|
ldi r22, AQHOME_VALUETYPE_CO2 ; VALUE TYPE
|
|
rcall Main_SendValueReport
|
|
SGP30_SendCO2_end:
|
|
ret
|
|
; @end
|
|
|
|
|