点击上方蓝字关注 Ingress Beijing
五一假期结束后,5月10日,在著名Ingress学术日刊上阅读到了《
交变电场下
XM
的电致发光现象
》这篇学术论文,然后K叔对XM激发光信号产生了浓厚兴趣(对脱光、走光等光现象同理),联想到前几天折腾的空气净化器实际上是个对大量空气进行过滤处理的设备装置,那么在空气中的微量的XM物质理应会在空气处理装置上富集从而留下某些痕迹。
因为空气净化装置不像
Scanner
一样精密,并且Scanner有着大量为
XM
专门撰写的代码,就算是有
XM
物质富集残留也是非常非常微量的,所激发的EL现象想必也十分微弱,所以实验环境选在暗夜无光条件下,使用Scanner对改装过的空气净化器进行长时间曝光扫描。
虽然没有电了神枝大学异物质与混沌物质实验室精英的人才(会用PCB设计软件)、雄厚的财力(有钱到嘉立创打板)、高端的设备(多口输出巨型蓝色充电宝),不过K叔经过细致的实验准备(关灯),反复的进行实验(手抖图像发虚),经过数十次实验失败后果然观测到了XMEL现象,不是那么特殊的的非发光器非阵列露出了它的端倪!
运行的空气净化器在过滤巨量空气的同时,空气中的
XM
物质也复现了论文所说的electroluminescent现象,只不过内部的装置不是专门面向
XM
物质开发的,第一次发现并成功留存清晰影像的中装置发出的光芒是不规则的Enlightened光芒。
为什么只激发了Enlightened光芒呢?
经过对装置另一个角度的长时间曝光扫描,果然在另一侧观测到了
XM
物质激发出的Resistance光芒,Enlightened和Resistance分别在装置的两端激发出来两片不规则的光芒,像极了两极。
那么是不是每一台空气净化器都有
XMEL
现象呢,对另一台同品牌同型号未经改装的空气净化装置进行扫描,并没有任何
XM
致电发光现象产生:
因为缺乏电了神枝大学异物质与混沌物质实验室那样对世界本源的探知精神,
K
叔只能猜测是由于改装过的空气净化器因为有了硬件和软件的结合,注入代码有了灵魂,导致
XM
致电发光现象显示出来。
下面是导致XM泄露激发光信号的ESP8266代码,理论上可以为所有按键式开关的电器改造智能化(有可能导致XMEL),代码是通过EspHome编译烧写到Esp8266 NodeMcu上的:
1.
substitutions:
2.
device_name: ████
#
设备名称
(
下面引用
)
3.
wifi_ssid:
"
████████
"
#WiFi_SSID
名称
4.
wifi_password:
"
████████
"
#WiFi
密码
5.
wifi_ssid_AP:
"ESPHOME"
6.
wifi_password_AP:
"███████████"
#ap_WiFi
密码
7.
wifi_fast_connect:
"true"
#
如果
SSID
是隐藏的,设置为
true
8.
wifi_reboot_timeout: 180s
#WiFi
离线多久后重启设备,秒
s/
分钟
min/
小时
h
,不需要此功能设置为
0s
9.
ota_password:
"███████████"
#OTA
密码
10.
api_reboot_timeout: 600s
#
与客户端(如
Home Assistant
)失去连接多久后重启设备,秒
s/
分钟
min/
小时
h
,不需要此功能设置为
0s
11.
ip_address:
"███████████"
###
根据你路由器地址,设置一个固定
IP
12.
gate_way:
"██████████"
###
根据你路由器网段填写
13.
sub_net:
"█████████"
###
根据你网段划分填写
14.
esphome:
15.
name: $device_name
16.
platform: ESP8266
17.
board: nodemcuv2
18.
19.
api:
20.
reboot_timeout: $api_reboot_timeout
21.
ota:
22.
23.
captive_portal:
24.
25.
logger:
26.
web_server:
27.
wifi:
28.
ssid: $wifi_ssid
29.
password: $wifi_password
30.
manual_ip:
31.
static_ip: $ip_address
###
根据你路由器地址,设置一个固定
IP
32.
gateway: $gate_way
###
根据你路由器网段填写
33.
subnet: $sub_net
34.
reboot_timeout: $wifi_reboot_timeout
35.
power_save_mode: none
36.
fast_connect: $wifi_fast_connect
37.
# Enable fallback hotspot (captive portal) in case wifi connection fails
38.
ap:
39.
ssid: $wifi_ssid_AP
40.
password: $wifi_password_AP
41.
42.
43.
binary_sensor:
44.
- platform: gpio
45.
pin:
46.
number: GPIO2
47.
mode: INPUT_PULLUP
48.
name:
"Air Purifier Power"
49.
filters:
50.
- delayed_off: 1200ms
51.
52.
53.
switch:
##
设备类型
;
54.
- platform: gpio
##
平台
;
55.
id: air_close
##ID
为继电器开关
;
56.
pin: GPIO5
##ESP01/01S
是
GPIO0
脚
;
57.
- platform: gpio
##
平台
;
58.
id: air_water_open
##ID
为继电器开关
;
59.
pin: GPIO4
60.
- platform: gpio
##
平台
;
61.
id: air_open
##ID
为继电器开关
;
62.
pin: GPIO14
63.
- platform: gpio
64.
id: air_kill_open
65.
pin: GPIO12
66.
- platform: gpio
67.
id: air_changewind
68.
pin: GPIO13
69.
- platform: gpio
70.
id: air_lightchange
71.
pin: GPIO15
72.
- platform: gpio
##
平台
;
73.
id: air_Ionswitch
##ID
为继电器开关
;
74.
pin: GPIO0
75.
- platform: template
76.
name:
"Air Purifier close"
77.
icon:
"mdi:fan-off"
78.
turn_on_action:
79.
- switch.turn_on: air_close
80.
- delay: 500ms
81.
- switch.turn_off: air_close
82.
- platform: template
83.
name:
"Air Purifier hum open"
84.
icon:
"mdi:water-percent-alert"
85.
turn_on_action:
86.
- switch.turn_on: air_water_open
87.
- delay: 500ms
88.
- switch.turn_off: air_water_open
89.
- platform: template
90.
name:
"Air Purifier open"
91.
icon:
"mdi:fan"
92.
turn_on_action:
93.
- switch.turn_on: air_open
94.
- delay: 500ms
95.
- switch.turn_off: air_open
96.
- platform: template
97.
name:
"Air Purifier virus kill"
98.
icon:
"mdi:virus"
99.
turn_on_action:
100.
- switch.turn_on: air_kill_open
101.
- delay: 500ms