Benzene R&D
Developing blog
-
Kocker-Vibroacoustic-based-Object-Recognition-with-Smartphones
In Lab Evaluation Overview Accureacy depends on different style of knock by users. Capability without Personalization Effect of Environmental Changes Distinguishing Similar Object Energy Consumption
-
Control Yeelight with Python Code
Environment setup python -m venv .venv .venv/Scripts/activate pip install yeelight Find Bulbs >>> from yeelight import discover_bulbs >>> discover_bulbs() By using SSDP(Simple Service Discovery Protocol), it discover light bulbs connected on a local network. Code Analysis def discover_bulbs(timeout=2, interface=False): s = send_discovery_packet(timeout, interface) bulbs = [] bulb_ips = set() while...
-
Shift Touch
ShiftTouch Multiple Input Area while Reducing Screen Occlusion Introduction The contributions of this paper are as follows. We propose a passive and tangible interface, which can be combined with varioustypes of kinesthetic feedback,reduces screen occlusion by up to 80.5% compared to conventional touch extension interfaces. We present an interface structure...
-
Github 블로그 md파일 자동 생성
Github blog 작성 자동화 Github 블로그를 위한 파일 생성에는 다음과 같은 조건이 따른다. yyyy-mm-dd-title.markdown 형식의 제목 해당 파일의 metadata를 포함하는 heading 두 조건이 충족되지 않는 경우 글이 Post 형식으로 보이지 않는 문제가 발생하거나, 파일 자체가 누락되어 페이지에 나타나지 않는 등의 문제를 초래한다. 따라서 해당 문제가 발생하지 않도록 글의 생성을 자동화하는...