{"id":22602341,"url":"https://github.com/mkazimoto/taskesp32","last_synced_at":"2026-05-10T02:25:06.480Z","repository":{"id":181302082,"uuid":"412673541","full_name":"mkazimoto/TaskESP32","owner":"mkazimoto","description":"Class Task for ESP32 using FreeRTOS","archived":false,"fork":false,"pushed_at":"2021-10-02T23:03:25.000Z","size":10,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-03T05:47:52.165Z","etag":null,"topics":["arduino","esp32","freertos","scheduler","task"],"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/mkazimoto.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":"2021-10-02T02:53:35.000Z","updated_at":"2024-05-22T02:29:07.000Z","dependencies_parsed_at":"2024-05-06T19:00:28.926Z","dependency_job_id":null,"html_url":"https://github.com/mkazimoto/TaskESP32","commit_stats":null,"previous_names":["mkazimoto/taskesp32"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkazimoto%2FTaskESP32","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkazimoto%2FTaskESP32/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkazimoto%2FTaskESP32/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkazimoto%2FTaskESP32/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mkazimoto","download_url":"https://codeload.github.com/mkazimoto/TaskESP32/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246100461,"owners_count":20723469,"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":["arduino","esp32","freertos","scheduler","task"],"created_at":"2024-12-08T12:20:12.844Z","updated_at":"2026-05-10T02:25:01.443Z","avatar_url":"https://github.com/mkazimoto.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TaskESP32\nClass Task for ESP32 using FreeRTOS\n\nExample:\n\n\t#include \u003cTaskESP32.h\u003e\n\n\tclass BlinkTask : public Task {\n\tpublic:  \n\t\tvoid setup() {      \n\t\t\tpinMode(2, OUTPUT);\n\t\t}       \n\t\tvoid loop() {\n\t\t\tdigitalWrite(2, HIGH);\n\t\t\tdelay(1000);\n\t\t\tdigitalWrite(2, LOW);\n\t\t\tdelay(1000);\n\t\t}\n\t} blinkTask;\n\t\n\tvoid setup() {\n\t\tblinkTask.start();\n\t}\n\t\n\tvoid loop() {\n\t}\n\t\n\nYou can adjust task priority and stack size:\n\n\t#include \u003cTaskESP32.h\u003e\n\t#include \u003cIRremote.h\u003e\n\n\tclass IrReceiverTask : public Task {\n\tpublic:\n    \n\t\tvoid setup() {\n\t\t\tIrReceiver.begin(14);\n\t\t}\n\n\t\tvoid loop() {\n\t\t\tif (IrReceiver.decode()) {\n\t\t\t\tSerial.println(IrReceiver.decodedIRData.decodedRawData, HEX);        \n\t\t\t\tIrReceiver.resume(); \n\t\t\t}          \n\t\t\tdelay(100);\n\t\t}\n\t} irReceiverTask;\n\t\n\tvoid setup() {\n\t\tirReceiverTask.setPriority(1);\n\t\tirReceiverTask.setStackSize(4096);\n\t\tirReceiverTask.start();\n\t}\n\t\n\tvoid loop() {\n\t}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkazimoto%2Ftaskesp32","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmkazimoto%2Ftaskesp32","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkazimoto%2Ftaskesp32/lists"}