{"id":43098619,"url":"https://github.com/tinygo-org/wireless","last_synced_at":"2026-01-31T17:06:15.538Z","repository":{"id":328506014,"uuid":"1111639061","full_name":"tinygo-org/wireless","owner":"tinygo-org","description":"Wireless protocols for TinyGo radio devices.","archived":false,"fork":false,"pushed_at":"2026-01-21T15:32:03.000Z","size":114,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-22T03:31:53.634Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tinygo-org.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":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-07T11:02:25.000Z","updated_at":"2026-01-21T15:55:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tinygo-org/wireless","commit_stats":null,"previous_names":["tinygo-org/wireless"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tinygo-org/wireless","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinygo-org%2Fwireless","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinygo-org%2Fwireless/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinygo-org%2Fwireless/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinygo-org%2Fwireless/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tinygo-org","download_url":"https://codeload.github.com/tinygo-org/wireless/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinygo-org%2Fwireless/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28948357,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T14:26:55.697Z","status":"ssl_error","status_checked_at":"2026-01-31T14:26:52.545Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-01-31T17:06:14.911Z","updated_at":"2026-01-31T17:06:15.530Z","avatar_url":"https://github.com/tinygo-org.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wireless\n\nWireless communication protocol implementations to be used by TinyGo supported radios.\n\nFor example, this program sends WSPR packet data:\n\n```go\npackage main\n\nimport (\n\t\"time\"\n\n\t\"tinygo.org/x/wireless/wspr\"\n)\n\nfunc main() {\n\tprintln(\"Starting WSPR communication example...\")\n\ttime.Sleep(2 * time.Second)\n\n\t// init the modem\n\tprintln(\"WSPR modem initialized.\")\n\tradio := initRadio()\n\n\tfrequency := radio.GetBaseFrequency()\n\tprintln(\"Transmitting on frequency\", frequency, \"Hz\")\n\n\tdata := make([]byte, 256)\n\n\t// Example WSPR packet data\n\t// K1ABC FN42 37\n\t// See https://en.wikipedia.org/wiki/WSPR_(amateur_radio_software)\n\tmsg, err := wspr.NewMessage(\"K1ABC\", \"FN42\", 37)\n\tif err != nil {\n\t\tprintln(\"Error creating WSPR message:\", err.Error())\n\t\treturn\n\t}\n\tn, err := msg.WriteSymbols(data)\n\tif err != nil {\n\t\tprintln(\"error writing WSPR message\")\n\t\treturn\n\t}\n\n\t// transmit some data\n\tfor range 50 {\n\t\tprintln(\"Transmitting WSPR message with\", n, \"symbols\")\n\t\tif err := radio.WriteSymbols(data[:n]); err != nil {\n\t\t\tprintln(\"error transmitting WSPR message:\", err.Error())\n\t\t\treturn\n\t\t}\n\n\t\tprintln(\"Waiting for next transmission...\")\n\t\ttime.Sleep(15 * time.Second)\n\t}\n\n\ttime.Sleep(2 * time.Second)\n\n\t// put the radio in standby\n\tprintln(\"Putting radio in standby mode...\")\n\tradio.Standby()\n\ttime.Sleep(1 * time.Second)\n\n\tprintln(\"WSPR modem example completed.\")\n\tradio.Close()\n}\n```\n\n## Supported Protocols\n\n### AFSK\n\nAudio Frequency-Shift Keying \n\nhttps://notblackmagic.com/bitsnpieces/afsk/\n\n### FSK4\n\nFrequency-shift keying (FSK4)\n\nhttps://en.wikipedia.org/wiki/Frequency-shift_keying\n\n### LoRa\n\nLong Range (LoRa)\n\nhttps://en.wikipedia.org/wiki/LoRa\n\n### LoRaWAN\n\nLong Range Wide Area Networking (LoRaWAN)\n\nhttps://en.wikipedia.org/wiki/LoRa#LoRaWAN\n\n### Morse\n\nMorse code\n\nhttps://en.wikipedia.org/wiki/Morse_code#Amateur_radio\n\n### U4B\n\nTelemetry protocol on Weak Signal Propagation Reporter (WSPR)\n\nhttps://qrp-labs.com/u4b/u4bdecoding.html\n\n### WSPR\n\nWeak Signal Propagation Reporter (WSPR)\n\nhttps://en.wikipedia.org/wiki/WSPR_(amateur_radio_software)\n\n## Supported Radios\n\n- si5351\n- SX126X\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinygo-org%2Fwireless","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftinygo-org%2Fwireless","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinygo-org%2Fwireless/lists"}