2022年3月9日 星期三

聲寶卡式濾心頭蓋


 https://www.ruten.com.tw/item/show?22027794089976

在這裡買的接頭


https://www.ruten.com.tw/item/show?21814839221595

【品名】台製優質濾心頭蓋 (適用3M、EVERPURE濾心)功能同原廠QL2頭蓋(850元)

【說明】進出水口:3分(3/8"NPT)內牙

【適用濾心】

 EVERPURE 愛惠浦 濾芯型號:

 S-54、H54、S-104、S-100、H-100、H-104、4DC、 MC2、MH2、4C、4K、2K、H300、BH2、I20002

 3M 濾芯型號:

 CFS9812XS、CFS9812X、CFS9112、EP-25、CS-24、 CS-25、CS-15 

【材質】合金金屬、尼龍塑膠、不鏽鋼L型吊片

【產地】台灣

2020年8月16日 星期日

2020年8月12日 星期三

WIFI04_多個SSID自動連接_ESP32 NodeMCU 32S

 https://gist.github.com/clive520/ebce394cfb41d615dffdec7a749d93f8

#include <WiFi.h>

#include <WiFiMulti.h>

#define LED_BUILTIN 2   // 連接到WIFI時,亮內建的LED

WIFI03_連接WIFI_ESP32 NodeMCU 32S

 https://gist.github.com/clive520/3d18bec33ef5c99bf57d4ef92dc97149

#include <WiFi.h>

#define LED_BUILTIN 2   // 連接到WIFI時,亮內建的LED


// 輸入你的SSID和密碼

const char *ssid = "book";

const char *password = "12345678";

WIFI02_找出可用的SSID_ESP32 NodeMCU 32S

https://gist.github.com/clive520/d14f2c26c1cce8e4a521ab5949c2cc57


 #include "WiFi.h"

void setup()

{

    Serial.begin(9600);

WIFI01_讀出機器的MAC_ESP32 NodeMCU 32S

https://gist.github.com/clive520/20aae3d83122d0f798f63e7dddf6cc96 


#include "WiFi.h"  

void setup(){

  Serial.begin(9600);

  WiFi.mode(WIFI_MODE_STA);

    Serial.println("");

  Serial.print("Mac Address :");

  Serial.println(WiFi.macAddress()); //WiFi.macAddress()讀出機器的MAC

}

void loop(){}


2020年8月11日 星期二

ESP32 NodeMCU 32S Web Server控制ESP32

資料來源:

To build the web server you need to install the following libraries:

程式碼:https://gist.github.com/clive520/be78137d7f2edb8e3ba51b5be0dcace2

ESP32 NodeMCU 32S Telegram控制ESP32

資料來源:

程式碼:

ESP32 NodeMCU 32S 取得網路時間

 ESP32 NodeMCU 32S 取得網路時間

資料來源

https://randomnerdtutorials.com/esp32-ntp-client-date-time-arduino-ide/


 先安裝NTP的library  NTP Client library forked by Taranais

程式碼:https://gist.github.com/clive520/d79293310fc4a99e62122c648d552239

ESP32 NodeMCU 32S WIFI連接

 #include <WiFi.h>

void setup()

{

Serial.begin(9600);

  WiFi.disconnect();

  delay(3000);

 

2020年6月22日 星期一

校網頁集中化,www.xxxx.tc.edu.tw轉址成xxxx.tc.edu.tw

學校網頁集中化了,但是https的金鑰是針對網域是tc.edu.tw,對於https://xxxx.tc.edu.tw金鑰是有用的,但對於https://www.xxxx.tc.edu.tw原來的金鑰便失效了,因為這已經算是另一個網域,教育局當然不可能為每一個學校買一個認證金鑰,但大家長久的習慣已經離不開www,短時間要全面更改似乎不太可能,因此借用其他網站協助轉址,將https://www.xxxx.tc.edu.tw轉向https://xxxx.tc.edu.tw

聲寶卡式濾心頭蓋

 https://www.ruten.com.tw/item/show?22027794089976 在這裡買的接頭 https://www.ruten.com.tw/item/show?21814839221595 【品名】台製優質濾心頭蓋 (適用3M、EVERPURE濾心)功...