kindring vor 2 Jahren
Commit
a125f1f214

+ 31 - 0
.eslintrc.js

@@ -0,0 +1,31 @@
+/*
+ * Eslint config file
+ * Documentation: https://eslint.org/docs/user-guide/configuring/
+ * Install the Eslint extension before using this feature.
+ */
+module.exports = {
+  env: {
+    es6: true,
+    browser: true,
+    node: true,
+  },
+  ecmaFeatures: {
+    modules: true,
+  },
+  parserOptions: {
+    ecmaVersion: 2018,
+    sourceType: 'module',
+  },
+  globals: {
+    wx: true,
+    App: true,
+    Page: true,
+    getCurrentPages: true,
+    getApp: true,
+    Component: true,
+    requirePlugin: true,
+    requireMiniProgram: true,
+  },
+  // extends: 'eslint:recommended',
+  rules: {},
+}

+ 14 - 0
.gitignore

@@ -0,0 +1,14 @@
+# Windows
+[Dd]esktop.ini
+Thumbs.db
+$RECYCLE.BIN/
+
+# macOS
+.DS_Store
+.fseventsd
+.Spotlight-V100
+.TemporaryItems
+.Trashes
+
+# Node.js
+node_modules/

+ 19 - 0
app.js

@@ -0,0 +1,19 @@
+// app.js
+App({
+  onLaunch() {
+    // 展示本地存储能力
+    const logs = wx.getStorageSync('logs') || []
+    logs.unshift(Date.now())
+    wx.setStorageSync('logs', logs)
+
+    // 登录
+    wx.login({
+      success: res => {
+        // 发送 res.code 到后台换取 openId, sessionKey, unionId
+      }
+    })
+  },
+  globalData: {
+    userInfo: null
+  }
+})

+ 14 - 0
app.json

@@ -0,0 +1,14 @@
+{
+  "pages":[
+    "pages/index/index",
+    "pages/logs/logs"
+  ],
+  "window":{
+    "backgroundTextStyle":"light",
+    "navigationBarBackgroundColor": "#fff",
+    "navigationBarTitleText": "索尼遥控",
+    "navigationBarTextStyle":"black"
+  },
+  "style": "v2",
+  "sitemapLocation": "sitemap.json"
+}

+ 25 - 0
app.wxss

@@ -0,0 +1,25 @@
+/**app.wxss**/
+.container {
+  height: 100%;
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  justify-content: space-between;
+  /* padding: 200rpx 0; */
+  box-sizing: border-box;
+} 
+
+.custom-info-btn{
+  padding: 5px 25px;
+  width: auto;
+  height: auto;
+  display: flex;
+  justify-content: center;
+  border-radius: 3px;
+  background-color: #7a7777;
+
+}
+.custom-info-btn:active{
+  background-color: #c2b8b8;
+  box-shadow: 1px 1px 5px black;
+}

+ 30 - 0
components/stateLed/stateLed.js

@@ -0,0 +1,30 @@
+// components/led..js
+Component({
+  /**
+   * 组件的属性列表
+   */
+  properties: {
+    color: {
+      type: String,
+      default: "#6cf"
+    },
+    width:{
+      type: Number,
+      default: 10
+    }
+  },
+
+  /**
+   * 组件的初始数据
+   */
+  data: {
+
+  },
+
+  /**
+   * 组件的方法列表
+   */
+  methods: {
+
+  }
+})

+ 3 - 0
components/stateLed/stateLed.json

@@ -0,0 +1,3 @@
+{
+  "component": true
+}

+ 3 - 0
components/stateLed/stateLed.wxml

@@ -0,0 +1,3 @@
+<!--components/led..wxml-->
+<view class="led" style="background-color: {{color}};width:{{width}}px;height:{{width}}px;">
+</view>

+ 5 - 0
components/stateLed/stateLed.wxss

@@ -0,0 +1,5 @@
+/* components/led..wxss */
+.led{
+  border-radius: 50%;
+  border: 1px solid black;
+}

