Notice
Recent Posts
Recent Comments
Link
목록직렬통신 (1)
WinGyu_coder
Flutter, 플러터로 직렬통신하기, RS-485, serial_communication
참고 문서 : https://pub.dev/packages/serial_communication 문서 해독 : GPT 플러터에서 RS-485 통신을 사용할 수 있습니다. serial_communication이라는 안드로이드 플랫폼 전용 플러터 패키지가 있으며, 이를 통해 USB RS232, RS485, UART와 통신할 수 있습니다. 사용 방법은 다음과 같습니다: 의존성 추가: pubspec.yaml 파일에 패키지를 추가합니다. dependencies: serial_communication: ^0.0.2 패키지 가져오기: Dart 파일 상단에 패키지를 가져옵니다. import 'package:serial_communication/serial_communication.dart'; 초기화: s..
Flutter 플러터, Dart 다트
2023. 11. 8. 21:41