블로그가 어렵다...
무엇이든 세상에는 쉬운게 없고 꾸준히 하는 게 너무 어렵다.
그나마 쉽게 해볼라고, 찾고 찾아서 텀블러 베이스의 기술자료모음 관련 블로그를 해볼라고 했는데 이것 저것 하나도 제대로 안되네~
티스토리 운영중인 아래 블로그에 필요한 내용을 옮기고 일단 하나라도 잘해야 할 듯 ^-^
여기 => https://ts.devbj.com/category/IT

Love Begins
sheepfilms
KIROKAZE
almost home
he wasn't even looking at me and he found me
PUT YOUR BEARD IN MY MOUTH

ellievsbear
No title available
official daine visual archive
Misplaced Lens Cap
d e v o n
let's talk about Bridgerton tea, my ask is open

Kiana Khansmith

No title available

gracie abrams

if i look back, i am lost

Andulka

No title available
Cosmic Funnies

No title available

seen from Malaysia
seen from Italy

seen from Türkiye

seen from Malaysia
seen from Mexico

seen from Saudi Arabia

seen from United Kingdom

seen from United States

seen from United Kingdom
seen from Germany
seen from Indonesia

seen from South Korea
seen from Malaysia
seen from United States

seen from United States

seen from United States
seen from France

seen from United Kingdom

seen from United States

