{"id":15356335,"url":"https://github.com/workplacex/embedded","last_synced_at":"2026-02-04T01:41:22.796Z","repository":{"id":126015658,"uuid":"137386221","full_name":"WorkplaceX/Embedded","owner":"WorkplaceX","description":"Microprocessor Development for IoT Devices","archived":false,"fork":false,"pushed_at":"2018-06-14T21:59:19.000Z","size":470,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-06T21:46:32.725Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/WorkplaceX.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":"2018-06-14T17:01:35.000Z","updated_at":"2018-06-14T21:59:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"31c0211c-b409-44cb-ac4a-de3229421783","html_url":"https://github.com/WorkplaceX/Embedded","commit_stats":{"total_commits":28,"total_committers":2,"mean_commits":14.0,"dds":0.4285714285714286,"last_synced_commit":"f5f3c00550ad86d01ba9ef07898d5d6b9dc04e8b"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/WorkplaceX/Embedded","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WorkplaceX%2FEmbedded","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WorkplaceX%2FEmbedded/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WorkplaceX%2FEmbedded/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WorkplaceX%2FEmbedded/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WorkplaceX","download_url":"https://codeload.github.com/WorkplaceX/Embedded/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WorkplaceX%2FEmbedded/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29063974,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-04T00:26:14.114Z","status":"ssl_error","status_checked_at":"2026-02-04T00:23:06.435Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2024-10-01T12:28:25.818Z","updated_at":"2026-02-04T01:41:22.777Z","avatar_url":"https://github.com/WorkplaceX.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Embedded Microcontroller\nFollowing article describes how to set up a development environment for IoT microcontroller programming on Windows 10 running Linux Ubuntu 18.04 on Hyper-V.\n\n\u003cimg src=\"Doc/Microcontroller.jpg\" width=\"256\"\u003e\n\n# ESP32 Controller\nThe microcontroller used is \u003ca href=\"https://www.espressif.com/en/products/hardware/esp32-devkitc/overview\"\u003eESP32\u003c/a\u003e available for about 5.00 USD - 10.00 USD\n\nSee also: \n* ESP32 hardware manufacturer \u003ca href=\"https://www.espressif.com/\"\u003e(espressif.com)\u003c/a\u003e\n* ESP IDF development framework \u003ca href=\"https://github.com/espressif/esp-idf\"\u003e(github.com)\u003c/a\u003e\n* Technical documentation \u003ca href=\"https://esp-idf.readthedocs.io/en/latest/\"\u003e(readthedocs.io)\u003c/a\u003e\n\n# Setup Serial Communication\nFirst we need to establish serial communication between ESP32 controller and Windows 10. For this connect ESP32 with Windows 10 over USB cable.\n\nInstall this driver:\n\u003ca href=\"https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers\"\u003eUSB to UART Driver (silabs.com)\u003c/a\u003e as described here: \u003ca href=\"https://esp-idf.readthedocs.io/en/latest/get-started/establish-serial-connection.html\"\u003e(readthedocs.io)\u003ca/\u003e\n\nOpen Windows Device Manager and configure baud to 115200. It should look like this:\n\n\u003cimg src=\"Doc/DeviceManager.png\" width=\"256\"\u003e\n\nFor a further test type \"mode\" into Windows command prompt.\n\n\u003cimg src=\"Doc/Mode.png\" width=\"256\"\u003e\n\nOn Windows use for example Putty \u003ca href=\"https://putty.org/\"\u003e(putty.org)\u003c/a\u003e to connect to device.\n\n\u003cimg src=\"Doc/Putty.png\" width=\"256\"\u003e\n\nSuccesful connection with a new ESP32 will look like this:\n\n\u003cimg src=\"Doc/PuttyESP32.png\" width=\"256\"\u003e\n\nPress the ESP32 \"EN\" button to retrigger serial output. For location of \"EN\" button see: \u003ca href=\"http://esp-idf.readthedocs.io/en/latest/get-started/get-started-devkitc.html\"\u003e(readthedocs.io)\u003c/a\u003e\n\n# Setup Ubuntu\nMake sure Hyper-V is enabled on Windows.\n\n\u003cimg src=\"Doc/HyperVEnable.png\" width=\"256\"\u003e\n\nDownload Ubuntu 18.04 LTS iso from \u003ca href=\"https://www.ubuntu.com/download/desktop\"\u003e(ubuntu.com)\u003c/a\u003e\n\nInstall virtual machine with Ubuntu\n* Generation 1\n* Assign at least 2048 MB memory\n* Select operating system (downloaded iso: ubuntu-18.04-desktop-amd64.iso)\n* Increase \"Virtual Processors\" up to 4\n* Start virtual machine\n* Select \"Install Ubuntu\"\n* Select \"Minimal installation\"\n\nIn order to run Ubuntu on Windows in full screen install from Ubuntu terminal XRDP\n\n```\n~$ sudo apt-get install xrdp\n```\n\nGet IP address. Install first \n\n```\n~$ sudo apt-get install net-tools\n```\n\nNow get IP address like this\n\n```\n~$ ifconfig\n```\n\n* Remember IP Address and logout.\n* Open Windows 10 Remote Desktop \n\n\u003cimg src=\"Doc/RDS.png\" width=\"256\"\u003e\n\n* Login to Ubuntu XRDP\n\n\u003cimg src=\"Doc/XRDPLogin.png\" width=\"256\"\u003e\n\n* The following error (Authentication Required to create color managed device) you can cancel away\n\n\u003cimg src=\"Doc/XRDPAuthentication.png\" width=\"256\"\u003e\n\n# Establish Serial Communication between Windows 10 and Ubuntu 18.04\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworkplacex%2Fembedded","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fworkplacex%2Fembedded","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworkplacex%2Fembedded/lists"}