2022-03-15
Day planner The especially things I have to do today have the following 背单词 寻找电源解决方案 Today’s footprints and insights 今天完成了中期考核之后,感觉有点不想动,一口气又买了两百多的零件和两百多的服务器。希望早日找老师报销,穷。 ...
Day planner The especially things I have to do today have the following 背单词 寻找电源解决方案 Today’s footprints and insights 今天完成了中期考核之后,感觉有点不想动,一口气又买了两百多的零件和两百多的服务器。希望早日找老师报销,穷。 ...
Day planner The especially things I have to do today have the following 背单词 今天初步完成了单个传感器的联调,包括传感器,网络,服务器,网页。 从php中操作数据库 将数据库导出为csv文件 Today’s footprints and insights 今天是具有里程碑意义的一天,成就感超级满! ...
在php中数据库插入错误,一般是sql语句中参数不正确,或者参数对应的类型不正确。 1 2 3 4 5 6 $sql = "INSERT INTO SensorData (id, sensor, coords, value1, value2, value3) VALUES ('$id','$sensor', '$coords', '$value1', '$value2', '$value3')"; if ($conn->query($sql) === TRUE) { echo "New record created successfully"; } else { echo "Error: " . $sql . "<br>" . $conn->error; } 另外在使用dht传感器的过程中,出现ETIMEOUT错误,一般是引脚插错,重新检查换用其他引脚,我这个板子目前只有1号引脚可以正常使用。 ...
Day planner The especially things I have to do today have the following 单词还没有背呢 Today’s footprints and insights 今天用ESP32搭建了一个网络服务器,截图如下。 吃不下还努力吃了很多
不能再长吁短叹了,向前看向前看,加油加油加油!
今天还冲印了照片,只能上传缩略图,不知道效果咋样。
汇编指令 助记符 英文注释 功能 1 MOV MOVe 传送 2 MOVC MOVe Code 代码传送 3 PUSH PUSH 压栈 4 POP POP 退栈 5 XCH eXCHange 交换 6 XCHD eXCHange Decimal 十进制交换 7 ADD ADD 加 8 ADDC ADD with Carry 带进位加 9 SUBB SUBbtract with Borrow 带进位减 10 INC INCrement 增量 11 DEC DECrement 减量 12 MUL MULtiply 乘 13 DIV DIVide 除 14 DA Decimal Adjust 十进制调整 15 ANL Logical And 逻辑与 16 ORL Logical OR 逻辑或 17 XRL Logical eXclusive oR 逻辑异或 18 CPL ComPLement 求补 19 CLR CLeaR 清除 20 SETB SET Bit 置位 21 RL Rotate Left 循环左移 22 RR Rotate Right 循环右移 23 RLC Rotate Left through the Carry flag 带进位循环左移 24 RRC Rotate Right through the Carry flag 带进位循环右移 25 SWAP SWAP (半字节)互换 26 AJMP Absolute JuMP 绝对转移 27 LJMP Long JuMP 长跳转 28 SJMP Short JuMP 短转移 29 JMP JuMP 跳转 30 JZ Jump if acc is Zero 累加器为零转移 31 JNZ Jump if acc is Not Zero 累加器不为零转移 32 JC Jump if Carry(if Cy=1) 进位位为1转移 33 JNC Jump if Not Carry(if Cy=0) 进位位为0转移 34 JB Jump if Bit is set(if Bit=1)指定位为1转移 35 JNB Jump if Not Bit(if Bit=1)指定位为0转移 36 JBC Jump if Bit is set and Clear bit 指定位等于1转移并清该位 37 CJNE Compare and Jump if Not Equal 比较不相等转移 38 DJNZ Decrement and Jump if Not Zero 减1不为0转移 39 ACALL Absolute CALL 绝对调用 40 LCALL Long CALL 长调用 41 RET RETurn 子程序返回 42 RETI RETurn from Interrupt 中断返回 43 NOP No OPeration 空操作 ...