본문 바로가기
반응형

분류 전체보기248

NodeMCU를 사용하여 “HELLO WORLD!” 웹에 출력하기 https://blog.naver.com/roboholic84/221187848414NodeMCU를 사용하여 “HELLO WORLD!” 웹에 출력하기 NodeMCU를 사용하여 “HELLO WORLD!” 웹에 출력하기NodeMCU를 사용하여 “HELLO WORLD!” 웹에 출력하기 NodeMCU 구매 바로가기 (국내...blog.naver.com     업로드가 완료된 후에, 오른쪽 상단의 시리얼 모니터링 버튼을 클릭하고 NodeMCU의 리셋버튼을 누르면 원격 접속하기 위한 URL을 확인할 수 있습니다. #include const char* ssid = "iptime";const char* password = ""; WiFiServer server(80); void setup() { Serial.beg.. 2024. 5. 9.
[Python]PyQt Widgets https://www.pythonguis.com/tutorials/pyqt-basic-widgets/ PyQt5 Widgets — QCheckBox, QComboBox, QPushButton, QLabel, QSliderPyQt5 has a huge library of widgets, including buttons, checkboxes, list boxes, and sliders or dials. Learn how to use them in your apps. In Qt, like in most GUI frameworks, widget is the name given to a component of the UI that the user can interact with.www.pythonguis.com .. 2024. 5. 7.
[Python] Candle Stick Chart https://levelup.gitconnected.com/7-fascinating-python-financial-graphs-that-will-amaze-you-b21d5f65cd1a 7 Fascinating Python Financial Graphs That Will Amaze You!Introduction: Exploring the Power of Python in Financial Graphslevelup.gitconnected.com  import plotly.graph_objects as goimport pandas as pd# Sample data: Date, Open, High, Low, Closedata = { 'Date': pd.date_range(start='2024-01-01'.. 2024. 5. 7.
Dragon Moving Banner #Dragon Moving Bannerimport matplotlib.pyplot as pltimport numpy as npfrom matplotlib.image import imread# Load two PNG imagesimage1_path = "1.png"image2_path = "2.png"x1 = imread(image1_path)x2 = imread(image2_path)'''# two images x1 is initially visible, x2 is notx1 = np.random.random((100, 100))x2 = np.random.random((150, 175))'''# Set the size of the figureplt.figure(figsize=(10, 2))# arbitr.. 2024. 5. 7.
반응형