防疫測溫一體(tǐ)機配置說明(míng)

1、登錄防疫自主注冊地址 http://health.huidar.com/akm/loginViews 注冊賬号

2、注冊成功後,點擊跳(tiào)轉,使用注冊的賬号進行(xíng)登錄

3、健康碼配置

  1. 1、點擊防疫管理(lǐ)-檢查站(zhàn)點配置,将健康碼所需配置參數(shù)填寫完全

4、設備配置

  1. 1、點擊測溫防疫一體(tǐ)機,
  2. 2、增加設備,填寫設備序列号(設備界面上(shàng)有(yǒu)),點擊保存
  3. 3、使用浏覽器(qì)登錄設備管理(lǐ)後台,地址為(wèi):http://設備IP地址:8090
  4. 4、在參數(shù)配置中選擇回調模式:
  5. 掃碼回調地址:http://health.huidar.com/akm/qrcode
  6. 事件回調地址:http://health.huidar.com/akm/idcard
  7. 接口超時(shí)時(shí)間(jiān):10秒(miǎo)
  8. 打開(kāi):快速通(tōng)行(xíng)、測溫、掃碼、人(rén)證核驗、照片上(shàng)傳
  9. 關閉:核酸、疫苗、行(xíng)程碼、刷身份證模式、陌生(shēng)人(rén)識别

5、調整識别阈值

  1. 修改腳本內(nèi)容,執行(xíng)阈值調整腳本
  2. import requests
  3. # todo 将ip改為(wèi)人(rén)臉機IP,然後運行(xíng)程序
  4. ip = "192.168.1.149"
  5. headers = {
  6. "Content-Type": "application/x-www-form-urlencoded"
  7. }
  8. resposne = requests.post(url=f"http://{ip}:8090/device/setIdentifyModel", headers=headers,json={
  9. "pass":"12345678",
  10. "config":{
  11. "recCardFaceValue": "5"
  12. }
  13. })
  14. print(resposne.json())