일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IoT Central
- vscode
- WIZnet
- Linux
- raspberrypi
- Azure
- PuTTYgen
- nodejs
- SSH
- putty
- adafruitio
- W5500
- Raspberry Pi
- Private Key
- thonny
- W5100S-EVB-Pico
- circuitPython
- openssl
- 라즈베리파이3
- micropython
- w5500-evb-pico
- Ethernet
- aws
- x.509
- RP2040
- Python
- ubuntu
- W5100S
- ChatGPT
- PIR
- Today
- Total
목록전체 글 (53)
Develop Note
Python 명령어의 기본 사용 버전을 변경하려고 할 때, 심볼릭 링크를 사용하여 간단히 버전을 변경할 수 있다. WSL Ubuntu를 설치하면 Python이 2.7, 3.8 버전 기본 설치 되어 있는데, python 명령에 대한 링크가 python2.7로 연결되어 있다. 최근엔 Python3 버전만 사용하기 때문에 연결 버전을 변경하는 방법에 대해 간단히 정리해 둔다. Python 버전 확인 $ python --version Python 2.7.18 $ ls -al /usr/bin/python* Python 버전 변경 심볼릭 링크 수정 기존 심볼릭 링크 파일을 삭제하고, python3.8을 python으로 새로 연결해 준다. # 기존 링크된 파일 제거 sudo rm /usr/bin/python # py..
Let's connect to AWS IoT Core using the W5100S-EVB-Pico board. I will implement it using Micropython and connect it with the MQTT protocol. Proceed to the following process. AWS services AWS IoT Core and device creation Download device certificate Upload Micropython firmware Write the main code Certificate conversion Check operation Prerequisite For reference, the host PC environment uses Wi..
개요 최근 Azure Sphere의 10/100 이더넷 네트워크 인터페이스 어댑터로 WIZnet W5500이 채택되었고, 22.09 릴리즈 버전에서 업데이트 되었다. 아래 링크에서 22.09 릴리즈에 대한 업데이트 내용을 확인할 수 있다. Azure Sphere 새 기능: 22.09 릴리즈 General Availability: Azure Sphere version 22.09 new and updated features Avnet Azure Sphere Starter Kit를 사용하여 연결 및 테스트가 가능하여 이에 대한 내용을 정리해 본다. 하드웨어 구성 Avnet Azure Sphere Starter Kit V1 V2 사용 가능 WIZ850io (W5500 ethernet module) Micro 5..