{"id":25343958,"url":"https://github.com/ssilverman/liteoscparser","last_synced_at":"2026-04-27T00:31:49.667Z","repository":{"id":149985003,"uuid":"125007170","full_name":"ssilverman/LiteOSCParser","owner":"ssilverman","description":"A lightweight OSC parser.","archived":false,"fork":false,"pushed_at":"2019-06-12T03:26:04.000Z","size":248,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-30T22:41:42.308Z","etag":null,"topics":["arduino","osc","structured-data","teensy"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause-clear","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ssilverman.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-13T07:04:40.000Z","updated_at":"2020-09-01T14:33:04.000Z","dependencies_parsed_at":"2023-04-20T13:17:48.896Z","dependency_job_id":null,"html_url":"https://github.com/ssilverman/LiteOSCParser","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ssilverman/LiteOSCParser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssilverman%2FLiteOSCParser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssilverman%2FLiteOSCParser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssilverman%2FLiteOSCParser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssilverman%2FLiteOSCParser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ssilverman","download_url":"https://codeload.github.com/ssilverman/LiteOSCParser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssilverman%2FLiteOSCParser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32318417,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"ssl_error","status_checked_at":"2026-04-26T23:26:25.802Z","response_time":129,"last_error":"SSL_read: 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":["arduino","osc","structured-data","teensy"],"created_at":"2025-02-14T11:00:04.907Z","updated_at":"2026-04-27T00:31:49.647Z","avatar_url":"https://github.com/ssilverman.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Readme for LiteOSCParser v1.4.0\n\nThis library parses and constructs OSC messages. It is designed to minimize\nmemory usage by providing a way to pre-allocate the internal buffers.\n\nBundles are supported via a simple container class.\n\n## Features\n\nNotable features of this library:\n\n1. Ability to control memory usage.\n2. Lightweight API.\n\n## How to use\n\nThe classes you'll need are in the `qindesign::osc` namespace:\n`LiteOSCParser` and possibly `OSCBundle`. A complete example of how to use\nthe parser is in the `AllInOne` example.\n\nThe main class documentation can be found in `src/LiteOSCParser.h`.\n\nOSC bundles are managed using the simple `OSCBundle` container class.\n\n## Installing as an Arduino library\n\nNot all the files in this project are necessary in an installed library.\nOnly the following files and directories need to be there:\n\n* `*.md`\n* `LICENSE`\n* `examples/`\n* `library.json`\n* `library.properties`\n* `src/`\n\n## Running the tests\n\nThere are tests included in this project that rely on a project called\n[ArduinoUnit](https://github.com/mmurdoch/arduinounit).\n\nNote that the code for ArduinoUnit is not included in this library and needs\nto be downloaded separately.\n\n## Notes on use\n\n### Retrieving values\n\nBy default, if a value does not exist at a given index, a default value will be\nreturned. For example, `getFloat(2)` will try to return a 32-bit float value at\nindex 2. If the index is out of range or if the value type at that index is not\na float then a value of 0.0f will be returned.\n\nTo avoid this scenario, the following code is useful:\n\n```c++\nif (isFloat(2)) {\n  float f = getFloat(2);\n  // Do something with the value\n}\n```\n\nInternally, `getFloat` also calls `isFloat` with the same index, and so\n`isFloat` is actually called twice. To avoid two calls, there exist other getter\nfunctions named `getIfXXX` (replacing _XXX_ with the appropriate type). For\nexample, `getIfFloat` to retrieve a float. These functions return a `bool`:\n`true` if the value exists and was retrieved, and `false` otherwise.\n\nFor example:\n\n```c++\nfloat f;\nif (getIfFloat(2, \u0026f)) {\n  // Do something with 'f'\n}\n```\n\n## Code style\n\nCode style for this project mostly follows the\n[Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html).\n\n## References\n\n1. [OSC 1.0 Specification](http://opensoundcontrol.org/spec-1_0)\n2. [OSC 1.1 Specification](http://opensoundcontrol.org/spec-1_1)\n3. [NIME 2009 paper](https://hangar.org/webnou/wp-content/uploads/2012/01/Nime09OSCfinal.pdf)\n4. [TouchOSC](https://hexler.net/docs/touchosc)\n\n---\n\nCopyright (c) 2018-2019 Shawn Silverman\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssilverman%2Fliteoscparser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fssilverman%2Fliteoscparser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssilverman%2Fliteoscparser/lists"}