• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
MKT-porter
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 80 下一页
2020年11月10日
python画图
摘要: 方法1 pyqtgraph 方法2 Matplotlib 阅读全文
posted @ 2020-11-10 23:27 MKT-porter 阅读(106) 评论(0) 推荐(0)
树莓派读取adc数据并且画图显示
该文被密码保护。 阅读全文
posted @ 2020-11-10 16:51 MKT-porter 阅读(0) 评论(0) 推荐(0)
2020年11月5日
Cesium学习笔记0:学习资源
摘要: https://www.bilibili.com/video/av328326137/ https://xiaozhuanlan.com/u/kafeigis 阅读全文
posted @ 2020-11-05 16:39 MKT-porter 阅读(91) 评论(0) 推荐(0)
(经典)python串口通信
该文被密码保护。 阅读全文
posted @ 2020-11-05 01:50 MKT-porter 阅读(5) 评论(0) 推荐(0)
2020年11月4日
Python调用C++dll (window平台)
摘要: 1 创建C++工程生成dll库 编译生成 2pythoN调用dll库 #!/bin/env python # -*- coding: utf-8 -*- import ctypes #获取路径 import os #pathnow=os.getcwd() #获取当前路径 pathnow=os.pat 阅读全文
posted @ 2020-11-04 16:06 MKT-porter 阅读(717) 评论(0) 推荐(0)
树莓派使用adc
摘要: ADS1015 / ADS1115 引脚连接 Connect the ADC to the Pi as follows: ADS1x15 VDD to Raspberry Pi 3.3V ADS1x15 GND to Raspberry Pi GND ADS1x15 SCL to Raspberry 阅读全文
posted @ 2020-11-04 01:24 MKT-porter 阅读(3025) 评论(1) 推荐(0)
2020年11月2日
基于TCP的socket网络传输视频(C++, python)
摘要: https://github.com/lidongxuan/socket_video 阅读全文
posted @ 2020-11-02 22:00 MKT-porter 阅读(706) 评论(0) 推荐(0)
用flask加载静态html模板,并解决路由要加static的问题
摘要: 关键 app = Flask( __name__, template_folder='.', # 表示在当前目录 (myproject/A/) 寻找模板文件 static_folder='', # 空 表示为当前目录 (myproject/A/) 开通虚拟资源入口 static_url_path=' 阅读全文
posted @ 2020-11-02 15:49 MKT-porter 阅读(752) 评论(0) 推荐(0)
2020年11月1日
Node.js(0)学习资源
摘要: https://github.com/waylau/nodejs-book-samples Node.js(3)通信 阅读全文
posted @ 2020-11-01 21:33 MKT-porter 阅读(82) 评论(0) 推荐(0)
Node.js(3)通信
摘要: 第一种 使用ws创建WebSokcet服务器 https://github.com/waylau/nodejs-book-samples 安装 npm install ws 具备了ws包之后,就可以创建WebSocket服务器了。以下是创建服务器的j简单示例: const WebSocket = r 阅读全文
posted @ 2020-11-01 20:05 MKT-porter 阅读(143) 评论(0) 推荐(0)
2020年10月29日
Node.js(2)使用
摘要: 使用1 创建一个服务器 2server.js //require 指令来载入 http 模块,并将实例化的 HTTP 赋值给变量 http var http = require("http"); // http.createServer() 方法创建服务器,并使用 listen 方法绑定 8888 阅读全文
posted @ 2020-10-29 11:06 MKT-porter 阅读(142) 评论(0) 推荐(0)
Node.js(1)win10安装
摘要: 安装nodejs https://juejin.im/post/6844903763312902152 前往「官方下载页面」获取最新的 LTS 版本,当前为 Latest LTS Version: 10.14.1,官方提供了不同平台的安装文件,我们选择 Windows Binary (.zip) 6 阅读全文
posted @ 2020-10-29 10:56 MKT-porter 阅读(149) 评论(0) 推荐(0)
2020年10月24日
修改etc/sudoers,导致系统出现sudo错误
摘要: 解决办法 重启,按ESC进入Ubuntu高级启动选项页面 按e编辑高级启动项 按F10进入高级启动项列表 选择恢复模式(recovery mod) 在出现的几个选项中,上下箭头至root行,按回车,会提示输入密码:输入你的密码 在上述操作之后,就进入了root用户下 chmod 440 /etc/s 阅读全文
posted @ 2020-10-24 19:06 MKT-porter 阅读(355) 评论(0) 推荐(0)
python和sudo python的区别
摘要: 1)解决2(1)中的导入顺序问题 虽然anaconda安装完成后,在~/.bashrc中也设置了 PYTHONPATH和PATH的环境变量,为什么还会在sudo python test.py时出现包导入错误,而在使用python test.py时又是正常的呢?这是因为在使用sudo模式执行程序的时候 阅读全文
posted @ 2020-10-24 18:27 MKT-porter 阅读(559) 评论(0) 推荐(0)
2020年10月21日
Python实现推流直播
摘要: 教程 https://codingchaozhang.blog.csdn.net/article/details/102732555?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2. 阅读全文
posted @ 2020-10-21 21:36 MKT-porter 阅读(6429) 评论(0) 推荐(1)
pix飞控开发(1)
摘要: https://www.ncnynl.com/archives/201810/2628.html 阅读全文
posted @ 2020-10-21 19:57 MKT-porter 阅读(184) 评论(0) 推荐(0)
2020年10月15日
无人机自主降落
摘要: http://theairlab.org/tartanair-dataset/http://theairlab.org/doe/https://www.youtube.com/playlist?list=PLx7a2nFyaGTywyYOnmbbB996GxUrHJTuM 阅读全文
posted @ 2020-10-15 15:23 MKT-porter 阅读(193) 评论(0) 推荐(0)
2020年10月11日
linux常用命令
摘要: 1配置文件加路径 sudo gedit ~/.bashrc 手动粘贴 source /opt/ros/indigo/setup.bash 或者 命令行 echo "source /opt/ros/indigo/setup.bash" >> ~/.bashrc 最后生效 source ~/.bashr 阅读全文
posted @ 2020-10-11 19:59 MKT-porter 阅读(147) 评论(0) 推荐(0)
bebop无人机(1)环境配置和基础开发
摘要: 官网 http://www.parrot.com.cn/ 0 安装好桨叶 1手机APP测试 FreeFlight 6 http://www.parrot.com.cn/server2020/s20205/ 下载APP安装好 手机搜索无人机WIFI 连接Bebop2-xxxx连接设备 2 程序控制 u 阅读全文
posted @ 2020-10-11 19:03 MKT-porter 阅读(523) 评论(0) 推荐(0)
2020年9月29日
停车场
该文被密码保护。 阅读全文
posted @ 2020-09-29 16:41 MKT-porter 阅读(1) 评论(0) 推荐(0)
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 80 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3