Skip to content

Commit

Permalink
Added missing char
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisxhe committed Dec 11, 2024
1 parent 950b707 commit 3a12927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TinyGsmClientA76xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ class TinyGsmA76xx : public TinyGsmModem<TinyGsmA76xx<modemType>>,
*/
protected:
bool textToSpeechImpl(String& text, uint8_t mode) {
thisModem().sendAT(GF("+CTTS="), mode, ',', text);
thisModem().sendAT(GF("+CTTS="), mode, ',', '"',text, '"');
if (thisModem().waitResponse() != 1) { return false; }
if (thisModem().waitResponse(10000UL, GF("+CTTS: 0")) != 1) { return false; }
return true;
Expand Down

0 comments on commit 3a12927

Please sign in to comment.