본문 바로가기

언어

SmartiPi Touch 2 blog.adafruit.com/2019/10/24/new-products-smartipi-touch-2-stand-for-raspberry-pi-7-touchscreen-display-compatible-with-pi-4-and-small-large-back-covers/ NEW PRODUCTS – SmartiPi Touch 2 – Stand for Raspberry Pi 7″ Touchscreen Display Compatible with Pi 4 and Small & Large Bac NEW PRODUCTS – SmartiPi Touch 2 – Stand for Raspberry Pi 7″ Touchscreen Display Compatible with Pi 4 and Small & Large Ba.. 더보기
Florence Virtual Keyboard 가상키보드 출처: raspberry-pi.kr/%EB%9D%BC%EC%A6%88%EB%B2%A0%EB%A6%AC-%ED%8C%8C%EC%9D%B4-%EA%B0%80%EC%83%81-%ED%82%A4%EB%B3%B4%EB%93%9C/ Raspberry Pi에 가상 터치 키보드를 설치합니다. Raspberry Pi와 함께 터치 스크린을 사용하는 경우 이미 가상 키보드 부족이라는 문제에 직면했을 것입니다! Raspberry Pi 재단 자체가 Raspberry Pi 용 터치 스크린을 제공하지만 Raspbian에는 터치 스크린 raspberry-pi.kr Raspberry Pi와 함께 터치 스크린을 사용하는 경우 이미 가상 키보드 부족이라는 문제에 직면했을 것입니다! Raspberry Pi 재단 자체가 Raspberry P.. 더보기
라즈베리파이 보드 버전과 라즈베리파이 OS버전 확인하기 출처: fishpoint.tistory.com/3468 라즈베리파이 보드 버전과 라즈베리파이 OS버전 확인하기 우선 라즈베리파이 씨리즈가 많은 어떤 버전의 라즈베리파이 보드인지 확인하는 방법은 아래와 같은 명령어로 간단히 확인이 가능하다. cat /proc/device-tree/model 명령을 실행하여 확인하면 결과는 fishpoint.tistory.com 우선 라즈베리파이 씨리즈가 많은 어떤 버전의 라즈베리파이 보드인지 확인하는 방법은 아래와 같은 명령어로 간단히 확인이 가능하다. cat /proc/device-tree/model 명령을 실행하여 확인하면 결과는 라즈베리파이 정확한 보드명과 버전을 알려준다. pi@raspberrypi:~ $ cat /proc/device-tree/model Raspb.. 더보기
설치된 패키지 확인 출처: itsfoss.com/list-installed-packages-ubuntu/ 모든 설치된 패키지 확인: apt list --installed To list all the installed packages using apt: apt list –installed Read the rest of the tutorial to know more about other ways and some more tips to fine tune your search for installed packages. 특정패키지 확인(firebird관련패키지확인): apt list --installed | grep firebird* If you use apt command extensively, you would probably .. 더보기
Linux-arm cross compiler for original Raspberry Pi ARMV6Z and FPV2 #148 original: github.com/LongDirtyAnimAlf/fpcupdeluxe/issues/148 Linux-arm cross compiler for original Raspberry Pi ARMV6Z and FPV2 · Issue #148 · LongDirtyAnimAlf/fpcupdeluxe I have a little problem: When I use fpcupdeluxe to install a Linux-arm cross compiler, the executable produced by Lazarus runs on Raspberry Pi B2 and B3, but not in the original one. That is becaus... github.com 더보기
How to install MongoDB silently on Windows Server 2016 I had a hell of a time trying to figure out how to install MongoDB silently via the command line in Windows server. Although the Mongo documentation is thorough, the exact commands listed didn’t work for me out of the box. Keep in mind that these commands work best using the standard cmd shell, and not Powershell. After downloading MongoDB, place the msi installer on the root C: drive, and then .. 더보기
ResourceEditor20190421b 출처: melander.dk/reseditor/ Resource Editor | MelanderBlog Welcome to the Resource Editor project page. The resource editor in its current form is a stand alone application. It was originally designed to be integrated with and embedded into the Delphi IDE but the necessary Delphi APIs are currently not available f melander.dk 더보기
Project Source와 Unit Source의 구성 Program Project1; Uses Forms, Unit in 'Unit1.pas' {Form1} {$R *.RES} begin Application.Initialize; Application.CreateForm(TForm.Form1); Application.Run; end; Program 이 예약어는 프로그램 상단에 위치하고 프로그램 이름을 지정한다. Delphi 프로젝트를 저장할 때 주어진다. 프로그램은 Delphi내에서 스스로가 한 유닛이기 때문에 프로젝트는 같은 이름으로 프로그램이나 유닛을 갖지 못한다. Uses Uses 절에서 각 항목은 현재 프로그램이나 유닛에 의해 접근된 함수나 프로시저를 갖는 유닛의 이름을 부여한다. In 이 지시어는 유닛 파일이 프로젝트에 의해 사용된 파일이라기 보다.. 더보기
예외처리 구분 경우 (try/except/finally) 출처: http://byhou.tistory.com/375 Application.MessageBox(PChar('시작'), '정보', MB_ICONINFORMATION); // try문 외부에서 예외발생 경우 raise Exception.Create('예외경우 발생!'); // 아래 finally 구문 미실행 + Exit() // try문 외부에서 Exit()할 경우 if 조건 then Exit(); // 아래 try..finally와 관계 없이 종료 try try ... raise Exception.Create('예외발생!'); // except + finally + next 을 모두 수행 Exit(); // except + finally + next 을 모두 수행(=Exception.Create 와 .. 더보기
delay 1000ms -> 1sec procedure delay(Time: Integer); var PastCount: LongInt; begin PastCount := GetTickCount; repeat Application.ProcessMessages; until ((GetTickCount-PastCount) >= LongInt(Time)); end; 더보기