{"id":26190870,"url":"https://github.com/codingabi/gyroraycaster","last_synced_at":"2026-02-21T04:33:46.598Z","repository":{"id":166939821,"uuid":"492230557","full_name":"codingABI/GyroRaycaster","owner":"codingABI","description":"Raycaster where viewer can be moved and rotated by gyroscope sensor (Arduino Uno/Nano with gyro sensor MPU6050 and SSD1306 OLED 128x64 pixel display).","archived":false,"fork":false,"pushed_at":"2025-04-05T20:23:06.000Z","size":4390,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-04-15T02:14:25.234Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/codingABI.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,"zenodo":null}},"created_at":"2022-05-14T13:54:28.000Z","updated_at":"2025-04-05T20:23:09.000Z","dependencies_parsed_at":"2025-04-15T02:10:47.671Z","dependency_job_id":"eb9d0a9e-4e57-4f0d-8f58-233b92116572","html_url":"https://github.com/codingABI/GyroRaycaster","commit_stats":null,"previous_names":["codingabi/gyroraycaster"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/codingABI/GyroRaycaster","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingABI%2FGyroRaycaster","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingABI%2FGyroRaycaster/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingABI%2FGyroRaycaster/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingABI%2FGyroRaycaster/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codingABI","download_url":"https://codeload.github.com/codingABI/GyroRaycaster/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingABI%2FGyroRaycaster/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29673785,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T03:11:15.450Z","status":"ssl_error","status_checked_at":"2026-02-21T03:10:34.920Z","response_time":107,"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":"2025-03-12T00:58:26.663Z","updated_at":"2026-02-21T04:33:46.571Z","avatar_url":"https://github.com/codingABI.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GyroRaycaster\nGamelike raycaster where viewer can be moved and rotated by gyroscope sensor. When the viewer has reached the exit to the outer world the game ends.\n\n![screenshot](/assets/images/Screenshot.png) \n\nVideo https://youtu.be/0g54CI1bC_A\n\n## License and copyright\nMy code is licensed under the terms of the MIT License [Copyright (c) 2022 codingABI](LICENSE).\n\n## Hardware\n\nArduino Uno/Nano with gyroscope sensor MPU6050 and SSD1306 OLED 128x64 pixel display\n\n![photo](/assets/images/GyroRaycaster.jpg) \n\n![breadboard](/assets/images/Breadboard.svg) \n\nRunning on breadboard was not very stable for me over time (occassionally i2c-bus freezes). The same circuit soldered on board ran stable.\n\n# Appendix\n\n## Schematic\n\n![schema](/assets/images/Schema.svg) \n\n## Used development environment\n\n- Arduino IDE 2.3.4 or 1.8.19\n- Arduino AVR Boards Version 1.8.6\n- Adafruit GFX Library 1.11.11 \n- Adafruit SSD1306 2.5.13 (dont forget to uncomment #define SSD1306_NO_SPLASH in Adafruit_SSD1306.h to prevent the \"Sketch too big\" error)\n- I2Cdev (from https://github.com/jrowberg/i2cdevlib)\n\n### FAQ\n\n#### Can I use a SH1106 display instead of a SSD1306?\nOfficial: No\n\nThe project was designed for a SSD1306 display.\n\nTo get the project working on a SH1106 display (as requested on https://www.youtube.com/watch?v=0g54CI1bC_A)\nthere are some challenges to be resolved :  \n 1) The library Adafruit_SSD1306 (I used v2.5.7) does not support the SH1106 display =\u003e Adafruit_SH110X is needed (I used v2.1.10)\n 2) The library Adafruit_SH110X seems to have a higher memory footprint then the Adafruit_SSD1306 library =\u003e Project would compile, but does not run (=Black screen)\n 3) Removing of display strings to reduce memory consumption in this special [SH1106 version](/inofficial/GyroRaycasterSH1106/GyroRaycasterSH1106.ino) got the project working on a SH1106 display\n =\u003e Use a SSD1306 display for this project or be able to fix it yourself.\n\n![screenshot](/assets/images/SH1106.png) \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodingabi%2Fgyroraycaster","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodingabi%2Fgyroraycaster","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodingabi%2Fgyroraycaster/lists"}