{"id":25863846,"url":"https://github.com/mytechnotalent/iptc","last_synced_at":"2026-05-11T11:42:02.682Z","repository":{"id":279813282,"uuid":"940066994","full_name":"mytechnotalent/iptc","owner":"mytechnotalent","description":"IoT Pico W TLS Client based on the pico_examples tls_client example by the Raspberry PI foundation.","archived":false,"fork":false,"pushed_at":"2025-02-27T15:12:51.000Z","size":1372,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-27T21:40:41.562Z","etag":null,"topics":["iot","iot-application","iot-device","iot-framework","iot-platform","pico","picow","raspberry-pi","raspberry-pi-pico","raspberry-pi-pico-rp2040","raspberry-pi-pico-sdk","raspberry-pi-pico-w","raspberrypi"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mytechnotalent.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}},"created_at":"2025-02-27T15:03:59.000Z","updated_at":"2025-02-27T15:14:47.000Z","dependencies_parsed_at":"2025-02-27T21:40:45.816Z","dependency_job_id":"63ee6a06-c7dd-40cb-84a6-2d276bd3b8db","html_url":"https://github.com/mytechnotalent/iptc","commit_stats":null,"previous_names":["mytechnotalent/iptc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mytechnotalent/iptc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2Fiptc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2Fiptc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2Fiptc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2Fiptc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mytechnotalent","download_url":"https://codeload.github.com/mytechnotalent/iptc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2Fiptc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286079811,"owners_count":27282121,"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-11-26T02:00:06.075Z","response_time":193,"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":["iot","iot-application","iot-device","iot-framework","iot-platform","pico","picow","raspberry-pi","raspberry-pi-pico","raspberry-pi-pico-rp2040","raspberry-pi-pico-sdk","raspberry-pi-pico-w","raspberrypi"],"created_at":"2025-03-02T00:26:44.512Z","updated_at":"2026-05-11T11:42:02.662Z","avatar_url":"https://github.com/mytechnotalent.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"![image](https://github.com/mytechnotalent/iptc/blob/main/iptc.png?raw=true)\n\n## FREE Reverse Engineering Self-Study Course [HERE](https://github.com/mytechnotalent/Reverse-Engineering-Tutorial)\n\n\u003cbr\u003e\n\n# IoT Pico W TLS Client\nIoT Pico W TLS Client based on the pico_examples tls_client example by the Raspberry PI foundation.\n\n\u003cbr\u003e\n\n### STEP 1: rename `wifi_creds.template` to `wifi_creds.h` and fill in your SSID and password\n\n### SOURCE\n```c\n/////////////////////////////////////////////////////////////////////\n// Project: Raspberry Pi Pico TLS Client Application\n// Author: Kevin Thomas\n// E-Mail: ket189@pitt.edu\n// Version: 1.0\n// Date: 02/26/25\n// Target Device: Raspberry Pi Pico W (RP2040)\n// Clock Frequency: (Depends on your board, e.g., 125 MHz)\n// Toolchain: CMake, pico-sdk, ARM-none-eabi-gcc\n// License: Apache License 2.0\n// Description: This application initializes standard I/O and Wi‑Fi,\n//              then runs the TLS client test which connects securely\n//              to a specified server and sends an HTTP request.\n//              It utilizes the common TLS client functions provided \n//              in tls_common.h/tls_common.c.\n/////////////////////////////////////////////////////////////////////\n\n #include \"pico/stdlib.h\"\n #include \"pico/cyw43_arch.h\"\n #include \"wifi_creds.h\"\n #include \u003cstdio.h\u003e\n #include \"tls_common.h\"\n \n #define TLS_CLIENT_SERVER        \"worldtimeapi.org\"\n #define TLS_CLIENT_HTTP_REQUEST  \"GET /api/ip HTTP/1.1\\r\\n\" \\\n                                  \"Host: \" TLS_CLIENT_SERVER \"\\r\\n\" \\\n                                  \"Connection: close\\r\\n\" \\\n                                  \"\\r\\n\"\n #define TLS_CLIENT_TIMEOUT_SECS  15\n \n int main(void) {\n     stdio_init_all();\n \n     if (cyw43_arch_init()) {\n         printf(\"failed to initialise\\n\");\n         return 1;\n     }\n     cyw43_arch_enable_sta_mode();\n \n     if (cyw43_arch_wifi_connect_timeout_ms(WIFI_SSID, WIFI_PASSWORD, CYW43_AUTH_WPA2_AES_PSK, 30000)) {\n         printf(\"failed to connect\\n\");\n         return 1;\n     }\n     bool pass = run_tls_client_test(NULL, 0, TLS_CLIENT_SERVER, TLS_CLIENT_HTTP_REQUEST, TLS_CLIENT_TIMEOUT_SECS);\n     if (pass) {\n         printf(\"test passed\\n\");\n     } else {\n         printf(\"test failed\\n\");\n     }\n     /* Sleep a bit to allow USB stdio to flush buffers */\n     sleep_ms(100);\n \n     cyw43_arch_deinit();\n     printf(\"all done...\\n\");\n     return pass ? 0 : 1;\n }\n```\n\n\u003cbr\u003e\n\n# License\n[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmytechnotalent%2Fiptc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmytechnotalent%2Fiptc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmytechnotalent%2Fiptc/lists"}