+ 124 - 0
pages/index/index.js

@@ -0,0 +1,124 @@
+// index.js
+// 获取应用实例
+const getBle =  require("../../utils/ble");
+const app = getApp();
+const ble = getBle();
+const connectStateMap = {
+  0: {text:'未连接',color:"red"},
+  1:  {text:'扫描中',color:"greenYellow"},
+  2:  {text:'连接中',color:"#d8e84d"},
+  3:  {text:'已连接',color:"#00ff00"}
+}
+const bleStateEnum = {
+  notConnect: 0,
+  searching: 1,
+  connecting: 2,
+  connected: 3,
+}
+Page({
+  data: {
+    connectStateMap,
+    ble:{
+      state: 0,
+      init: false,
+    },
+    remoteDev:{
+      connect: false,
+      devName: "",
+    },
+    bleDevs:[],// 搜索到的蓝牙设备列表
+    motto: 'Hello World',
+    userInfo: {},
+    hasUserInfo: false,
+    canIUse: wx.canIUse('button.open-type.getUserInfo'),
+    canIUseGetUserProfile: false,
+    canIUseOpenData: wx.canIUse('open-data.type.userAvatarUrl') && wx.canIUse('open-data.type.userNickName') // 如需尝试获取用户信息可改为false
+  },
+  async onShow(){
+    // 初始化蓝牙
+    try {
+      console.log("init ble");
+      await ble.initBle();
+      this.setData({
+        ble: {...this.data.ble,init: true},
+      })
+    } catch (error) {
+      console.log(error);
+      this.setData({
+        ble: {...this.data.ble,init: false},
+      })
+      wx.showModal({
+        title: '初始化蓝牙失败',
+        content: error.errMsg,
+        success (res) {
+          if (res.confirm) {
+            console.log('用户点击确定')
+          } else if (res.cancel) {
+            console.log('用户点击取消')
+          }
+        }
+      })
+    }
+  },
+  // 事件处理函数
+  bindViewTap() {
+    wx.navigateTo({
+      url: '../logs/logs'
+    })
+  },
+  async searchDevice(){
+    console.log("搜索 蓝牙设备");
+    if(!this.data.ble.init){
+      return wx.showModal({
+        title: '蓝牙错误',
+        content: "无法启用蓝牙!!!",
+        success (res) { }
+      })
+    }
+    
+    this.setData({
+      ble: {...this.data.ble,state: 1},
+    })
+  },
+  tapState(){
+    switch(this.data.ble.state){
+      case bleStateEnum.notConnect:
+        this.searchDevice();
+        break;
+      case bleStateEnum.searching:
+        break;
+      case bleStateEnum.connecting:
+        break;
+      case bleStateEnum.connected:
+        break;
+    }
+  },
+  onLoad() {
+    if (wx.getUserProfile) {
+      this.setData({
+        canIUseGetUserProfile: true
+      })
+    }
+  },
+  getUserProfile(e) {
+    // 推荐使用wx.getUserProfile获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认,开发者妥善保管用户快速填写的头像昵称,避免重复弹窗
+    wx.getUserProfile({
+      desc: '展示用户信息', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
+      success: (res) => {
+        console.log(res)
+        this.setData({
+          userInfo: res.userInfo,
+          hasUserInfo: true
+        })
+      }
+    })
+  },
+  getUserInfo(e) {
+    // 不推荐使用getUserInfo获取用户信息,预计自2021年4月13日起,getUserInfo将不再弹出弹窗,并直接返回匿名的用户个人信息
+    console.log(e)
+    this.setData({
+      userInfo: e.detail.userInfo,
+      hasUserInfo: true
+    })
+  }
+})

+ 5 - 0
pages/index/index.json

@@ -0,0 +1,5 @@
+{
+  "usingComponents": {
+    "led": "/components/stateLed/stateLed"
+  }
+}

+ 41 - 0
pages/index/index.wxml

