24_connectWiFi.py 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. #!/usr/bin/env python
  2. #version : 2024.03.07
  3. #language : en
  4. from maix import camera, display, zbar, image
  5. import socket
  6. import os
  7. import sys
  8. sys.path.append('/root/')
  9. import http.client
  10. from CocoPi import BUTTON
  11. import time
  12. import ssl
  13. ssl._create_default_https_context = ssl._create_unverified_context
  14. key_A = BUTTON(14)
  15. key_B = BUTTON(8)
  16. key_C = BUTTON(13)
  17. key_D = BUTTON(7)
  18. ScreenOrientation = False
  19. image.load_freetype("/root/preset/fonts/CascadiaCodePL-Italic.ttf")
  20. camera.camera.config(size=(320,240))
  21. def lcdRotation(inputImg,rotationAngle):
  22. from maix import image
  23. imageRotationBuffer = inputImg.crop(0, 0, 240, 320)
  24. if ScreenOrientation:
  25. imgRotationAim = image.new(size = (240, 320))
  26. else:
  27. imgRotationAim = image.new(size = (320, 240))
  28. return imgRotationAim.draw_image(imageRotationBuffer.rotate(rotationAngle, adjust=1),0,0,alpha=1)
  29. def getPublicIp():
  30. import requests
  31. url = 'https://myip.ipip.net'
  32. res = requests.get(url).text.split(" ")
  33. return res[1][3:]
  34. if ScreenOrientation:
  35. CAMERAROTATE = +180
  36. else:
  37. CAMERAROTATE = +90
  38. def getNetworkDate_noexit():
  39. global getDateNum
  40. try:
  41. coon = http.client.HTTPConnection('www.baidu.com')
  42. coon.request("GET","/")
  43. r = coon.getresponse()
  44. ts = r.getheader('date')
  45. GMT_time = time.strptime(ts[5:25],"%d %b %Y %H:%M:%S")
  46. BeiJing_time = time.localtime(time.mktime(GMT_time) + 8*60*60)
  47. format_time = time.strftime("%Y-%m-%d %H:%M:%S",BeiJing_time)
  48. command = "date -s "+"\"{}\"".format(format_time)
  49. os.system(command)
  50. getDateNum = 1
  51. # sys.exit()
  52. except:
  53. pass
  54. def getWifiConnectState():
  55. cmd = "wifi_get_connection_info_test 1"
  56. res = os.popen(cmd).read()
  57. wifiInfo = {}
  58. if res.find('get connection infomation successfully!') != -1:
  59. wifiInfo["state"]=True
  60. wifiInfo["AP"] = res[res.find("Connected AP: ")+13:res.find("IP address: ")-1]
  61. wifiInfo["IP"] = res[res.find("IP address: ")+12:res.find("frequency")-1]
  62. wifiInfo["frequency"] = res[res.find("frequency: ")+10:res.find("RSSI")-1]
  63. wifiInfo["RSSI"] = res[res.find("RSSI: ")+6:res.find("link_speed")-1]
  64. wifiInfo["link_speed"] = res[res.find("link_speed: ")+10:res.find("IP address: ")-1]
  65. wifiInfo["noise"] = res[res.find("noise: ")+6:res.find("noise: ")+11]
  66. else:
  67. wifiInfo["state"]=False
  68. wifiInfo["AP"] = "N/A"
  69. wifiInfo["IP"] = "N/A"
  70. wifiInfo["frequency"] = "N/A"
  71. wifiInfo["RSSI"] = "N/A"
  72. wifiInfo["link_speed"] = "N/A"
  73. wifiInfo["noise"] = "N/A"
  74. return wifiInfo
  75. def getPrivateIp():
  76. import os
  77. cmd="ifconfig"
  78. rec=os.popen(cmd).read()
  79. IP=print(rec[[rec.find("inet addr:192.")+10:rec.find(" Bcast:192.")])
  80. return IP
  81. ssidInfo = ""
  82. passwordInfo = ""
  83. checkConnectState = False
  84. connectText = ""
  85. startConnect=False
  86. wifiConnectState = False
  87. # PublicIp=""
  88. PrivateIP=""
  89. runConnectSig=True
  90. connectSuccessSig=False
  91. while True:
  92. canvas = camera.capture()
  93. IP = getPrivateIp()
  94. if ssidInfo!="" and passwordInfo!="":
  95. startConnect=True
  96. #connectText = "Waitting for Connection..."
  97. #canvas.draw_string(10,40, ssidInfo+" "+str(len(ssidInfo))+" "+str(type(ssidInfo)), scale = 1.5, color = (0,0,0), thickness = 1)
  98. canvas.draw_string(10,50, "Waitting for Connection...", scale = 1.5, color = (0,0,0), thickness = 1)
  99. display.show(canvas)
  100. if startConnect==True:
  101. canvas_1 = image.new(size = (320, 320), color = (255,255,255), mode = "RGB")
  102. canvas.draw_image(canvas_1,0,0, alpha=0.4)
  103. if wifiConnectState == True:
  104. if key_B.is_pressed():
  105. while (key_B.is_pressed() == True):
  106. time.sleep(0.001)
  107. startConnect= False
  108. connectText = ""
  109. checkConnectState = False
  110. connectSuccessSig = False
  111. wifiConnectState = False
  112. runConnectSig== True
  113. ssidInfo=""
  114. passwordInfo=""
  115. if checkConnectState == True:
  116. if connectSuccessSig == False:
  117. # PublicIp=getPublicIp()
  118. PrivateIP=getPrivateIp()
  119. connectSuccessSig = True
  120. connectText = "WiFi connection is successful"
  121. # canvas.draw_string(10,80, "PrivateIP :" + PublicIp, scale = 1.5, color = (0,0,0), thickness = 1)
  122. canvas.draw_string(10,80, "PrivateIP :" + PrivateIP, scale = 1.5, color = (0,0,0), thickness = 1)
  123. canvas.draw_image((image.open("/root/preset/img/restart_ff0000_24x24.png")).rotate(0, adjust=0),8,216,alpha=1)
  124. ssidInfo=""
  125. passwordInfo=""
  126. else:
  127. pass
  128. else:
  129. if checkConnectState == False:
  130. os.system("wifi_disconnect_ap_test")
  131. os.system('wifi_connect_chinese_ap_test '+ssidInfo+' '+passwordInfo+'')
  132. wifiConnectState=getWifiConnectState()["state"]
  133. checkConnectState = True
  134. if checkConnectState == True:
  135. if key_B.is_pressed():
  136. while (key_B.is_pressed() == True):
  137. time.sleep(0.001)
  138. startConnect= False
  139. connectText = ""
  140. checkConnectState = False
  141. connectSuccessSig = False
  142. wifiConnectState = False
  143. runConnectSig== True
  144. passwordInfo = ""
  145. ssidInfo = ""
  146. else:
  147. if runConnectSig== True:
  148. connectText = "Waitting for Connection..."
  149. runConnectSig= False
  150. else:
  151. passwordInfo = ""
  152. ssidInfo = ""
  153. connectText = "WiFi connection is failed"
  154. canvas.draw_image((image.open("/root/preset/img/restart_ff0000_24x24.png")).rotate(0, adjust=0),8,216,alpha=1)
  155. canvas.draw_string(10,50, connectText, scale = 1.5, color = (0,0,0) , thickness = 1)
  156. else:
  157. mks = canvas.find_qrcodes()
  158. for mk in mks:
  159. #外框数据
  160. X = mk['x']
  161. Y = mk['y']
  162. W = mk['w']
  163. H = mk['h']
  164. #二维码信息
  165. string = mk['payload']
  166. codeData = string.split(";")
  167. ssidInfo = codeData[0].split(":")[1]
  168. passwordInfo = codeData[1].split(":")[1]
  169. #画外框
  170. canvas.draw_rectangle(X, Y, X + W, Y + H, color=(0, 0, 255), thickness = 2)
  171. #打印信息
  172. canvas.draw_string(int(X) , int(Y - 45) , "SSID:"+ssidInfo, scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  173. canvas.draw_string(int(X) , int(Y - 25) , "PASSWORD:"+passwordInfo, scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  174. canvas.draw_image((image.open("/root/preset/img/exit_ff0000_24x24.png")).rotate(0, adjust=0),288,216,alpha=1)
  175. #canvas.draw_image((image.open("/root/preset/img/camera_bfbfbf_24x24.png")).rotate(0, adjust=0),292,2,alpha=1)
  176. display.show(canvas)