micropython中使用rtc设置时间
micropython中使用rtc设置时间from machine import RTC rtc = RTC() rtc.datetime((2017, 8, 23, 1, 12, 48, 0, 0)) # set a specific date and time print(rtc.datetime(...
python编写的简单http请求和应答
响应(服务端)import machine import socket pins = [machine.Pin(i, machine.Pin.IN) for i in (0, 2, 4, 5, 12, 13, 14, 15)] adc = machine.ADC(0) html = &quo...
Deepin Linux修复grub引导
环境说明:一直使用的是Win7+Deepin 15.5。后来全新安装了Win 10,需要修复grub第一步:在Windows操作系统下使用深度官方的U盘启动制作器 制作U盘第二步:开机U盘启动进入Deepin linux安装界面,待进入到安装界面选择语言时,按住Crtl+Alt+F2/F1进入Linux tty终端。并执行以下命令完成修复sudo fdisk -l/*根据查询结果确定deepin 的/目录和/boot目录所在的分区编号*/sudo mount&nbs...
Qt5.x移植后的环境配置
环境配置脚本如下#!/bin/sh export QTDIR=/usr/lib/qt5 export QT_QPA_PLATFORM_PLUGIN_PATH=$QTDIR/plugins export QT_QPA_PLATFORM=eglfs:fb=/dev/fb0 export QT_QPA_GENERIC_PLUGINS=evdevtouch:/dev/input/event1 export QT_QPAFONTDIR=/usr/...
获取windows所有进程完整命令行小技巧
命令行输入:WMIC /OUTPUT:C:\ProcessList2.txt path win32_process get Caption,Processid,Commandline...
关于C语言中回调函数的学习
先上学习代码:#include "stdio.h" int my_cb1(int x){ x++; printf("my_cb1执行了,x:%d\n",x); x++; return x; } void&nbs...
Arduino CNC Shield V3.XX - 装配指南
这是一个帮助组装Arduino CNC Shield V3.XX的快速指南。我们还有一个讨论论坛:http://forum.protoneer.co.nz/viewforum.php?f = 6内容:对于Grbl v0.9和v1.1 +默认版本:(注意:Z-limit在D12上,主轴使能引脚在D11上使用硬件PWM。)对于禁用可变主轴的Grbl v0.8和v0.9 +,Z-limit移至D11,主轴启用至D12。这通常是为了在旧电路板上向后兼容。对于激光模式,使用的引脚与主轴(PIN 11)相同...
GRBL v1.1版本的限位开关连接
GRBL v1.1版本的限位开关连接wiki翻译Wiring Limit SwitchesSource websit:https://github.com/gnea/grbl/wiki/Wiring-Limit-SwitchesThe limit switchesare used to detect the physical limits of the working area and to position thehead in initial posi...