{"id":17114103,"url":"https://github.com/horihiro/esp8266-google-tts","last_synced_at":"2026-03-11T17:31:38.186Z","repository":{"id":55409242,"uuid":"125117509","full_name":"horihiro/esp8266-google-tts","owner":"horihiro","description":null,"archived":false,"fork":false,"pushed_at":"2023-12-05T16:39:26.000Z","size":73,"stargazers_count":77,"open_issues_count":4,"forks_count":21,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-03-26T20:21:21.798Z","etag":null,"topics":["esp8266","google","text2speech","texttospeech","tts"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/horihiro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-13T21:34:07.000Z","updated_at":"2025-01-29T11:08:11.000Z","dependencies_parsed_at":"2024-11-07T18:04:07.824Z","dependency_job_id":"e1634e08-778a-40a4-a985-c35ab6395b1b","html_url":"https://github.com/horihiro/esp8266-google-tts","commit_stats":{"total_commits":41,"total_committers":3,"mean_commits":"13.666666666666666","dds":0.04878048780487809,"last_synced_commit":"ec2e2686d2303f1d3fafe68b0c067925fbf01608"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/horihiro%2Fesp8266-google-tts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/horihiro%2Fesp8266-google-tts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/horihiro%2Fesp8266-google-tts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/horihiro%2Fesp8266-google-tts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/horihiro","download_url":"https://codeload.github.com/horihiro/esp8266-google-tts/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248658334,"owners_count":21140926,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["esp8266","google","text2speech","texttospeech","tts"],"created_at":"2024-10-14T17:15:13.993Z","updated_at":"2025-11-07T01:03:06.316Z","avatar_url":"https://github.com/horihiro.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# esp8266-google-tts\nSimple Google TTS Library for esp8266.\n\nThis library generates the link to speech mp3 file from text using Google Translate Service.\n\n[This](https://qiita.com/horihiro/items/d64b699d06605ad44646) is the Japanese document on [Qiita.com](https://qiita.com/);\n\n## Install\nThis library can be installed from the Library Manager on Arduino IDE\n\n![](./librarymanager.png)\n\n\n## Usage\n\n```\n#include \u003cgoogle-tts.h\u003e\n#include \u003cESP8266WiFi.h\u003e\n\nconst char* ssid     = \"\u003cREPLASE_YOUR_WIFI_SSID\u003e\";\nconst char* password = \"\u003cREPLASE_YOUR_WIFI_PASSWORD\u003e\";\n\nvoid setup() {\n  // put your setup code here, to run once:\n  Serial.begin(115200);\n  Serial.println(\"\");\n  WiFi.mode(WIFI_STA);  WiFi.begin(ssid, password);\n\n  while (WiFi.status() != WL_CONNECTED) {\n    delay(250);\n    Serial.print(\".\");\n  }\n\n  TTS tts;\n  Serial.println(tts.getSpeechUrl(\"こんにちは、世界！\", \"ja\"));\n  Serial.println(tts.getSpeechUrl(\"Hello, World!\"));\n\n}\n\nvoid loop() {\n  // put your main code here, to run repeatedly:\n\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhorihiro%2Fesp8266-google-tts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhorihiro%2Fesp8266-google-tts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhorihiro%2Fesp8266-google-tts/lists"}