개발정보121 static 정적변수, 함수 https://dojang.io/mod/page/view.php?id=690 C 언어 코딩 도장: 79.2 정적 변수 선언하기 정적 변수를 알아보기 전에 먼저 자동 변수로 예제를 작성해보겠습니다. 다음 내용을 소스 코드 편집 창에 입력한 뒤 실행해보세요. variable.c #include void increaseNumber() { int num1 = 0; // 변수 선언 및 dojang.io https://dojang.io/mod/page/view.php?id=691 C 언어 코딩 도장: 79.3 정적 함수 사용하기 이번에는 정적 함수를 알아보겠습니다. 다음 내용을 프로젝트 디렉터리에 print.c로 저장하세요(반드시 프로젝트에 포함해야 합니다). print.c #include void print() .. 개발정보/C,C++ 2021. 7. 25. 크기가 표시된 정수 자료형 https://dojang.io/mod/page/view.php?id=35 C 언어 코딩 도장: 7.5 크기가 표시된 정수 자료형 사용하기 C 언어는 컴퓨터 역사상 초기에 개발된 언어이기 때문에 char, short, long, long long 등 지금 보기에는 다소 모호한 표기법이 많습니다. 처음에는 이름 그대로 역할을 수행했지만 시간이 지나면서 16비 dojang.io int8_t num1 = -128; // 8비트(1바이트) 크기의 부호 있는 정수형 변수 선언 int16_t num2 = 32767; // 16비트(2바이트) 크기의 부호 있는 정수형 변수 선언 int32_t num3 = 2147483647; // 32비트(4바이트) 크기의 부호 있는 정수형 변수 선언 int64_t num4 = 92.. 개발정보/C,C++ 2021. 7. 25. MCU GPIO핀과 연결되는 스위칭FET의 Gate 저항값 의미(장단점) https://cafe.naver.com/carroty 당근이의 AVR 갖구 놀기 : 네이버 카페 당근이의 하드웨어(AVR) 관련 까페입니다. cafe.naver.com 개발정보/HardwareDesign 2021. 7. 23. Open drain& collector 뜻 https://eunkyovely.tistory.com/30 오픈 컬렉터(Open Collector) & 오픈 드레인(Open Drain) 안녕하세요 오늘은 오픈 컬렉터/오픈 드레인에 대하여 정리해보겠습니다. BJT의 경우 Open collector, MOSFET의 경우 Open-Drain이라고 부릅니다. 개념적으로는 같은 의미라고 보시면 될 것 같습니다. 오 eunkyovely.tistory.com https://idsn.tistory.com/50?category=918086 [임베디드 시스템] GPIO 설정 - PUSH-PULL, OPEN DRAIN 파헤치기 GPIO을 세팅하다 보면 가끔 Push-Pull, Open Drain, Open Collector이란 단어들을 자주 접하게 됩니다. 이번에 GP.. 개발정보/HardwareDesign 2021. 7. 22. About TP4056(ME4057) 개발정보/HardwareDesign 2021. 7. 22. flutter reformat shortcut keys in vscode https://developpaper.com/question/how-to-format-flutter-code-in-vscode/ How to format flutter code in vscode? - Develop Paper DWQA Questions › Category: Program › How to format flutter code in vscode? 0 Vote Up Vote Down codingfly asked 2 years ago Question: Using the formatting that comes with vscode, component parentheses are displayed in a row. I’d like a new line displa developpaper.com Shor.. 개발정보/Flutter 2021. 7. 19. flutter_svg: ^0.22.0 https://pub.dev/packages/flutter_svg flutter_svg | Flutter Package An SVG rendering and widget library for Flutter, which allows painting and displaying Scalable Vector Graphics 1.1 files. pub.dev https://post.naver.com/viewer/postView.nhn?volumeNo=27689642&memberNo=43589165&vType=VERTICAL SVG가 뭔가요? [BY 비비빅닷컴] 디자인 지식인 - SVG가 뭔가요?안녕하세요 디자인, 그 안에 담긴 진짜 이야기를 탐구하... m.post.naver.com 개발정보/Flutter 2021. 7. 19. Error: Cannot run with sound null safety, because the following dependencies https://stackoverflow.com/questions/64917744/cannot-run-with-sound-null-safety-because-dependencies-dont-support-null-safety Cannot run with sound null safety because dependencies don't support null safety I have followed "Enabling null safety" on dart.dev and also migrated my whole Flutter app to null safety. Now, I am trying to run it using flutter run, however, it will not start because ... s.. 개발정보/Flutter 2021. 7. 19. 코드 리팩토링 https://refactoring.guru/replace-error-code-with-exception Replace Error Code with Exception / Refactoring / Techniques / Simplifying Method Calls Replace Error Code with Exception Problem A method returns a special value that indicates an error? Solution Throw an exception instead. Before int withdraw(int amount) { if (amount > _balance) { return refactoring.guru 개발정보/C,C++ 2021. 7. 19. 스위치 채터링 이해 및 하드웨어&소프트웨어 설계 https://blog.naver.com/ansdbtls4067/221367123030 실무 회로설계에서 기계적 스위치 입력 회로 설계법 0. 들어가며...실무 회로설계 강의 포스팅에 새로운 주제로 포스팅을 하는 땜쓰 입니다. 이번 포스팅에서는... blog.naver.com https://arduinogetstarted.com/tutorials/arduino-button-long-press-short-press Arduino - Button - Long Press Short Press | Arduino Tutorial Learn how to detect the button long press and short press. The detail instruction, code, wiring diagram,.. 개발정보/HardwareDesign 2021. 7. 19. void와 static void함수의 차이점 https://pythonq.com/so/c/365745 c - C에서 void와 static void 함수의 차이점은 무엇입니까? - IT 툴 넷 c - C에서 void와 static void 함수의 차이점은 무엇입니까? 기사 출처 c static pythonq.com 개발정보/C,C++ 2021. 7. 19. About a soft device 개발정보/Embedded_nRF52 2021. 7. 15. 이전 1 2 3 4 5 6 ··· 11 다음