Posts

Showing posts from January, 2019

How to arrange , separated text (add every 24th comma to \n)

Image
1. I got RGB color map value (256*3) = 768 values as below: colorarray07[256*3] = { 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, ... } 2. I would like to arrange like this: colorarray07[256*3] = {     0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255,     ...     } 3. Using VSCODE, I copied value section to vscode. 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, 0,0,255, ... 4. Replace all using following condition with regex on (to make one line text) ,\n  to , 5. Replace all using following condition with regex as follows: ([0-9]+\,){24} to $0\n 6. It works like charm.

How to set time on Xiaomi AI Alarm clock / 샤오미 인공지능 알람시계 시간설정

Image
1. Get iOS device and install Mi Home App. 2. Delete registered device in MiHome app (either Android / iOS) 3. Reset Xiaomi AI Alarm clock by pressing reset hole using pin for 4-7 seconds until you hear some Chinese announcement . 4. Open iOS time setting(Settings - General - Date & Time) 5. Deselect automatic time and change timezone to where you would like to set. 6. Open Mi Home and Find Xiaomi AI Alarm clock then check resetting button. Select Wifi AP information then. 7. Ta~da, Time will be changed as you would like to use. ---- 1. 아이폰이나 아이패드등 iOS디바이스를 구합니다. 2. 기존에 앱에 등록되어 있으면, 디바이스를 삭제해줍니다 3. 샤오미 AI 알람시계 밑에 있는 reset 구멍에 핀을 이용하여 오래 꾸욱 누르면 중국말로 뭐라고 나오면 리셋된겁니다. 4. iOS디바이스에서 설정-일반-날자시간설정 을 엽니다. 5. 자동으로 설정을 끄시고 시간대를 서울 또는 도쿄로 바꿉니다. 6. Mi Home을 열고 추가(+) 메뉴로 디바이스를 등록하고 Reset을 진행한 후에 Wifi 접속정보를 입력하면 7. 짜~잔 하고 접속정보 보낼 쯤에 시간이 바뀌는걸 확인하실 수 있습니다.