728x90 SMALL Open Source2 [ChatGPT][Raylib] Raylib를 사용하여 기본 창을 만들고 색상이 지정된 사각형을 그리는 간단한 샘플 코드 gcc -o my_game my_game.c -lraylib -lopengl32 -lgdi32 -lwinmm #include "raylib.h" int main(void) { // Initialization const int screenWidth = 800; const int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib Sample"); SetTargetFPS(60); // Set the frames per second // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update // Draw BeginDrawin.. 2024. 1. 2. [Arduino 아두이노][Arduino Esplora 아두이노 에스플로라] Arduino Esplora 아두이노 에스플로라 아두이노 에스플로라는 아두이노 프로젝트 중 컨트롤러 해당하는 프로젝트 보드이다. 대표적으로 아두이노 우노가 유명하지만 아두이노 에스플로라는 컨트롤러로 로봇이나 라인트레이서(작은 바퀴달린 자동차)을 제어하거나 게임할 때 게임패드로 이용할 수 있습니다. 공식 웹사이트에서 관련된 개발 문서들을 볼 수 있습니다. (단점은 개발문서가 영어만 있음) 구글에 "Arduino Esplora 아두이노 에스플로라" 검색 2022. 10. 15. 이전 1 다음 728x90 LIST