@@ -0,0 +1,41 @@
+<!--index.wxml-->
+<view class="container">
+  <view class="header"></view>
+  <view class="header">
+    <view class="state-info" bindtap="tapState">
+     <led color="{{connectStateMap[ble.state].color}}" width="15"/> {{connectStateMap[ble.state].text}}
+    </view>
+    <view class="state-msg" wx:if="{{ble.state == 3}}">
+      {{remoteDev.devName}}
+    </view>
+    <view class="state-msg" wx:if="{{ble.state == 0}}">
+      <view class="custom-info-btn" bindtap="searchDevice" >扫描</view>
+    </view>
+    <view class="state-msg" wx:if="{{ble.state == 2}}">
+      <view class="custom-info-btn" bindtap="searchDevice" >重新扫描</view>
+    </view>
+  </view>
+  <view class="control">
+    
+  </view>
+  <view class="userinfo">
+    <block wx:if="{{canIUseOpenData}}">
+      <view class="userinfo-avatar" bindtap="bindViewTap">
+        <open-data type="userAvatarUrl"></open-data>
+      </view>
+      <open-data type="userNickName"></open-data>
+    </block>
+    <block wx:elif="{{!hasUserInfo}}">
+      <button wx:if="{{canIUseGetUserProfile}}" bindtap="getUserProfile"> 获取头像昵称 </button>
+      <button wx:elif="{{canIUse}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 获取头像昵称 </button>
+      <view wx:else> 请使用1.4.4及以上版本基础库 </view>
+    </block>
+    <block wx:else>
+      <image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" mode="cover"></image>
+      <text class="userinfo-nickname">{{userInfo.nickName}}</text>
+    </block>
+  </view>
+  <view class="usermotto">
+    <text class="user-motto">{{motto}}</text>
+  </view>
+</view>

+ 50 - 0
pages/index/index.wxss

@@ -0,0 +1,50 @@
+/**index.wxss**/
+
+.userinfo {
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  color: #aaa;
+}
+
+.userinfo-avatar {
+  overflow: hidden;
+  width: 128rpx;
+  height: 128rpx;
+  margin: 20rpx;
+  border-radius: 50%;
+}
+
+.usermotto {
+  margin-top: 200px;
+}
+
+.header{
+  width: 100%;
+  height: 35px;
+  border-bottom: 1px solid gray;
+  display: flex;
+  align-items: center;
+  font-size: 16px;
+  padding: 0 5px;
+}
+.header .state-info{
+  font-size: 18px;
+  width: 120px;
+  padding-left: 10px;
+  border-right: 1px solid gray;
+  display: flex;
+  align-items: center;
+}
+.led{
+  width: 5px;
+  height: 5px;
+  
+}
+.header .state-msg{
+  width: 100%;
+  overflow:hidden;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+}

+ 18 - 0
pages/logs/logs.js

@@ -0,0 +1,18 @@
+// logs.js
+const util = require('../../utils/util.js')
+
+Page({
+  data: {
+    logs: []
+  },
+  onLoad() {
+    this.setData({
+      logs: (wx.getStorageSync('logs') || []).map(log => {
+        return {
+          date: util.formatTime(new Date(log)),
+          timeStamp: log
+        }
+      })
+    })
+  }
+})

+ 4 - 0
pages/logs/logs.json

@@ -0,0 +1,4 @@
+{
+  "navigationBarTitleText": "查看启动日志",
+  "usingComponents": {}
+}

+ 6 - 0
pages/logs/logs.wxml

@@ -0,0 +1,6 @@
+<!--logs.wxml-->
+<view class="container log-list">
+  <block wx:for="{{logs}}" wx:key="timeStamp" wx:for-item="log">
+    <text class="log-item">{{index + 1}}. {{log.date}}</text>
+  </block>
+</view>

+ 8 - 0
pages/logs/logs.wxss

@@ -0,0 +1,8 @@
+.log-list {
+  display: flex;
+  flex-direction: column;
+  padding: 40rpx;
+}
+.log-item {
+  margin: 10rpx;
+}

+ 55 - 0
project.config.json

