'잡동사니'에 해당되는 글 13954건
- 2023.09.12 사과!!!
- 2023.09.12 의약품 RFID 2
- 2023.09.11 사과는 애플
- 2023.09.10 사과 사세요~
- 2023.09.09 처갓댁 당일치기
- 2023.09.08 어지러워
- 2023.09.08 wayland hdmi - touch 연결
- 2023.09.07 yocto build on i5-3570
- 2023.09.06 배탈, 몸살, 피곤
- 2023.09.05 흐음.. 방문자 수가..
구내염이 심해서 약을 사는데 RFID라고 써있어서 보니 뚜껑에 먼가 있긴 있다.

혹시나 하는 마음에 NFC로 핸드폰 이용해서 읽어 보는데 안되서 검색해보니
RFID라서 NFC로는 안읽히는게 맞는듯.
그러고 보니.. 주파수 저거 웬지 익숙한(?) 숫자인데 옛날 세콤에서 사용하던 출입태그 아닌가?!
13.56MHz RFID 태그를 부착
[링크 : http://www.klnews.co.kr/news/articleView.html?idxno=78779]
'하드웨어 > rfid_nfc_smartcard' 카테고리의 다른 글
| rfid, smart card reader (0) | 2025.02.12 |
|---|---|
| ubunut smart card 읽기 (0) | 2025.02.12 |
| ATR (Answer To Reset) (0) | 2025.02.12 |
| rfid 12.5M / 125k (0) | 2024.07.25 |
| 라즈베리 파이 2 - RFID 리더(125KHz) (0) | 2015.07.13 |
약 기운인가 ㅠㅠ
'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글
| 사과 사세요~ (0) | 2023.09.10 |
|---|---|
| 처갓댁 당일치기 (0) | 2023.09.09 |
| 배탈, 몸살, 피곤 (0) | 2023.09.06 |
| 피곤 (0) | 2023.09.03 |
| 뚝섬 유원지 물놀이 (0) | 2023.08.19 |
윈도우와는 다르게 리눅스에서는
HDMI + touch를 연결하면 자꾸 0번 디스플레이와 새로 연결된 터치가 연결된다.
윈도우에서 지금까진 안맞는적은 없었는데, 연결방법 글이 있는걸 보면 아주 없진 않나보다.
아무튼 윈도우는 어떤 시나리오로 되길래 외부 모니터와 touch를 잘 매칭해주는진 모르겠지만
[링크 : https://comterman.tistory.com/2738]
wayland 나 x.org 에서는 영~ 매칭이 잘 안된다.
화면 찢어짐 때문에 wayland로 해놨는데 그 여파로 따라해봐도 스크린에 터치가 옮겨가진 않는다.
[링크 : https://askubuntu.com/questions/71768/touchscreen-and-additional-external-monitor]
libinput-device.c를 보면 아래 함수 두개에 associated 용어를 표현하며
입력 장치를 evdev의 이벤트를 통해 연결하는데, 회사에서 시험해볼때는
touch 장치 쪽에서 연결할 스크린 명칭을 넣어주지 않아서인지 제대로 연결되는걸 못 본 듯.
|
void
evdev_device_set_calibration(struct evdev_device *device)
{
struct udev *udev;
struct udev_device *udev_device = NULL;
const char *sysname = libinput_device_get_sysname(device->device);
const char *calibration_values;
uint32_t width, height;
struct weston_touch_device_matrix calibration;
if (!libinput_device_config_calibration_has_matrix(device->device))
return;
/* If LIBINPUT_CALIBRATION_MATRIX was set to non-identity, we will not
* override it with WL_CALIBRATION. It also means we don't need an
* output to load a calibration. */
if (libinput_device_config_calibration_get_default_matrix(
device->device,
calibration.m) != 0)
return;
/* touch_set_calibration() has updated the values, do not load old
* values from WL_CALIBRATION.
*/
if (device->override_wl_calibration)
return;
if (!device->output) {
weston_log("input device %s has no enabled output associated "
"(%s named), skipping calibration for now.\n",
sysname, device->output_name ?: "none");
return;
}
void
evdev_device_set_output(struct evdev_device *device,
struct weston_output *output)
{
if (device->output == output)
return;
if (device->output_destroy_listener.notify) {
wl_list_remove(&device->output_destroy_listener.link);
device->output_destroy_listener.notify = NULL;
}
if (!output) {
weston_log("output for input device %s removed\n",
libinput_device_get_sysname(device->device));
device->output = NULL;
return;
}
weston_log("associating input device %s with output %s "
"(%s by udev)\n",
libinput_device_get_sysname(device->device),
output->name,
device->output_name ?: "none");
device->output = output;
device->output_destroy_listener.notify = notify_output_destroy;
wl_signal_add(&output->destroy_signal,
&device->output_destroy_listener);
evdev_device_set_calibration(device);
}
|
'프로그램 사용 > wayland' 카테고리의 다른 글
| weston evdev libinput (0) | 2024.03.11 |
|---|---|
| weston 커서 숨기기 (0) | 2024.02.26 |
| wayland atomic commit 패치? (0) | 2022.08.22 |
| weston screen shooter 뜯어보기 (0) | 2022.08.17 |
| wayland glreadpixels 실패 (0) | 2022.08.16 |
전체는 아니고 weston 쪽을 기준으로 빌드하는데
소요시간이 1시간
| real 62m37.028s user 0m6.099s sys 0m0.797s |
나중에 노트북에서 다시 빌드해 봐야하나?
어째 i7-10510U+ nvme 보다
i5-3570 + sata ssd 가 더 빠른것 같은건 왜지..
데스크탑과 노트북이라 차이가 있긴 해도
벤치상으로는 노트북쪽이 신형이라 빠를텐데..?
'프로그램 사용 > yocto project' 카테고리의 다른 글
| bitbake --help (0) | 2023.08.29 |
|---|---|
| Do not use Bitbake as root. (0) | 2023.08.28 |
| imx8 yocto (0) | 2023.08.28 |
| imx8 yocto build on ubuntu 22.04 (0) | 2023.02.10 |
| 라즈베리 파이 with yocto project (2) | 2015.07.30 |
한참때는 1300까지 가더니
아직 대학생들이 개학을 안해서 그런가 미적지근(?) 하다
게을러져서 2~3주에 한번 글 정리해서 공개하고 하다보니
매일 1개는 쓰더라도 공개주기가 늦어져서 그런건가 싶기도 하고.

'개소리 왈왈 > 블로그' 카테고리의 다른 글
| 블로그 방문자 하락.. -_ㅠ (0) | 2023.10.03 |
|---|---|
| 방문자 1000 미만 -_ㅠ (0) | 2023.09.22 |
| 티스토리 블로그 백업 기능 살아남 (0) | 2023.06.06 |
| 티스토리 절찬리에 폭주중 feat 상단광고 (0) | 2023.06.05 |
| 도메인 결제 (0) | 2023.06.02 |
