摘要:
1 #include <Arduino.h> 2 #include <U8x8lib.h> 3 4 U8X8_SSD1306_128X64_NONAME_SW_I2C u8x8(/* clock=*/ 3, /* data=*/ 10, /* reset=*/ U8X8_PIN_NONE); // 阅读全文
摘要:
1 void setup() { 2 pinMode(16, OUTPUT); 3 } 4 5 void loop() { 6 digitalWrite(16, HIGH); 7 delay(1000); 8 digitalWrite(16, LOW); 9 delay(1000); 10 } 阅读全文
摘要:
1 #include "DHTesp.h" 2 3 DHTesp dht; 4 5 void setup() 6 { 7 Serial.begin(115200); 8 Serial.println(); 9 Serial.println("Status\tHumidity (%)\tTempera 阅读全文
摘要:
首先需要用的一个网址:http://ping.chinaz.com/github.com,用来ping 步骤: 1.现在网站上输入网址,进行ping检测。 2.找到ping时间最短的ip(比如响应时间为:<1) 3.打开windos下的 C:\Windows\System32\drivers\etc 阅读全文
摘要:
一、下载Apache 官网下载:https://httpd.apache.org/ 或者百度网盘链接:https://pan.baidu.com/s/17zVFNSfzzwDgFti_fboUSA 提取码:abr9 二、Apache的安装 1.将解压的两个安装包放到一个文件夹中:比如我的是放在了D盘 阅读全文
摘要:
使用frp穿透首先要有一个公网ip。我使用的是阿里云的服务器。 下载: frp在 https://gofrp.org/ 上下载 Github开源:https://github.com/fatedier/frp(两个都可以下载) 在releases页面下载对应平台的版本。每个包都包含服务器端和客户端。 阅读全文