{"id":27425767,"url":"https://github.com/00kenno/captive_portal_string_monitor","last_synced_at":"2025-04-14T12:28:52.290Z","repository":{"id":287301292,"uuid":"963781153","full_name":"00kenno/Captive_Portal_String_Monitor","owner":"00kenno","description":"Arduino library for monitor any string on captive portal. Works with Raspberry Pico W, Pico 2W and ESP32.","archived":false,"fork":false,"pushed_at":"2025-04-11T01:57:00.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T02:32:44.773Z","etag":null,"topics":["esp32","raspberry-pi-pico-2-w","raspberry-pi-pico-w"],"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/00kenno.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,"zenodo":null}},"created_at":"2025-04-10T07:43:32.000Z","updated_at":"2025-04-11T01:57:03.000Z","dependencies_parsed_at":"2025-04-11T02:32:46.239Z","dependency_job_id":"d53f99ba-85f1-462e-81e9-e48fafe40271","html_url":"https://github.com/00kenno/Captive_Portal_String_Monitor","commit_stats":null,"previous_names":["00kenno/captive_portal_string_monitor"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/00kenno%2FCaptive_Portal_String_Monitor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/00kenno%2FCaptive_Portal_String_Monitor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/00kenno%2FCaptive_Portal_String_Monitor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/00kenno%2FCaptive_Portal_String_Monitor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/00kenno","download_url":"https://codeload.github.com/00kenno/Captive_Portal_String_Monitor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248880767,"owners_count":21176730,"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","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":["esp32","raspberry-pi-pico-2-w","raspberry-pi-pico-w"],"created_at":"2025-04-14T12:28:50.230Z","updated_at":"2025-04-14T12:28:52.248Z","avatar_url":"https://github.com/00kenno.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Captive_Portal_String_Monitor\nArduino library for monitor any string on captive portal.\nWorks with Raspberry Pico W, Pico 2W and ESP32.\n\nこのArduinoライブラリを利用すると，キャプティブポータル上で任意の文字列を簡単に表示することができます．\nRaspberry Pico W, Pico 2W および ESP32 を搭載するWiFiデバイスでコンパイルが可能です．\nログの取得や動作確認など，あらゆるプロジェクトに応用が可能です．\n\n## Methods | メソッド\nインスタンス化することにより，利用可能になります．\nここでは，以下のようにインスタンス化したとします．\n\n```cpp\nCaptive_Portal_String_Monitor monitor;\n```\n\n### monitor.begin()\nsetup()内で実行します．\nFreeRTOSのxTaskCreateが内部で実行され，WebServerが開始します．\n\n```cpp\nvoid setup() {\n  monitor.begin();\n}\n```\n\n### monitor.update(char *p)\n任意の場所で実行できます．\nmonitorインスタンスが持つ長さが256のchar型の配列(data)にその内容がコピーされます．\n\n```cpp\nvoid loop() {\n  uint32_t now = millis(); // Returns the number of milliseconds passed since the Arduino board began running the current program.\n  char data[256];\n  sprintf(data, \"%d\", now);\n  monitor.update(data); // Update data in monitor.\n  delay(100);\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F00kenno%2Fcaptive_portal_string_monitor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F00kenno%2Fcaptive_portal_string_monitor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F00kenno%2Fcaptive_portal_string_monitor/lists"}