Skip to content

Commit

Permalink
LCD text and logging copy update
Browse files Browse the repository at this point in the history
  • Loading branch information
kristiankielhofner authored and stintel committed Nov 28, 2023
1 parent 8af22bc commit b0220b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main/audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,13 @@ static esp_err_t cb_ae_hs(audio_element_handle_t el, audio_event_iface_msg_t *ev
willow_http_stream_t type_hs = (willow_http_stream_t) data;
if (type_hs == WILLOW_HS_STT) {
audio_recorder_trigger_stop(hdl_ar);
war.fn_err("STT error");
ESP_LOGE(TAG, "error opening STT endpoint (%d)", ae_status);
ui_pr_err("STT error", "Check server & settings");
war.fn_err("Cannot Reach WIS");
ESP_LOGE(TAG, "Error opening STT endpoint (%d)", ae_status);
ui_pr_err("Cannot Reach WIS", "Check Server & Settings");
} else if (type_hs == WILLOW_HS_ESP_AUDIO) {
play_audio_err(NULL);
ESP_LOGE(TAG, "error opening ESP Audio endpoint (%d)", ae_status);
ui_pr_err("STT error", "Check server & settings");
ESP_LOGE(TAG, "Error opening ESP Audio endpoint (%d)", ae_status);
ui_pr_err("Cannot Reach WIS", "Check Server & Settings");
}
}
return ESP_OK;
Expand Down

0 comments on commit b0220b8

Please sign in to comment.