{"id":27633748,"url":"https://github.com/djaus2/sensorblazor_arduino","last_synced_at":"2026-04-15T14:03:15.841Z","repository":{"id":85177351,"uuid":"307336268","full_name":"djaus2/SensorBlazor_Arduino","owner":"djaus2","description":"Mirrors SensorBlazor repository .NET Core Console apps in that Arduino Sketches send Sensor data to Azure IoT Hub via the SensorBlazor service.","archived":false,"fork":false,"pushed_at":"2020-10-31T03:40:14.000Z","size":70,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-23T18:19:26.408Z","etag":null,"topics":["arduino","azure","azure-iothub","blazor","blazor-webassembly","cpp","iothub","sketch"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/djaus2.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":"2020-10-26T10:29:31.000Z","updated_at":"2023-10-21T04:04:52.000Z","dependencies_parsed_at":"2023-03-11T21:00:43.146Z","dependency_job_id":null,"html_url":"https://github.com/djaus2/SensorBlazor_Arduino","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/djaus2/SensorBlazor_Arduino","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djaus2%2FSensorBlazor_Arduino","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djaus2%2FSensorBlazor_Arduino/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djaus2%2FSensorBlazor_Arduino/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djaus2%2FSensorBlazor_Arduino/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/djaus2","download_url":"https://codeload.github.com/djaus2/SensorBlazor_Arduino/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djaus2%2FSensorBlazor_Arduino/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266496399,"owners_count":23938711,"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-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["arduino","azure","azure-iothub","blazor","blazor-webassembly","cpp","iothub","sketch"],"created_at":"2025-04-23T18:19:24.228Z","updated_at":"2026-04-15T14:03:15.793Z","avatar_url":"https://github.com/djaus2.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SensorBlazor_Arduino\nMirrors [SensorBlazor](https://github.com/djaus2/SensorBlazor) repository .NET Core Console apps in that Arduino Sketches send Sensor data to Azure IoT Hub via the SensorBlazor service using Http POST.\n\n## Blazor Service of monitoring these Azure IoT Hub Posts:\n[BlazorD2CMessages](https://github.com/djaus2/BlazorD2CMessages)\n\n## Sensor types:\nFrom **SensorBlazor** Shared Project:\n```\npublic enum SensorType {temperature,pressure,humidity,luminosity,accelerometer,environment,sswitch}\n```\nIndexed from zero.\n## BlazorIoTHubJsonSim\nGenerates simulated sensor data and sends to the Blazor Service.\n\n### Sample Serial Output\n```\nIP Address: 192.168.0.21\nmaking POST request\nSensor Data: {\n  \"No\": 0,\n  \"Id\": \"Sensor0\",\n  \"SensorType\": 0,\n  \"Value\": 199.8\n}\nStatus code: 200\nResponse: Sensor0\nWait 5 seconds\nmaking POST request\nSensor Data: {\n  \"No\": 1,\n  \"Id\": \"Sensor1\",\n  \"SensorType\": 1,\n  \"Value\": 199.8\n}\nStatus code: 200\nResponse: Sensor1\nWait 5 seconds\n```\n\n### Monitored IoT Hub Submissions\n```\nNo.\tId\tSensor Type\tValue\tValues\tState\tTimeStamp\n2\tSensor2\thumidity\t199.8\tnull\tFalse.\t0\n1\tSensor1\tpressure\t199.8\tnull\tFalse.\t0\n0\tSensor0\ttemperature\t199.8\tnull\tFalse.\t0\n```\n\n## BlazorIoTHubTemplate\nA template for sketches that read actuial sensor data\n\n### Sample Sketch Serial Output\n```\nmaking POST request\nSensor Data: {\n  \"No\": 0,\n  \"Id\": \"Sensor0\",\n  \"SensorType\": 0,\n  \"Value\": 137.035\n}\nStatus code: 200\nResponse: Sensor0\nWait 5 seconds\n```\n\n### Monitored IoT Hub Submissions\n```\nNo.\tId\tSensor Type\tValue\tValues\tState\tTimeStamp\n0\tSensor0\ttemperature\t137.035\tnull\tFalse.\t0\n0\tSensor0\ttemperature\t137.035\tnull\tFalse.\t0\n0\tSensor0\ttemperature\t137.035\tnull\tFalse.\t0\n```\n\n## Real Sensors based upon the Template.\nAdded:\n- BME280\n- DHT22\n- _More to come._ Requests?\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdjaus2%2Fsensorblazor_arduino","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdjaus2%2Fsensorblazor_arduino","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdjaus2%2Fsensorblazor_arduino/lists"}