Город МОСКОВСКИЙ
00:08:53

Arduino UNO Programming with PlatformIO and DumbDisplay

Аватар
Кодовый переворот
Просмотры:
23
Дата загрузки:
03.12.2023 22:40
Длительность:
00:08:53
Категория:
Обучение

Описание

In this video, I am going to show you how to develop program for Arduino UNO using Visual Studio Code on PlatformIO with DumbDisplay Arduino Library.

For an introduction to DumbDisplay, you may want to watch my previous video Introducing DumbDisplay -- the little helper for Arduino experiments -- Introducing DumbDisplay -- the little helper for Arduino experiments -- https://www.youtube.com/watch?v=QZkhO6jTf0U


Commands to install DDWifiBridge Python module: pip install git+https://github.com/trevorwslee/DDWifiBridge.git

DumbDisplay Arduino Library dependency for PlatformIO project; add to platformio.ini:
lib_deps =
https://github.com/trevorwslee/Arduino-DumbDisplay

VSCode project tasks.json for calling DDWifiBridge as a custom task:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "DDWifiBridge",
"type": "shell",
"command": "python -m DDWifiBridge",
"problemMatcher": []
},
]
}

Link to download picostepmotor.ino -- https://github.com/trevorwslee/Arduino-DumbDisplay/blob/master/projects/picostepmotor/picostepmotor.ino

DumbDisplay Android App -- https://play.google.com/store/apps/details?id=nobody.trevorlee.dumbdisplay

DumbDisplay Arduino Library -- https://github.com/trevorwslee/Arduino-DumbDisplay



-------------------


Sections:

00:00 Introduction
00:30 Install VSCode
01:15 Install PlatformIO (VSCode extension)
02:05 Install Python
03:00 Install DDWifiBridge (Python module)
04:20 Create PlatformIO DumbDisplay sample program
08:20 Thank You

Рекомендуемые видео