首页
统计
壁纸
留言板
友情链接
更多
直播
实用工具
Search
1
浏览器 | 开启Chrome和Edge的多线程下载功能(Parallel downloading)
1,946 阅读
2
给孙小姐的一封情书
544 阅读
3
OpenWRT | 作为 旁路由/单臂路由/透明网关 设置 DDNS
323 阅读
4
LabVIEW | 各版本及开发工具模块下载
319 阅读
5
armUbuntu系统构建
297 阅读
取次花丛懒回顾
默认分类
C#
MySQL
LabVIEW
Java
Android
PHP
Python
handsome
相册
百度地图
嵌入式
嵌入式Ubuntu
I.MX6ULL
linux
Unity
Golang
Rust
OpenHD
教学计划
Search
标签搜索
C#
handsome
Git
动态壁纸
开源
Unity3d
Unity
csharp
Moao
累计撰写
185
篇文章
累计收到
28
条评论
首页
栏目
取次花丛懒回顾
默认分类
C#
MySQL
LabVIEW
Java
Android
PHP
Python
handsome
相册
百度地图
嵌入式
嵌入式Ubuntu
I.MX6ULL
linux
Unity
Golang
Rust
OpenHD
教学计划
页面
统计
壁纸
留言板
友情链接
直播
实用工具
搜索到
185
篇与
的结果
2024-06-18
Python 简单的网页列表文件脚本
功能可控制√是否允许下载√是否允许打包下载文件夹设置忽略文件(规划中。。。)√设置监听地址√设置监听端口代码import argparse from flask import Flask, send_file import os import zipfile app = Flask(__name__) def list_files(startpath, allow_file_download, allow_folder_zip_download, indent=""): file_list = "" for root, dirs, files in os.walk(startpath): level = root.replace(startpath, '').count(os.sep) indent_str = " " * (level) folder_name = os.path.basename(root) if allow_folder_zip_download: file_list += f"{indent}{indent_str}<strong>{folder_name}</strong> <a href='/zipdownload/{root}'><button>Download as ZIP</button></a><br>" else: file_list += f"{indent}{indent_str}<strong>{folder_name}</strong><br>" subindent = " " * (level + 1) for f in files: if allow_file_download: file_list += f"{indent}{subindent}<a href='/download/{os.path.join(root, f)}'>{f}</a><br>" else: file_list += f"{indent}{subindent}{f}<br>" return file_list @app.route('/') def index(): start_path = '.' # Change this to the desired directory file_list = list_files(start_path, args.allow_file_download, args.allow_folder_zip_download) return file_list @app.route('/download/<path:filename>') def download_file(filename): if args.allow_file_download: return send_file(filename, as_attachment=True) else: return "File download is not allowed." @app.route('/zipdownload/<path:folder>') def zip_download(folder): if args.allow_folder_zip_download: folder_name = os.path.basename(folder) zipf = zipfile.ZipFile(f'{folder_name}.zip', 'w', zipfile.ZIP_DEFLATED) for root, dirs, files in os.walk(folder): for file in files: zipf.write(os.path.join(root, file)) zipf.close() return send_file(f'{folder_name}.zip', as_attachment=True) else: return "Folder zip download is not allowed." if __name__ == '__main__': parser = argparse.ArgumentParser(description='Flask App with File Download Options') parser.add_argument('--host', default='0.0.0.0', help='Host address to listen on') parser.add_argument('--port', type=int, default=22222, help='Port to listen on') parser.add_argument('--allow_file_download', action='store_true', default=False, help='Allow file download') parser.add_argument('--allow_folder_zip_download', action='store_true', default=False, help='Allow folder zip download') args = parser.parse_args() app.run(host=args.host, port=args.port)
2024年06月18日
36 阅读
0 评论
0 点赞
此内容被密码保护
加密文章,请前往内页查看详情
2024年06月15日
24 阅读
0 评论
0 点赞
2024-06-13
正点原子 ATK-8266-V1.3 配置记录 (作为服务端,等待连接,AT指令)
正点原子 ATK 8266 配置笔记配置为 Server 端,等待连接 ,并且 以 TCP Server 模式 监听指定端口。设置 WiFi 工作 AP 模式(主机)AT+CWMODE=2响应:OKATK_ESP8266 模块支持 STA/AP/STA+AP 三种工作模式:STA 模式:ESP8266 模块通过路由器连接互联网,手机或电脑通过互联网实现对设备的远程控制。AP 模式:默认模式 ATK_ESP8266 模块作为热点,实现手机或电脑直接与模块通信,实现局域网无线控制。STA+AP 模式:两种模式的共存模式,(STA 模式)即可以通过路由器连接到互联网,并通过互联网控制设备;(AP 模式)也可作为 wifi 热点,其他 wifi 设备连接到模块。这样实现局域网和广域网的无缝切换,方便操作。设置 AP 模式下的参数AT+CWSAP="HandHeldFixedPointWifi","1234567891",6,4响应:OK格式:AT+CWSAP=<ssid>,<pwd>,<ch>,<ecn>指令只有在 AP 模式 开启后有效<ssid>字符串参数,接入点名称 <pwd>字符串参数,密码最长 64 字节 ASCII <ch>通道号 <ecn> - 0 OPEN - 1 WEP - 2 WPA_PSK - 3 WPA2_PSK - 4 WPA_WPA2_PSK查看已接入设备的 IP, MACAT+CWLIF响应:<ip addr>, <mac>这个时候你的 WiFi 模块已经提供了一个局域网,等待其他设备接入即可,可以设置通讯方式了。通信方式可以选择UTP与TCP,都是网络通信的一种方式,只不过协议不同,用处也不一样,详情翻看以往的博客,不再赘述。建立TCP连接启动多连接AT+CIPMUX=1只有当连接都断开后才能更改,如果开启过 server 需要 重启模块响应:OK如果已经处于连接状态,则返回 Link is builded配置为服务器AT+CIPSERVER=1,22222格式:AT+CIPSERVER==<mode>,<port><mode>模式0 关闭 server 模式1 开启 server 模式<port>端口号缺省值为 333响应:OK说明:(1) AT+CIPMUX=1 时才能开启服务器;关闭server模式需要重启(2) 开启 server 后自动建立 server 监听, 当有 client 接入会自动按顺序占用一个连接。获取本地 IP 地址AT+CIFSR响应:+CIFSR:APIP,<IP address> +CIFSR:APMAC,<MAC address> +CIFSR:STAIP,<IP address> +CIFSR:STAMAC,<MAC address>参数说明<IP address>本机目前的 IP 地址 第一行为 AP 下的 IP,第二行为 STA 下的 IP <MAC address>本机目前的 MAC 地址开启透传AT+CIPMODE=1响应:OK出现箭头就可以发送数据了
2024年06月13日
91 阅读
0 评论
0 点赞
2024-06-07
nvm-windows | 管理nodejs版本神器 安装 及 设置国内代理镜像
nvm安装地址:https://github.com/coreybutler/nvm-windows/releases选择红框版本进行下载。nvm安装步骤:运行其中.exe文件第一步 :接受协议第二步:设置node.js默认存放位置,点击下一步第三步:点击安装检查环境变量:打开环境变量,检查用户中是否已经存在如下两个变量,并检查系统变量“PATH”中是否包含:检查nvm是否可用nvm -v如下所示即为成功:设置国内代理nvm 国内镜像源配置阿里云nvm npm_mirror https://npmmirror.com/mirrors/npm/ nvm node_mirror https://npmmirror.com/mirrors/node/腾讯云nvm npm_mirror http://mirrors.cloud.tencent.com/npm/ nvm node_mirror http://mirrors.cloud.tencent.com/nodejs-relea查询可用node.js并安装:查询 node 版本nvm list available返回截图:LTS为长期持续维护版,建议下载第二列中的版本。下载可用的版本举例如下:nvm install 12.15.0切换 node 版本nvm use 12.15.0npm 国内镜像源配置查看当前的镜像源npm get registry设置淘宝镜像源最新地址 淘宝 NPM 镜像站喊你切换新域名啦!npm config set registry https://registry.npmmirror.com切换回官方镜像源(一般不用)npm config set registry https://registry.npmjs.org 检查node和npm可用:node -v npm -v若可用,返回版本号
2024年06月07日
189 阅读
1 评论
0 点赞
2024-06-06
LabVIEW | 各版本及开发工具模块下载
LabVIEW区分32位版、64位版,以及中文版、英文版以及日语、韩语、德语、法语版等。32位的一般没有数字标识,而64位的则为64bit、64、64WinEng这样的标识,64位的目前看只有英文版的,所以大部分的也没有相应的语言版本区分。32位的则会有语言版来区分,英文版一般是ENG,中文版则是CHN、CHI、CHS等,日语版JPN,韩语版KOR,德语版GER,法语版FRE。注意每个版本后面的语言后缀一、LABVIEW链接NI LabVIEW 2012http://download.ni.com/evaluation/labview/ekit/other/downloader/2012LV-64bit.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012LV-WinKor.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW2012Evaluation.dmghttp://download.ni.com/support/softlib/labview/labview_development_system/2012/2012LV-64bit.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012/2012LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012/2012LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012/2012LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012/2012LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012/2012LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012/2012LV-WinKor.exeNI LabVIEW 2012 SP1http://download.ni.com/evaluation/labview/ekit/other/downloader/2012sp1LV-64WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012sp1LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012sp1LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012sp1LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012sp1LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012sp1LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2012sp1LV-WinKor.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW2012sp1Evaluation.dmghttp://download.ni.com/support/softlib/labview/labview_development_system/2012%20SP1/2012sp1LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012%20SP1/2012sp1LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012%20SP1/2012sp1LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012%20SP1/2012sp1LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012%20SP1/2012sp1LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012%20SP1/2012sp1LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2012%20SP1/2012sp1LV-WinKor.exeNI LabVIEW 2013http://download.ni.com/evaluation/labview/ekit/other/downloader/2013LV-64WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2013LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2013LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2013LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2013LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2013LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2013LV-WinKor.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW2013Evaluation.dmghttp://download.ni.com/support/softlib/labview/labview_development_system/2013/2013LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013/2013LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013/2013LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013/2013LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013/2013LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013/2013LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013/2013LV-WinKor.exeNI LabVIEW 2013 SP1http://download.ni.com/evaluation/labview/ekit/other/downloader/2013sp1LV-64WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2013sp1LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2013sp1LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2013sp1LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013%20SP1/2013sp1LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013%20SP1/2013sp1LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013%20SP1/2013sp1LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013%20SP1/2013sp1LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013%20SP1/2013sp1LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013%20SP1/2013sp1LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2013%20SP1/2013sp1LV-WinKor.exeNI LabVIEW 2014http://download.ni.com/evaluation/labview/ekit/other/downloader/2014LV-64WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014LV-WinKor.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW2014Evaluation.dmghttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW%202014%20Evaluation.dmghttp://download.ni.com/support/softlib/labview/labview_development_system/2014/2014LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014/2014LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014/2014LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014/2014LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014/2014LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014/2014LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014/2014LV-WinKor.exeNI LabVIEW 2014 SP1http://download.ni.com/evaluation/labview/ekit/other/downloader/2014sp1LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014sp1LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014sp1LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014sp1LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014sp1LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2014sp1LV-WinKor.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW2014SP1Eval.dmghttp://download.ni.com/support/softlib/labview/labview_development_system/2014%20SP1/2014sp1LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014%20SP1/2014sp1LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014%20SP1/2014sp1LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014%20SP1/2014sp1LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014%20SP1/2014sp1LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014%20SP1/2014sp1LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2014%20SP1/2014sp1LV-WinKor.exeNI LabVIEW 2015http://download.ni.com/evaluation/labview/ekit/other/downloader/2015LV-64WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015LV-WinKor.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW2015-Evaluation.dmghttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW%202015%20SP1%20Evaluation.dmghttp://download.ni.com/support/softlib/labview/labview_development_system/2015/2015LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015/2015LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015/2015LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015/2015LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015/2015LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015/2015LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015/2015LV-WinKor.exeNI LabVIEW 2015 SP1http://download.ni.com/evaluation/labview/ekit/other/downloader/2015sp1LV-64WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015sp1LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015sp1LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015sp1LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015sp1LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015sp1LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2015sp1LV-WinKor.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015%20SP1/2015sp1LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015%20SP1/2015sp1LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015%20SP1/2015sp1LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015%20SP1/2015sp1LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015%20SP1/2015sp1LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015%20SP1/2015sp1LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2015%20SP1/2015sp1LV-WinKor.exeNI LabVIEW 2016http://download.ni.com/evaluation/labview/ekit/other/downloader/2016LV-64WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2016LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2016LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2016LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2016LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2016LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2016LV-WinKor.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW2016Eval.dmghttp://download.ni.com/support/softlib/labview/labview_development_system/2016/2016LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2016/2016LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2016/2016LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2016/2016LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2016/2016LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2016/2016LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2016/2016LV-WinKor.exeNI LabVIEW 2017http://download.ni.com/evaluation/labview/ekit/other/downloader/2017LV-64WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2017LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2017LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2017LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2017LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2017LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2017LV-WinKor.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2017LVMac-Eval.dmghttp://download.ni.com/evaluation/labview/ekit/other/downloader/LabVIEW2017f1-Evaluation.dmghttp://download.ni.com/support/softlib/labview/labview_development_system/2017/2017LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017/2017LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017/2017LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017/2017LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017/2017LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017/2017LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017/2017LV-WinKor.exeNI LabVIEW 2017 SP1http://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-64WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-64WinEng_VIPMfix.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinEng_VIPMfix.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinChn_VIPMfix.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinFre_VIPMfix.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinGer_VIPMfix.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinJpn_VIPMfix.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinKor.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2017%20SP1/2017sp1LV-WinKor_VIPMfix.exeNI LabVIEW 2018http://download.ni.com/evaluation/labview/ekit/other/downloader/2018LV64-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2018LV-WinChn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2018LV-WinEng.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2018LV-WinFre.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2018LV-WinGer.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2018LV-WinJpn.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2018LV-WinKor.exehttp://download.ni.com/evaluation/labview/ekit/other/downloader/2018LV-Mac-Eval.dmghttp://download.ni.com/support/softlib/labview/labview_development_system/2018/2018LV64-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018/2018LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018/2018LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018/2018LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018/2018LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018/2018LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018/2018LV-WinKor.exeNI LabVIEW 2018 SP1http://download.ni.com/support/softlib/labview/labview_development_system/2018%20SP1/f0/2018SP1LV64-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018%20SP1/f0/2018SP1LV-WinEng.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018%20SP1/f0/2018SP1LV-WinChn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018%20SP1/f0/2018SP1LV-WinFre.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018%20SP1/f0/2018SP1LV-WinGer.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018%20SP1/f0/2018SP1LV-WinJpn.exehttp://download.ni.com/support/softlib/labview/labview_development_system/2018%20SP1/f0/2018SP1LV-WinKor.exe二、AVS视觉采集模块 Vision Acquisition SoftwareNI Vision Acquisition Software August 2012 VAS2012.8(2012.08.06):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/August%202012/VAS_August2012.zipNI Vision Acquisition Software February 2013 VAS2013.2(2013.02.27):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/February%202013/VAS_2013_02.exeNI Vision Acquisition Software August 2013 VAS2013.8(2013.08.05):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/August%202013/VAS_2013_08.zipNI Vision Acquisition Software September 2013 VAS2013.9(2013.10.2):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/September%202013/VAS_2013_09.zipNI Vision Acquisition Software February 2014 VAS2014.2(2014.02)http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/February%202014/VAS_2014_02.zipNI Vision Acquisition Software August 2014 f1 VAS2014.8F1(2014.08.27):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/August%202014%20f1/VAS_2014_08_F1.zipNI Linux Real-Time Security Update for CVS-1458RT, CVS-1459RT - November 2014 VAS2014.11(2014.11.03)http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/November%202014%20Security/VAS_SECNOV2014.zipNI Vision Acquisition Software February 2015 VAS2015.2(2015.02.02):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/February%202015/VAS_2015_02.zipUSB3 Vision Patch for CompactRIO and CompactDAQ Targets - May 2015 VAS2015.5 USB3 UPDATE(2015.06.03):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/May%202015%20USB3%20Vision/VAS_USB3MAY2015.exeNI Vision Acquisition Software August 2015 f1 VAS2018.8F1(2015.08.03):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/August%202015/VAS_2015_08_F1.zipNI Vision Acquisition Software February 2016 VAS2016.2(2016.03.8):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/February%202016/VAS_2016_02.zipNI Vision Acquisition Software August 2016 VAS2016.8(2016.08.01):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/August%202016/VAS_2016_08.zipVAS2016 IMAQdx Driver16.01Patch(2016.08.11):http://download.ni.com/support/imaq/pc/vision_acquisition/IMAQdx/IMAQDXDRV1601.exeNI Vision Acquisition Software September 2016 VAS2016.9(2016.10.17):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/September%202016/VAS_2016_09.zipNI Vision Acquisition Software January 2017 VAS2017.1(2017.03.21):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/January%202017/VAS_2017_01.zipNI Vision Acquisition Software May 2017 VAS2017.5(2017.05):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/May%202017/VAS_2017_05.zipNI Vision Acquisition Software 17.1 VAS1710(2017.06.12):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/17.1/VAS1710.zipNI Vision Acquisition Software 17.5 VAS1750(2018.01.23):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/17.5/VAS1750.zipNI Vision Acquisition Software 18.0 VAS1800(2018.05.17):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/18.0/VAS1800.zipNI Vision Acquisition Software 18.5 VAS1850(2018.10.189):http://download.ni.com/support/softlib/vision/Vision%20Acquisition%20Software/18.5/VAS1850.zip三、VDM视觉开发包 VISION Development Module VDM2012:http://download.ni.com/evaluation/labview/ekit/other/downloader/VDM2012.exehttp://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2012/VDM2012.exeVDM2012SP1:http://download.ni.com/evaluation/labview/ekit/other/downloader/VDM2012SP1.exehttp://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2012SP1/VDM2012SP1.exeVDM2013:http://download.ni.com/evaluation/labview/ekit/other/downloader/VDM2013.exehttp://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2013/VDM2013.exeVDM2013SP1:http://download.ni.com/evaluation/labview/ekit/other/downloader/VDM2013SP1.exehttp://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2013SP1/VDM2013SP1.exeVDM2014F1:http://download.ni.com/evaluation/labview/ekit/other/downloader/VISION_2014_F1.exehttp://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2014f1/VISION_2014_F1.exeVDM2014SP1:http://download.ni.com/evaluation/labview/ekit/other/downloader/VISION_2014SP1.exehttp://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2014SP1/VISION_2014SP1.exeVDM2015:http://download.ni.com/evaluation/labview/ekit/other/downloader/VISION_2015.exehttp://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2015/VISION_2015.exeVDM2015SP1:http://download.ni.com/evaluation/labview/ekit/other/downloader/VISION_2015SP1.exeVDM2016:http://download.ni.com/evaluation/labview/ekit/other/downloader/VISION_2016.zipVDM2016F1:http://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2016/VISION_2016_1.zipVDM2016 f1 FPGA Patch(需要2016VDM):http://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2016f1/VISION_2016_F1PATCH.exeVDM2017:http://download.ni.com/evaluation/labview/ekit/other/downloader/VISION_2017.ziphttp://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2017/VISION_2017.zipVDM2017SP1:http://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2017SP1/VISION_2017_SP1.zipVDM2018:http://download.ni.com/evaluation/labview/ekit/other/downloader/VISION_2018.ziphttp://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2018/VISION_2018.zipVDM2018SP1:http://download.ni.com/support/softlib/vision/Vision%20Development%20Module/2018%20SP1/VISION_2018SP1.zip四、VBAI视觉生成器 Vision Builder for Automation InspectionNI Vision Builder for Automated Inspection 2012 VBAI2012(2012.8.29):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2012/VBAI2012.exeNI Vision Builder for Automated Inspection 2012 f1 VBAI2012F1 (2012.12.5) (NI官方压缩包有异常,仅960KB,请不要下载,如有需要2012,请使用VBAI2012或VBAI2012SP1):http://download.ni.com/support/softlib//vision/Vision%20Builder%20for%20Automated%20Inspection/2012f1/VBAI2012f1.zipNI Vision Builder for Automated Inspection 2012 SP1 f2 VBAI2012SP2F2 (2013.6.4):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2012%20SP1%20f2/VBAI2012SP1f2.exeNI Vision Builder for Automated Inspection 2013 VBAI2013 (2013.10.23):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2013/VBAI2013.exeNI Vision Builder for Automated Inspection 2013 SP1 VBAI2013SP1( 2014.5.12):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2013%20SP1/VBAI2013SP1.exeNI Vision Builder for Automated Inspection 2014 VBAI2014(2014.11.3):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2014/VBAI2014.exeNI Vision Builder for Automated Inspection 2014 SP1 VBAI2014SP1 (2015.3.16):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2014%20SP1/VBAI2014SP1.exeNI Vision Builder AI 2014 SP1 f1 VBAI2014SP1 F1更新包,需要VBAI2014SP1 (2015.11.23):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2014%20SP1%20f1/NI_VBAI_2014SP1_F1PATCH.exeNI Vision Builder for Automated Inspection 2015 VBAI2015(2016.3.27):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2015/VBAI_2015.exeNI Vision Builder for Automated Inspection 2015 f1 VBAI2015F1(2016.8.1):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2015%20f1/VBAI_2015F1.exeNI Vision Builder for Automated Inspection 2015 f2 VBAI2015F2 (2017.3.31):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2015%20f2/VBAI_2015F2.zipNI Vision Builder for Automated Inspection 2015 f3 VBAI2015F3 (2017.6.26):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2015%20f3/VBAI_2015F3.zipNI Vision Builder for Automated Inspection 2018 VBAI2018 (2018.6.27):http://download.ni.com/support/softlib/vision/Vision%20Builder%20for%20Automated%20Inspection/2018/VBAI_2018.zip
2024年06月06日
319 阅读
0 评论
0 点赞
1
...
20
21
22
...
37