@@ -0,0 +1,55 @@
+{
+  "description": "项目配置文件,详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
+  "packOptions": {
+    "ignore": [],
+    "include": []
+  },
+  "setting": {
+    "bundle": false,
+    "userConfirmedBundleSwitch": false,
+    "urlCheck": true,
+    "scopeDataCheck": false,
+    "coverView": true,
+    "es6": true,
+    "postcss": true,
+    "compileHotReLoad": false,
+    "lazyloadPlaceholderEnable": false,
+    "preloadBackgroundData": false,
+    "minified": true,
+    "autoAudits": false,
+    "newFeature": false,
+    "uglifyFileName": false,
+    "uploadWithSourceMap": true,
+    "useIsolateContext": true,
+    "nodeModules": false,
+    "enhance": true,
+    "useMultiFrameRuntime": true,
+    "useApiHook": true,
+    "useApiHostProcess": true,
+    "showShadowRootInWxmlPanel": true,
+    "packNpmManually": false,
+    "enableEngineNative": false,
+    "packNpmRelationList": [],
+    "minifyWXSS": true,
+    "showES6CompileOption": false,
+    "minifyWXML": true,
+    "useStaticServer": true,
+    "checkInvalidKey": true,
+    "babelSetting": {
+      "ignore": [],
+      "disablePlugins": [],
+      "outputPath": ""
+    },
+    "disableUseStrict": false,
+    "useCompilerPlugins": false
+  },
+  "compileType": "miniprogram",
+  "libVersion": "2.19.4",
+  "appid": "wx0264b6ecd0573b81",
+  "projectname": "miniprogram-92",
+  "condition": {},
+  "editorSetting": {
+    "tabIndent": "insertSpaces",
+    "tabSize": 2
+  }
+}

+ 7 - 0
project.private.config.json

@@ -0,0 +1,7 @@
+{
+  "projectname": "sony%E9%81%A5%E6%8E%A7",
+  "setting": {
+    "compileHotReLoad": true
+  },
+  "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html"
+}

+ 7 - 0
sitemap.json

@@ -0,0 +1,7 @@
+{
+  "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
+  "rules": [{
+  "action": "allow",
+  "page": "*"
+  }]
+}

+ 27 - 0
utils/ble.js

@@ -0,0 +1,27 @@
+const handle = require("./handle");
+
+const sonyBleCode = {
+
+}
+
+
+class BLE{
+  constructor(){
+    // this代表实例对象
+     this.isInit= false;
+ }
+  
+  async initBle(option){
+    let [err,ok] = await handle(wx.openBluetoothAdapter(option));
+    if(err){
+      throw err;
+    }
+    return 0
+  }
+}
+
+
+
+module.exports = ()=> {
+  return new BLE();
+}

+ 23 - 0
utils/handle.js

@@ -0,0 +1,23 @@
+/*
+ * @Description: 
+ * @Autor: kindring
+ * @Date: 2021-12-14 15:19:56
+ * @LastEditors: kindring
+ * @LastEditTime: 2021-12-14 17:17:09
+ * @LastDescript: 
+ */
+function handle(promise) {
+  return new Promise(resolve => {
+      try{
+          promise.then(val => {
+              resolve([null, val])
+          }).catch(err => {
+              resolve([err])
+          })
+      }catch(err){
+          resolve([err])
+      }
+  })
+}
+
+module.exports = handle;

+ 19 - 0
utils/util.js

@@ -0,0 +1,19 @@
+const formatTime = date => {
+  const year = date.getFullYear()
+  const month = date.getMonth() + 1
+  const day = date.getDate()
+  const hour = date.getHours()
+  const minute = date.getMinutes()
+  const second = date.getSeconds()
+
+  return `${[year, month, day].map(formatNumber).join('/')} ${[hour, minute, second].map(formatNumber).join(':')}`
+}
+
+const formatNumber = n => {
+  n = n.toString()
+  return n[1] ? n : `0${n}`
+}
+
+module.exports = {
+  formatTime
+}