1.删除docker 2. 安装docker Read More
posted @ 2019-04-24 15:35 kekemuyu Views(407) Comments(0) Diggs(0) Edit
1.完整源码: 主函数oled.py 字体包font.py 2. esp硬件spi接线 oled esp32 GND GND VCC VCC D0 P0(SCK) D1 P2(MOSI) RES P18(RST) DC P27(DC) CS P26(CS) 3. 汉字取模 使用工具PCtoLCD20 Read More
posted @ 2019-02-26 20:50 kekemuyu Views(10331) Comments(0) Diggs(0) Edit
在debug状态,打开run下的add watch就可以添加需要查看的变量,可以各种格式显示非常方便 Read More
posted @ 2019-01-22 16:16 kekemuyu Views(827) Comments(0) Diggs(0) Edit
晶振32.768K 电压 电流 1.82 10ua 2.00 15ua 2.5 28ua 3.3 130ua Read More
posted @ 2019-01-21 15:59 kekemuyu Views(334) Comments(0) Diggs(0) Edit
正常使用IO0置空即可。烧录时需要en引脚接高电平,IO0接地,使用乐鑫的烧录工具烧录即可。注意如果启用wifi,供电一定要不小于500ma,普通的usb转ttl模块无法满足wifi启动的,被坑的好惨。 Read More
posted @ 2019-01-12 15:45 kekemuyu Views(9814) Comments(0) Diggs(0) Edit
假定当期日期为:2011-08-01 15:00:00 now - 1 :代表前一天的日期 返回值:2011-07-31 15:00:00 now - 1/3 :代表8小时前 返回值:2011-08-01 07:00:00 now - 1/12 :代表2小时前 返回值:2011-08-01 13:0 Read More
posted @ 2019-01-10 17:26 kekemuyu Views(437) Comments(0) Diggs(0) Edit
update table1 set field1=table2.field1,field2=table2.field2from table2where table1.id=table2.id Read More
posted @ 2018-12-17 16:21 kekemuyu Views(1687) Comments(0) Diggs(0) Edit
ip设置格式xx.xx.xx.xx,port ip和端口号之间是逗号 Read More
posted @ 2018-11-30 12:47 kekemuyu Views(546) Comments(0) Diggs(0) Edit
有时表中字段有更新,dbgrid无法显示表中字段。 解决办法: 1.adoquery断开 2. dbgrid字段全部删除 3.adoquery打开 4.dbgrid选择全部字段 Read More
posted @ 2018-11-29 23:14 kekemuyu Views(255) Comments(0) Diggs(0) Edit
with类中的变量和外部变量如果重名,会将外部变量覆盖,这点需要注意!!!!! Read More
posted @ 2018-11-22 15:51 kekemuyu Views(388) Comments(0) Diggs(0) Edit