seen from Canada
@bbkic
블로그가 어렵다...
무엇이든 세상에는 쉬운게 없고 꾸준히 하는 게 너무 어렵다.
그나마 쉽게 해볼라고, 찾고 찾아서 텀블러 베이스의 기술자료모음 관련 블로그를 해볼라고 했는데 이것 저것 하나도 제대로 안되네~
티스토리 운영중인 아래 블로그에 필요한 내용을 옮기고 일단 하나라도 잘해야 할 듯 ^-^
여기 => https://ts.devbj.com/category/IT
아두이노로 제어하는 7 Segments LED
국내 메이커 글인데, 좋은 글이 굉장히 많이 있네요. 열심히 작업 하시는 분 같습니다.
다른 글도 쭉 읽어봐야 겠네요.
7 Segments LED 모듈을 아두이노로 제어하는 방법에 대한 연재입니다.
TM1637 드라이버 칩을 이용한 7 Segments LED 모듈에 대한 소개와 전용 라이브러리를 통해 아두이노에서 제어하는 방법을 설명합니다.
아두이노로 7 segment LED 제어하기 #1 모듈 소개 및 라이브러리 설치
아두이노로 7 segment LED 제어하기 #2 TM1637 라이브러리 1
아두이노로 7 segment LED 제어하기 #3 TM1637 라이브러리 2
(via 아두이노로 제어하는 7 Segments LED)
vscode keyboard shortcuts for Windows
from : https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf
Git - 토픽 브랜치와 통합 브랜치에서의 작업 흐름 파악하기
브랜치를 이용해서 프로젝트를 수행하게 되는데, 그 개념을 제대로 알자.
아래 링크로 가면 아주 자세하게 설명과 그림이 잘 표현되어 있다.
https://backlog.com/git-tutorial/kr/stepup/stepup1_5.html
버그 수정 브랜치, 기능 추가 브랜치 이런 식으로 활용할 수 있는데,
아래 그림은 버그 수정한 브랜치를 다시 master로 merge 한 후, 기능 추가 브랜치는 그 버그 해결부분을 반영하기 위해 rebase 해서 사용한 것을 그림으로 보여주는 것
자세한 내용은 해당 링크로 들어가서 공부해요~
(추가)
merge 할 때, 조금 특별한 옵션인 '--squash'..커밋을 하나로 통합해서 합병할 수 있다.
namespace의 장점과 사용법
가끔 소스코드에 등장하기에, 정리된 페이지 보면서 습득~~
namespace
아래 예는 Tree 라는 문자열이 라이브러리 A와 B 에 쓰여 컴파일 오류가 나는 상황, 가장 쉽게는 변수명을 바꾸면 되는데, 양이 많은 경우에는 난감할 따름.
이경우, namespace 가 엄청 유용하다.
(via You complete me :: namespace의 장점과 사용법)
구현은 간단합니다.
namespace로 정의할 것들을 블럭으로 묶으면 됩니다. namespace A { struct Tree {}; } namespace B { int Tree; }
사용하는 측에서는 다음중 하나를 선택해 쓰면 됩니다. 1. using namespace A; (의미 : 현재 소스 코드에 A사 라이브러리만 쓰이는경우, 이름충돌이 예상되지 않으므로, A에 있는 모든 이름들을 현재 소스의 범위내에 가져온다) 2. using A::Tree; (의미 : 현재 소?코드에 A사와 B사의 라이브러리가 동시에 쓰이는데, 현재 블럭에서 사용할 Tree는 A사의 Tree 구조체이다) 3. B::Tree = 10; (의미 : 현재 소스 코드에 A사와 B사의 라이브러리가 동시에 쓰이는데, 현재 블럭에서 두 회사의 라이브러리가 모두 섞여 쓰이므로 명시적으로 이름을 정해준다)
CircuitPython on Arduino MRKZero
Arduino 보드로 CircuitPython 을 활용해 보기 위해 일단 개발 환경을 설정해야 하는데, 관련 내용을 정리해 둔 페이지를 일단 keep!!
how to install CircuitPython on a variety of SAMD21-based boards
https://learn.adafruit.com/installing-circuitpython-on-samd21-boards/overview
The easiest method for installing CircuitPython is through the UF2 bootloader. UF2 is a slick piece of code that runs on your microcontroller, and it allows the board to appear as a drive on your computer. From there, you can simply drag-and-drop the CircuitPython installer! We will need to take the following steps to install CircuitPython on a SAMD21 board:
Install Arduino and the appropriate board definition
Download the UF2 bootloader Arduino code for your board
(add link) https://circuitpython.org/board/arduino_mkrzero/
Upload the UF2 bootloader code to your board from Arduino
Download the CircuitPython installer for your board
Copy the CircuitPython installer to your board
Test it!
What is CircuitPython?
https://learn.adafruit.com/welcome-to-circuitpython/what-is-circuitpython
(via What is a REPL?)
A REPL (say it, “REP-UL”) is an interactive way to talk to your computer in Python. To make this work, the computer does four things:
Read the user input (your Python commands). Evaluate your code (to work out what you mean). Print any results (so you can see the computer’s response). Loop back to step 1 (to continue the conversation).
Mu is a simple code editor that works with the Adafruit CircuitPython boards.
for the installation, please refer the Adafruit tutorial from https://learn.adafruit.com/welcome-to-circuitpython/installing-mu-editor
Let’s try it!!
MQTT library with IPv6
IPv6 를 지원하는 MQTT 라이브러리
WIZnet W6100 칩을 사용하면 아주 쉽게 가능하다.
소스코드는 아래 링크에서 맘대로 다운이 가능~
https://github.com/WIZnet-ioLibrary/W6100EVB-MQTT
단, 현재는 Subscribe 만 지원 중, 점차 개선 작업이 진행될 예정입니다.
테스트는 너무나 유명한 test.mosquitto.org 에서
IPv4로 접속하는 예제는 많이 있지만, IPv6를 사용하는 경우는 아직 드문..
먼저 선점하세요. IPv6 세상
결과 시리얼 로그는 아래와 같습니다. Publish 한 메시지를 시리얼 터미널에 찍어주는 예제 입니다.
좋은 git commit 메시지를 위한 영어 사전
아주 유용한 글이다.
정독이 필요하다. 일부만 발췌해 보자.
ALLOW
Make와 비슷하지만, 허용을 표현할 때 사용합니다.
Allow A to B A가 B를 할 수 있도록 허용합니다
Allow the output filename to be a {Function}
Allow Node.js-like runtimes to identify as Node.js as well.
Allow passing parseOptions to ApolloServerBase constructor.
Allow an optional function to resolve the rootValue, passing the DocumentNode AST to determine the value.
(via 좋은 git commit 메시지를 위한 영어 사전)
Eclipse + GNU MCU Eclipse toolchain
툴 설치 해보고 알았다. 따로 GNU Arm embedded toolchain 을 별도로 설치할 필요가 없다.
이전글 참고. GNU Arm Embedded Toolchain + Eclipse install
https://it.devbj.com/post/184592236931/gnu-arm-embedded-toolchain-eclipse-install
1. Eclipse 설치 후, Eclipse Marketplace... 메뉴를 클릭하고,
2. GNU MCU Eclipse 를 설치한다.
3. 그냥 모든 features 를 다 설치한다. ^^
4. 프로젝트 설정에서 toolchain을 아래 것으로 선택하면 끝!!
이게 더 쉽다.
GNU Arm Embedded Toolchain + Eclipse install
GNU Arm Embedded Toolchain
arm 홈페이지에서 지원을 하네요.
https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads
설치화면 예시
Eclipse
설치 파일은 여기서
https://www.eclipse.org/downloads/packages/
설치화면 예시
GARP - Gratuitous ARP
Gratuitous ARP(GARP)
IP 충돌 감지
MAC Table update
ARP Table update(MAC address가 바뀌는 이중화)
IP interface or link down에서 Up 상태 변화 시 MAC Table 및 ARP Table update
[출처] [오리뎅이의 LAN 통신 이야기 - 6] Gratuitous ARP가 얼마나 요긴한데, 이름이 꽁짜 ARP?|작성자 오리뎅이
ARP packet 의 내용은 아래 그림과 같다. 핵심은 대상 MAC은 0x00 으로 채워두고, 대상 IP를 자신의 IP를 입력하고 보내면 된다.
Ethereal packet capture 은 아래 그림 참고
W6100 Design contest
WIZnet's first IPv4 IPv6 dual stack products are all yours to test and play!🥳 Join WIZnet design contest to create any IoT project using W6100 related products and win $15,000!🤩
Contest Home
Link : https://maker.wiznet.io/contests/contest-in-progress/201905-iot-ioffload-contest/
For more details, also visit https://maker.wiznet.io/
Schedule
5/1 ~ 5/31 : Register as a participant
5/1 ~ 7/31 : Create new project
8/1 ~ 8/30 : Voting & Judging
8/31 : Winners announced
S/W Library reference
For Arduino users, W6100 (MKR-)Ethernet shield
아두이노 사용자들은 아래 라이브러리 정보를 활용하시면 됩니다.
Ethernet Library (IPv4)
Application & Examples
Ethernet Library (IPv6)
Application & Examples
W6100-EVB Application examples
1. TrueStudio IDE
MQTT
TLS
Loopback
Address Auto Confiduration
FTP CLIENT
FTP SERVER
DNSv4
HTTP SERVER
HTTP CLIENT
NTP
2. Eclipse(GCC) IDE
Loopback
TFTP CLIENT
TFTP SERVER
Good luck to you!!!!
(via Learn Hardware Programming with CircuitPython at Codecademy - YouTube)
#CircuitPlayground 소개
간단하게 파이썬 프로그램으로 보드 센서 사운드 출력까지 가능한 플랫폼
영상자료에서 주요한 장면만 뽑아 보면
보드는 둥근 모양으로 잡고 다루기 쉽게 되어 있고, USB로 프로그래밍 및 파워를 공급해주게 되어 있네.
이 둥근 보드에는 다양한 기능이 있는데....
(via Limor Fried, Founder & CEO, Adafruit Industries | MAKERS - YouTube)
#Adafruit CEO 리모 프라이드 소개하는 5분 정도의 동영상
#Wired 매거진의 커버로 선정된 첫번째 여성 엔지니어.
살짝 이런것도 보고 자극을 받자.
“LadyAda” 라는 이름을 어디서 따왔는지...
Mugsy | The Open Source Robotic Coffee Maker
(via Mugsy | The Open Source Robotic Coffee Maker by Matthew Oswald — Kickstarter)
DIY 에스프레소 기계, 흥미로운 프로젝트~
Git tutorial
총 50개의 수업 무려 07:53:47 강의 - 생활코딩에서 진행된 강의를 모아둔 것 같네요.
Git 정복을 위해 시간투자를 하자!!
https://lessipe.com/course/1
이게 너무 길고 어렵다고 생각되면, 같은 사이트에서 제공하고 있는 초보자를 위한 Git을 먼저 마스터 하면 될 듯. 단 2개의 강의만 있네요.
Sourcetree 라는 프로그램으로 GUI 환경에서 하는 방법을 익히는 것이라 클릭 클릭으로 Git 을 다뤄볼 수 있다.
쉽고 빠르게 GIT 시작하기