
https://qiita.com/YuskeGoto/items/c4de1f868d0d6cce6e03https://ing-min.tistory.com/249 아두이노 _ 플로터 _DIY (GRBL CNC Shield + Z axis servo MIGRBL) + UGShttps://blog.naver.com/jooyon_smps/220600993613 파워서플라이 SMPS에 AC전원선과 출력선 연결 방법. 안녕하세요 주연티앤에스입니다. 오늘은 가장 기본이면서 가장 질문이 많은 SMPS 에 AC 전원선연결하... blog.ing-min.tistory.com TouchDesignerとGrblでやる貧乏人のためのステッピングピングモーター制御入門 - Qiitaこの記事はTouchDesigner Advent Calendar..

RandExt 라는 extension을 임포트함.base 자체에 random 이라는 커스텀 탭을 만들었음.이 아래 .local 이라는 base는 뭔지 모르겠지만. 여기에 설정된 값들 때문에 randomCHOP1안에 있는 노드들이 작동함.(?)ableton 관련인듯..? randomCHOP1 내부 노드들RandExt = text 노드parexec1 = Parameter excute 노드.RandExt 는 값을 받아오는 형태 ( base에 설정된 파라미터 값을 받아옴.) Parameter excute는 def onValueChange(par, prev) 함수를 통해서 변화를 감지함. **CHOP : scrip는 스크립트 콜백 노드를 통해서 시그널을 생성함.https://docs.derivative.ca/Sc..

#include #include #include #include #include #include #include #include #include #include #include #include "wiring_private.h" #include #include #include "DHT.h"#define DHTPIN 2#define DHTTYPE DHT22#define BH1750_ADDRESS 0x23 // BH1750 조도센서의 I2C 주소//ㄷ#define PULSE_FILTER_SIZE 5#define MLX90614_ADDRESS 0x5Aint pulseReadings[PULSE_FILTER_SIZE];int pulseIndex = 0;int total..
I2C 통신에서 각 장치는 고유한 주소를 가지고 있어야 한다.이 주소를 통해 마이크로컨트롤러가 특정 장치와 통신할 수 있으며,같은 버스상에 여러 장치가 연결되어 있더라도 각각을 구분하여 제어할 수 있다. 아두이노에서 I2C 주소 찾는코드#include void setup() { Wire.begin(); Serial.begin(9600); while (!Serial); // Leonardo: wait for serial monitor Serial.println("\nI2C Scanner");}void loop() { byte error, address; int nDevices; Serial.println("Scanning..."); nDevices = 0..

https://blog.naver.com/jooyon_smps/220600993613 파워서플라이 SMPS에 AC전원선과 출력선 연결 방법. 안녕하세요 주연티앤에스입니다. 오늘은 가장 기본이면서 가장 질문이 많은 SMPS 에 AC 전원선연결하... blog.naver.com https://youtu.be/8uhBzpyuVw4 https://youtu.be/fux7eI_-OTc https://electricdiylab.com/grbl-cnc-shield-z-axis-servo-migrbl/ GRBL CNC Shield + Z Axis servo MIGRBL - Electric DIY Lab In this post I'll give a detail tutorial on how we can attached S..

https://docs.arduino.cc/tutorials/nano-33-iot/uart/ https://docs.arduino.cc/tutorials/nano-33-iot/uart/ Learn how to send data from a Nano 33 IoT board to another board via UART. In this tutorial we will control the built-in LED on the Arduino Nano 33 IoT from another Arduino Nano 33 IoT. To do so, we will connect both boards using a wired communication prot docs.arduino.cc 개념 : UART 유선 통신 프로토콜 ..

아두이노 : 시리얼 통신 위한 코드 작성 #include #include #include "DHT.h" #define DHTPIN 2 #define DHTTYPE DHT22 BH1750 lightMeter; DHT dht(DHTPIN, DHTTYPE); void setup() { Serial.begin(9600); // Initialize illuminance sensor lightMeter.begin(BH1750::ONE_TIME_HIGH_RES_MODE_2); // Initialize temperature and humidity sensor dht.begin(); Serial.println("Running..."); } void loop() { // Measure illuminance uint16_t..

https://arduinostuff.blogspot.com/2014/05/neo6mv2-gps-module-with-arduino-uno-how.html NEO6MV2 GPS Module with Arduino Uno HOW-TO Introduction Using the NEO6MV2 GPS Module with Arduino is pretty straightforward. This tutorial uses TinyGPS Library by Mikal Hart. The ... arduinostuff.blogspot.com 소프트웨어 https://codingrun.com/100#google_vignette 여기에서 TinyGPS 라이브러리를 다운로드하세요: https://github.com/mikalh..

https://blog.naver.com/msyang59/220125925709 조도 센서 BH1750을 붙이다아두이노에 빛의 밝기를 측정하는 조도(照度) 센서 BH1750를 탑재한 GY-302 모듈을 붙여 보았습...blog.naver.comBH1750 센서를 탑재한 GY-302 모듈I2C 버스 인터페이스를 사용 원본 라이브러리는 Claws라는 분의 것을 다운로드 받아 이를 조금 수정하였고, 예제도 약간 바꿨습니다. 원본은 ☞ https://github.com/claws/BH1750 [출처] 조도 센서 BH1750을 붙이다|작성자 과객 /* 조도 센서 BH1750 라이브러리를 사용한 예제입니다. 이 예제는 BH1750 조도 센서를 One Time H-Resolution Mode 2를 이용하여조도를..

https://milkye.tistory.com/37 아두이노 온습도 센서 사용법! [아두이노] 온습도 센서 사용법 아두이노를 사용하여 온도/습도를 확인할 수 있는 방법입니다.다음의 회로도를 참고하여 아두이노와 점프선으로 연결을 해주시면 됩니다. 빨간선 : +5V검정선 : GN milkye.tistory.com // Example testing sketch for various DHT humidity/temperature sensors // Written by ladyada, public domain // REQUIRES the following Arduino libraries: // - DHT Sensor Library: https://github.com/adafruit/DHT-sensor-librar..
- Total
- Today
- Yesterday
- Midjourney
- sequelize
- Express
- Unity
- Arduino
- 4d guassian splatting
- houdini
- DeepLeaning
- MCP
- RNN
- three.js
- 후디니
- VR
- ai film
- node.js
- 유니티
- AI
- Java
- 4dgs
- krea
- 라즈베리파이
- CNC
- docker
- opencv
- MQTT
- VFXgraph
- Python
- TouchDesigner
- opticalflow
- colab
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |