zoukankan      html  css  js  c++  java
  • 智能儿童玩具

    1.数据采集  音频采集

    2.内容图文列表 (跟dom对象实现)

    3.内容播放页面 plus.audio.createPlayer(path)  参考h5plus

    4.模拟一个web玩具

    5.通过websocket将音频发送至玩具端
         app发送{msg:'filename'}
     web端接收
    6.用户数据校验  - 注册登录
      密文存储 md5.js 前端加密  hex_md5(pwd)
      user_dict = request.form.to_dict()
      app: window.localstorage.setItem("user",'string') 登录缓存
                        window.localstorage.getItem("user")
           window.localstorage.removeItem("user")

    7.扫码 plus.barcode.Borcode('标签id')  #此标签一定要指定大小

    8.制作二维码

    9.扫码绑定
      1.设备id不合法  goaway
      2.设备id合法
        1.设备id未绑定  进入绑定流程
        2.设备id已经绑定  进入添加好友流程 app+玩具  玩具+玩具
    10.绑定流程:

       1. 创建玩具
       {玩具属性,玩具_id}
     2.绑定 指向用户(bind_user: 用户id)

     3.双方加好友

    11.玩具开机:
      1.发送设备id 
        1.设备id不合法  goaway
        2.设备id合法
          1.设备已经绑定   拿到toy_id  建立 websocket
          2.设备未绑定  提醒绑定

    12.多玩具遥控 mpop 弹出菜单

    13.聊天,语音消息
       app:chat-window -微信对话框
        录音:plus.audio.getRecorder()
        录音在哪?{filename:'_doc/audio/',format:'amr'
        录音怎么发送给玩具? 
        录音上传至服务器 并转化成MP3
        ws.send() 到玩具 == 遥控器 - 音乐- 语音消息

       web:
        怎么收录音  语音消息 
        收到消息做什么

    14.离线未读神坑

  • 相关阅读:
    PAT 甲级 1040 Longest Symmetric String
    POJ 1276 Cash Machine
    #Leetcode# 349. Intersection of Two Arrays
    #Leetcode# 922. Sort Array By Parity II
    【USACO题库】3.1.2 Score Inflation总分
    【USACO题库】3.4.4 Raucous Rockers“破锣摇滚”乐队
    【USACO题库】3.4.2 American Heritage美国血统
    【USACO题库】3.3.5 A Game游戏
    【USACO题库】3.3.4 Home on the Range家的范围
    【USACO题库】3.3.1 Riding the Fences骑马修栅栏
  • 原文地址:https://www.cnblogs.com/Lucifer77/p/10680847.html
Copyright © 2011-2022 走看看