'2022/05/12'에 해당되는 글 2건

  1. 2022.05.12 lse plc 작화(drawing) cpu internal 변수
  2. 2022.05.12 android hdmi rotate 4
하드웨어/PLC (LSE)2022. 5. 12. 11:12

HMI가 없어서 임의로 대충 골라서 했는데, HMI의 내부 변수를 HS/HW/HK로 만들어 둔 듯 하다.

HS는 Special device

HW는 internal Word Device

HK는 Keep device

 

 

 

+

HS는.. 약간 F 플래그 느낌이 나는것 같기도 하고?

 

 

'하드웨어 > PLC (LSE)' 카테고리의 다른 글

lse plc cpu 모듈 핫 스왑?  (0) 2022.05.16
lse plc chk 빨간불  (0) 2022.05.16
lse plc fenet  (0) 2022.05.11
lse xp builder xpe 확장자 열기 실패  (0) 2022.05.11
LSE PLC XGL-CH2B  (0) 2022.04.28
Posted by 구차니
Programming/android2022. 5. 12. 08:18

핸드폰을 HDMI로 연결해서 쓰다보니 세로 모드에서 HDMI 미러링시

작게 나오는게 그게 아쉬워서, 세로 모드를 화면 돌린채로 가득 채울수 없나 찾아보는 중.

 

the HDMI output can be rotated, after unlocking the rotation lock:

adb shell root
adb shell remount
adb shell setprop persist.demo.hdmirotation portrait
adb shell setprop persist.demo.hdmirotationlock false
adb shell setprop persist.demo.singledisplay true
adb reboot
one can then set the wm's display geometry:

adb shell wm size 1080x1920
adb shell wm size 1920x1920
or switch the user_rotation:

settings put system user_rotation 1
settings put system user_rotation 3
the NXP community seems to be the source.

[링크 : https://stackoverflow.com/questions/54468895]

[링크 : https://m.clien.net/service/board/cm_andro/11264652]

 

Posted by 구차니