{"id":26714843,"url":"https://github.com/timothydodd/dotnetraspstats","last_synced_at":"2025-07-26T02:03:59.385Z","repository":{"id":203304480,"uuid":"709288998","full_name":"timothydodd/DotNetRaspStats","owner":"timothydodd","description":"Display Raspberry Pi Stats on SSD1306","archived":false,"fork":false,"pushed_at":"2023-12-27T20:20:48.000Z","size":107,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T13:51:24.316Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/timothydodd.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-10-24T12:20:57.000Z","updated_at":"2023-10-26T15:39:13.000Z","dependencies_parsed_at":"2025-03-27T13:51:16.469Z","dependency_job_id":"db8dec5c-d97a-4dbf-823b-ef202c2262eb","html_url":"https://github.com/timothydodd/DotNetRaspStats","commit_stats":null,"previous_names":["timothydodd/dotnetraspstats"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/timothydodd/DotNetRaspStats","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothydodd%2FDotNetRaspStats","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothydodd%2FDotNetRaspStats/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothydodd%2FDotNetRaspStats/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothydodd%2FDotNetRaspStats/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timothydodd","download_url":"https://codeload.github.com/timothydodd/DotNetRaspStats/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothydodd%2FDotNetRaspStats/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267103739,"owners_count":24036533,"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","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-27T13:51:13.233Z","updated_at":"2025-07-26T02:03:59.333Z","avatar_url":"https://github.com/timothydodd.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Show System Stats on SSD1306\n This app was created to show Raspberry pi system running ubuntu stats on a SSD1306 128x64 OLED\n \n Runs every 5 Seconds\n \n![screen](https://github.com/timothydodd/DotNetRaspStats/assets/8201238/9faae8b0-8f06-400d-aa2d-fe281cc21713)\n\nFonts Used\nhttps://www.fontspace.com/roboto-font-f13281\n\n\n### Install Script\n``` bash\nsudo  mkdir /usr/sbin/DotNetRaspStats\nsudo chmod 0755 /usr/sbin/DotNetRaspStats\n\nsudo wget https://github.com/timothydodd/DotNetRaspStats/releases/download/v1.0.3/timothydodd.DotNetRaspStats-refs.tags.v1.0.3-linux-x64.zip \u0026\u0026\n\tunzip timothydodd.DotNetRaspStats-refs.tags.v1.0.3-linux-x64.zip \u0026\u0026\n\tsudo rm timothydodd.DotNetRaspStats-refs.tags.v1.0.3-linux-x64.zip \u0026\u0026\n    sudo cp -r ./bin/linux-x64/dotnetraspstats.service /etc/systemd/system/ \u0026\u0026\n\tsudo  cp -r ./bin/linux-x64/. /usr/sbin/DotNetRaspStats \u0026\u0026\n    sudo  rm -rf bin \u0026\u0026\n\tsudo  systemctl start dotnetraspstats.service\n```\n## ReInstall Script\n``` bash\n\nsudo systemctl stop dotnetraspstats.service \u0026\u0026\n\trm -rf bin \u0026\u0026\n\twget https://github.com/timothydodd/DotNetRaspStats/releases/download/v1.0.3/timothydodd.DotNetRaspStats-refs.tags.v1.0.3-linux-x64.zip \u0026\u0026\n\tunzip timothydodd.DotNetRaspStats-refs.tags.v1.0.3-linux-x64.zip \u0026\u0026\n\trm timothydodd.DotNetRaspStats-refs.tags.v1.0.3-linux-x64.zip \u0026\u0026\n\tsudo cp -r ./bin/linux-x64/. /usr/sbin/DotNetRaspStats \u0026\u0026\n\tsudo systemctl start dotnetraspstats.service\n```\n\n### Notes\nThese notes will be cleaned up soon\ndotnetraspstats.service\n``` bash\n\nrequirements\n\nsudo apt-get update \u0026\u0026 \nsudo apt-get install -y dotnet-sdk-7.0 \u0026\u0026\nsudo apt-get install raspi-config \u0026\u0026\nsudo apt-get install unzip\n\n#optional configurations\ndtoverlay=gpio-shutdown,gpio_pin=21\ndtoverlay=act-led,gpio=19\ndtoverlay=disable-wifi\ndtoverlay=disable-bt\n\ncommandline.txt\nip=192.168.2.55::192.168.2.1:255.255.255.0:rpi:eth0:off\n\ndotnet publish -c Release -r linux-arm64 --self-contained=true -p:PublishSingleFile=true -p:GenerateRuntimeConfigurationFiles=true -o artifacts\n#/usr/sbin/DotNetRaspStats\n\nsudo chmod 0755 /usr/sbin/DotNetRaspStats\n#copy Files to sbin\nsudo cp -r ./ /usr/sbin/DotNetRaspStats\n\n#copy .service file to system\nsudo cp ./dotnetraspstats.service /etc/systemd/system/\n\nsudo systemctl daemon-reload\n\nsudo systemctl status dotnetraspstats.service\n\nsudo systemctl start dotnetraspstats.service\nsudo systemctl stop dotnetraspstats.service\nsudo systemctl restart dotnetraspstats.service\nsudo systemctl enable dotnetraspstats.service\n\ncompress\n    tar -zcvf rasp-stat.tar.gz artifacts\ndecompress\n tar -zxvf rasp-stat.tar.gz\n\nsudo rfkill block bluetooth\nsudo rfkill block wifi\n\n scp [file_name]  remoteuser@remotehost:/remote/directory\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimothydodd%2Fdotnetraspstats","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimothydodd%2Fdotnetraspstats","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimothydodd%2Fdotnetraspstats/lists"}