首页 > TAG信息列表 > demos

立体质感的按钮

  效果:  http://atomstudio.cn/demos/btn_niunai/   效果制作工具: https://pan.baidu.com/s/1HcAxBCm1UFd9Df4ClzAsQA?pwd=e8yp

【物联网初探】- 04 - ESP32 结合 LVGL 库开发环境搭建 (Arduino IDE)

文章目录 1. 硬件配置1.1 ESP32 + TFT 彩屏1.2 触摸屏的参数标定1.3 参考资料 2. LVGL 开发环境2.1 LVGL 在 Arduino 中安装2.2 配置 LVGL 参数头文件 lv_conf.h2.3 测试 LVGL 基本例程 3. 简洁版 lvgl 配置流程 (Arduino) 1. 硬件配置 1.1 ESP32 + TFT 彩屏 本篇中的

docker demos

换sources vi /etc/apt/sources.list deb https://mirrors.aliyun.com/debian/ bullseye main non-free contrib deb-src https://mirrors.aliyun.com/debian/ bullseye main non-free contrib deb https://mirrors.aliyun.com/debian-security/ bullseye-security main deb-s

PyWebIO - Write interactive web app in script way.

Shell IO https://tecadmin.net/prompt-user-input-in-linux-shell-script/# Take Input on Termianl Let’s begin with input directly on terminal. Open a terminal on your system and type: read x Here read is the Linux command and “x” is the variable, where in

共享文件夹、网络映射到本地(同一局域网下)

注意,在同一局域网内实现共享访问。 电脑A(IP 192.168.1.100)的Demos文件夹共享出去。 电脑B(IP 192.168.1.200)访问电脑A的Demos文件夹。 1、电脑A上操作 2、电脑B上操作 输入电脑A的IP,注意 \\ 之后,就可以在本地电脑上看到像C盘、D盘一样的盘符了,双击就可以访问。

编写脚本运行目标检测程序(基于openvino+二代神经计算棒MYRIAD),不用每次单独激活openvino的运行环境,ps 保存成 .bat 文件

@echo offcd "C:\Program Files (x86)\IntelSWTools\openvino\bin" && call setupvars.batecho openvino setupvars over :: 以下是运行目标检测程序测试的脚本 @echo onpython "C:\Program Files (x86)\IntelSWTools\openvino\deployment_tools\open_model_z

使用foreach之前要判断是否为空

public static void main(String[] args) { List<DemoClass> demos = null; for (DemoClass demo : demos) { System.out.println("123"); } } list.size()>0就行 public static void main(String[] args) {