일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- showDialog
- c
- Properties.Settings.Default
- AlertDialog
- flutter button
- flutter tcpip client
- TCPIP
- Server
- ubuntu 19 한글 입력
- Listview filtering
- flutter tcpip server
- debugShowCheckedModeBanner
- dart:io
- debug banner
- array
- flutter
- ListView.build
- peaks
- Today
- Total
목록분류 전체보기 (94)
Louie De Janeiru
ls -al /dev/i2c* i2cdetect -y 0 i2cdetect -y 1 pi@raspberrypi:~/Work/temp $ ls -al /dev/i2c* crw-rw---- 1 root i2c 89, 0 May 6 15:09 /dev/i2c-0 crw-rw---- 1 root i2c 89, 1 May 6 15:09 /dev/i2c-1 crw-rw---- 1 root i2c 89, 10 May 6 15:09 /dev/i2c-10 crw-rw---- 1 root i2c 89, 20 May 6 15:09 /dev/i2c-20 crw-rw---- 1 root i2c 89, 21 May 6 15:09 /dev/i2c-21 crw-rw---- 1 root i2c 89, 22 May 6 15:09 /de..
1. Nordic semi 의 SDK를 이용하여 custom profile 을 적용해보려고 한다 개발 환경 SDK version : nRF5_SDK_17.0.2 IDE : SEGGER ES/Keil How to 아래 사이트를 참고하면 customer profile 을 작성 할 수 있다 https://g1embed.tistory.com/23?category=844478 nRF52 : BLE 개발방법 - (4) 4) Actual Code / API Use 개발환경 : Seggar Embedded Studio (SES) 개발보드 : nRF52DK (PCA10040) i) - SDK폴더\examples에 폴더 생성 (폴더 이름은 마음대로) ii) - 첨부된 파일의 압축을 풀고 폴더 안에 위.. g1embed.t..
VS code 에서 user snippet 추가하기 1. File -> Preference -> User Snippet 2. 저장하고자 하는 이름.json 을 입력 후 엔터 3. json file 에서 아래처럼 필요한 snippet 을 설정하여 입력 4, 저장 후 사용하면 추가된 snippet 이 동작한다. { // Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and // description. Add comma separated ids of the languages where the snippet is applicable in the scope field...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; private string sTitle = "Tool GUI Ver 0.1"; public Form1() { InitializeComponent(); DateTime buildDate = new FileInfo(Assembly.GetExecutingAss..
sudo usermod -aG dialout $USER sudo reboot stty -F /dev/ttyS0 115200 cs8 -cstopb -parenb stty -F /dev/ttyS1 115200 cs8 -cstopb -parenb cat /dev/ttyS0 echo "123" > /dev/ttyS1 1. Oepn read terminal with ttyS0 2. Open write terminal with ttyS1 3. On read terminal, read ttyS0 4. On write terminal, write "123" 5. Should see "123" on read terminal In case minicom... minicom -D /dev/ttyS1 you can type ..
using System.IO; using System.Reflection; private void Form1_Load(object sender, System.EventArgs e) { ... DateTime buildDate = new FileInfo(Assembly.GetExecutingAssembly().Location).LastWriteTime; this.Text += " ( Built : " + buildDate + ")"; }