渊澄

川流不息,渊澄取映

近日,苹果升级了智能音箱HomePod的固件,使其终于能够支持中文了,同步支持的语言还包括广东话。

而苹果中国官网也随即挂出了国行HomePod的页面,有白色和深空灰两种配色,售价均为2799元人民币,预计会在2019年初开放购买。

TIM截图20181206135234.jpg

HomePod是苹果公司发布的一款互联网智能音箱,内置自家的Siri语音助手,配合iPhone手机及Apple Music账户可以实现信息查询、播放音乐、接打电话、AirPlay等功能,配合家庭APP及HomeKit配件,可以实现智能家庭的语音控制。

HomePod同时也支持多台HomePod串联,组成多声道音响系统,也支持多个HomePod播放不同的内容,组成家庭背景音乐系统。

目前国内的各品牌智能音箱,无论从外观、功能及音质方面,都无法和HomePod直接竞争,当然也包括价格,而随着HomePod国行版的正式发售,苹果在国内的智能音箱及智能家居领域,必会有所斩获,毕竟苹果的用户体验是有目共睹的。

在最新的HomeAssistant0.83版本中,对小米无线开关、Aqara墙壁无线开关及魔方的自动化触发语句做了修改,大家可以按照下面的示例来进行相应的修改。

小米无线开关

- alias: Toggle dining light on single press
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.switch_158d000xxxxxc2
      click_type: single
  action:
    service: switch.toggle
    entity_id: switch.wall_switch_left_158d000xxxxx01
- alias: Toggle couch light on double click
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.switch_158d000xxxxxc2
      click_type: double
  action:
    service: switch.toggle
    entity_id: switch.wall_switch_right_158d000xxxxx01
- alias: Let a dog bark on long press
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.switch_158d000xxxxxc2
      click_type: long_click_press
  action:
    service: xiaomi_aqara.play_ringtone
    data:
      gw_mac: xxxxxxxxxxxx
      ringtone_id: 8
      ringtone_vol: 8

Aqara墙壁无线开关

- alias: Decrease brightness of the gateway light
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.wall_switch_left_158xxxxxxxxx12
      click_type: single
  action:
    service: light.turn_on
    entity_id: light.gateway_light_34xxxxxxxx13
    data_template:
      brightness: >-
        {% if states.light.gateway_light_34xxxxxxxx13.attributes.brightness %}
              {% if states.light.gateway_light_34xxxxxxxx13.attributes.brightness - 60 >= 10 %}
                {{states.light.gateway_light_34xxxxxxxx13.attributes.brightness - 60}}
              {% else %}
                {{states.light.gateway_light_34xxxxxxxx13.attributes.brightness}}
              {% endif %}
        {% else %}
          10
        {% endif %}

- alias: Increase brightness of the gateway light
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.wall_switch_right_158xxxxxxxxx12
      click_type: single
  action:
    service: light.turn_on
    entity_id: light.gateway_light_34xxxxxxxx13
    data_template:
      brightness: >-
        {% if states.light.gateway_light_34xxxxxxxx13.attributes.brightness %}
              {% if states.light.gateway_light_34xxxxxxxx13.attributes.brightness + 60 <= 255 %}
                {{states.light.gateway_light_34xxxxxxxx13.attributes.brightness + 60}}
              {% else %}
                {{states.light.gateway_light_34xxxxxxxx13.attributes.brightness}}
              {% endif %}
        {% else %}
          10
        {% endif %}

- alias: Turn off the gateway light
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.wall_switch_both_158xxxxxxxxx12
      click_type: both
  action:
    service: light.turn_off
    entity_id: light.gateway_light_34xxxxxxxx13

小米魔方

- alias: Cube event flip90
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: flip90
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "springgreen"
- alias: Cube event flip180
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: flip180
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "darkviolet"
- alias: Cube event move
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: move
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "gold"
- alias: Cube event tap_twice
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: tap_twice
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "deepskyblue"
- alias: Cube event shake_air
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: shake_air
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "blue"

Aqara震动传感器

- alias: Turn on Living Room Lamp on vibration
  trigger:
    platform: event
    event_type: xiaomi_aqara.movement
    event_data:
      entity_id: binary_sensor.vibration_xxxx000000
      movement_type: vibrate
  action:
    service: light.toggle
    data:
      entity_id: light.living_room_lamp
- alias: Turn on Living Room Lamp on tilt
  trigger:
    platform: event
    event_type: xiaomi_aqara.movement
    event_data:
      entity_id: binary_sensor.vibration_xxxx000000
      movement_type: tilt
  action:
    service: light.toggle
    data:
      entity_id: light.living_room_lamp

 

OneDrive是微软推出得一款免费云盘服务,之前叫做Skydrive。不同于Google Drive以及百度云盘,OneDrive可以和最新得Windows10操作系统深度集成,只需在Windows10系统中登陆你得微软账户,即可实时同步,非常适合Windows用户来同步和备份一些重要的数据,而且OneDrive的各项功能目前在国内可以正常使用。

微软提供为OneDrive免费账户提供15GB得存储空间,如果你觉得空间不够用微软也推出了收费扩容服务,价格如下:

TIM截图20181204140905.jpg

除了与office打包,单独购买50GB的空间每月需要15块钱。

如果你和我一样,舍不得花钱,但又觉得15GB不够用,那你可以邀请好友来注册激活OneDrive服务,成功邀请一位好友,你和你的好友都可获得0.5GB的扩容,最多可获得10GB的扩容空间,也就是说,你成功邀请了20位好友注册激活OneDrive,你的存储空间就会升级到25GB。
TIM截图20181204141234.jpg

下面是我的邀请链接,还没有注册OneDrive的的朋友点击一下链接,你和我都会另外获得0.5GB的扩容哦!

https://onedrive.live.com?invref=2201fc6079f823f2&invscr=90

TIM截图20181119140137.jpg

是的,全新的SS之家上线了,助力您畅游互联网,无痛点访问谷歌、YouTube、Facebook、Instagram,YouTube实测1080无压力。

支持Android、iOS手机,Windows、Mac电脑,LEDE、梅林、Padavan路由器。

免费套餐也同时上线,每月赠送1GB流量,每日签到另外可得最多50MB流量,可连接普通节点,不限终端数量。

其他包月、包年套餐可以移步网站查看。

即日起至11月30日为内测期,期间所有套餐均可享受5折优惠。

TIM截图20181119140202.jpg

具体套餐详情及购买方式请Q312780013。

SS之家网址 HTTPS://SSHOME.WIN

宝塔面板可以运行在各类Linux系统中,方便我们搭建和管理网站。现在演示一下如何在GoogleCloud中安装宝塔面板。

首先我们进入Compute Engine中创建一个VM实例,为了尽可能的提升访问速度,我们将区域选择为香港。,启动磁盘选择Centos7。

TIM截图20181102140908.jpg

创建时在防火墙中勾选允许HTTP及HTTPS流量。

TIM截图20181102140930.jpg

接着我们进入VPC网络,在外部IP地址中我们将"临时"改为"静态"。

TIM截图20181102141251.jpg

在防火墙规则中,我们将出入站的所有端口及协议开放,并应用到所有实例。

TIM截图20181102141349.jpg

之后我们用SSH登陆到我们创建的VM实例,

TIM截图20181102141447.jpg

并运行以下命令进行安装:

sudo su

yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh

根据提示选择安装功能,等安装结束会提示面板登陆地址、用户名及密码。

我们根据给出的安装信息就可以登陆到面板来创建和管理网站了。