發表文章

目前顯示的是 2024的文章

[維修小札] 小米掃地機器人 x10+ 更換電池 離開充電座馬上沒電 [Fix Notes] Xiaomi Robotic Vacuum Battery Replacement.

圖片
 一離開充電座就會馬上關機 Once it leave the charger dock, it will immediately shut down. 第一個想到的是電池問題 The first thing comes to mind is  a battery issue. 可以發現電量趨近於0   不確定會不會是充電問題  但還決定買新的電池來嘗試 I found that the battery voltage was close to zero. I wasn't sure if it was charging issue, but I still decided to buy a new one to try. 副廠電池的價格約NT715 在蝦皮上購買 The price of a non-original brand battery is NT715, purchesd on Shopee. 正廠副廠電池外觀 The appearance of the original and non-original batteries is shown in this picture. 電池電量16V左右 有點偏高但能接受 The battary voltage is around 16V, which is a bit high, but acceptable. 安裝電池後 他成功運行!!! After installing the new battery, it worked! Cheer up!! 這台是購入在2022/11   這台壞掉在在2024/08 This robotic vacuum was purchased in November 2022. It broke down in Agust 2024. 一年過去後 電力開始變弱了  我又開始找新的電池 我驚訝的發現蝦皮現在更便宜了! 380 台! 相同型號! After around 1 years, the bettary power become weak, so I try to find the new battery. I'm amazing about the price, because the pric...

[維修小札] 如何持續測試網路PING值並且記錄 How to continuously test network ping values and record them

圖片
大概是這樣的功能,他會持續監測,並且記錄PING值。 如果有timeout,會另存檔案作紀錄。 The functionality is like this:        it continuously monitors and records ping values.  The output file name is ping_log.txt.  If there is a timeout, it saves the record in a separate file, ping_error_log.txt. 先建立一個純文字檔案,並且將下面程式碼貼入裡面。 然後將附檔名改成.ps1 First, create a plain text file and paste the following code into it.  Then, change the file extension to .ps1. ############################################################ $OutputFile = "ping_log.txt" $ErrorFile = "ping_error_log.txt" $PingTarget = "168.95.1.1" while ($true) {     $PingResult = Test-Connection -ComputerName $PingTarget -Count 1 -ErrorAction SilentlyContinue     $Timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"     if ($PingResult) {         $LogEntry = "$Timestamp `t $($PingResult.Address) `t Time=$($PingResult.ResponseTime)ms `t TTL=$($PingResult.Ttl)"          ...