'잡동사니'에 해당되는 글 13451건

  1. 2025.04.30 k-pass 다자녀 혜택 적용 늦어!!
  2. 2025.04.29 ntc r/t-tol
  3. 2025.04.28 blender in openGL
  4. 2025.04.28 전자로드 사용법
  5. 2025.04.26 돈 돈 돈 2
  6. 2025.04.25 로봇 tcp 확인
  7. 2025.04.24 베데스다... 사태?
  8. 2025.04.23 doom eternal 시....작?
  9. 2025.04.23 doom normal 난이도 끝
  10. 2025.04.23 참관수업 그리고 데이트 2

저번달 초에 신청했는데 이번달에야 30% 적용되서 들어왔다.

그나저나 이번달은 꽤 늦게 처리되서 들어왔네. 대개 28일 쯤엔 들어오더니..

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

독서  (0) 2025.05.15
일하기 싫어!!!  (0) 2025.05.09
돈 돈 돈  (2) 2025.04.26
뭐?  (0) 2025.04.17
먼가 대충 하나 쳐냄  (0) 2025.04.16
Posted by 구차니
이론 관련/전기 전자2025. 4. 29. 10:34

min, max, mean 은 최소, 최대, 중간값인데

r-tol(min/max) t-tol(min/max)가 보이는데 용도불명이라 검색중

 

2.1.4. tolerance
Tolerance Resistance 
The resistance tolerance for an NTC thermistor is specified for one temperature point, which is application specific and the standard value is usually 25°C. It is also possible to specify at the other temperatures upon customer request.

Temperature tolerance By means of Formula 3, the temperature tolerance can be calculated for small temperature interval as following formula: ΔT = 1 / α ・ ΔR / R (Formula 6) For practical application, we recommend that the standardized R / T table be used.

[링크  https://product.tdk.com/system/files/dam/doc/product/sensor/ntc/ntc_element/general_tech_info/ntc_thermistor_general_technical_information_digest_en.pdf]

'이론 관련 > 전기 전자' 카테고리의 다른 글

전자로드 사용법  (0) 2025.04.28
합성저항, 목표저항 계산  (0) 2025.01.07
edge detector  (0) 2024.11.15
택 스위치(TACTILE SWITCH)  (0) 2024.09.03
spi 통신 cpol cpha  (0) 2024.08.28
Posted by 구차니
Programming/openGL2025. 4. 28. 19:06

Open Asset Import Library(assimp) 를 이용해서 blender를 읽어오고 openGL로 그릴수 있는 것으로 보인다.

 

Features

  • Reads more than 30 3D file formats, including Collada, X, 3DS, Blend, Obj
  • Converts them to a hierarchical in-memory data structure
  • Provides 'post-processing steps' to improve the input data, i.e. generate normals and tangents or fix import issues.
  • Provides APIs for both C and C++
  • Imports skeleton animations and skinning weights
  • Supports complex multi-layer materials
  • www.open3mod.com/ is an Open-Source viewer that is based off assimp to view models (Windows only)

[링크 : https://sourceforge.net/projects/assimp/]

 

Assimp::Importer importer;
const aiScene *scene = importer.ReadFile(filename,aiProcessPreset_TargetRealtime_Fast);
aiMesh *mesh = scene->mMeshes[0]; //assuming you only want the first mesh

float *vertexArray;
float *normalArray;
float *uvArray;

int numVerts;
next extract the data

numVerts = mesh->mNumFaces*3;

vertexArray = new float[mesh->mNumFaces*3*3];
normalArray = new float[mesh->mNumFaces*3*3];
uvArray = new float[mesh->mNumFaces*3*2];

for(unsigned int i=0;i<mesh->mNumFaces;i++)
{
    const aiFace& face = mesh->mFaces[i];

    for(int j=0;j<3;j++)
    {
        aiVector3D uv = mesh->mTextureCoords[0][face.mIndices[j]];
        memcpy(uvArray,&uv,sizeof(float)*2);
        uvArray+=2;

        aiVector3D normal = mesh->mNormals[face.mIndices[j]];
        memcpy(normalArray,&normal,sizeof(float)*3);
        normalArray+=3;

        aiVector3D pos = mesh->mVertices[face.mIndices[j]];
        memcpy(vertexArray,&pos,sizeof(float)*3);
        vertexArray+=3;
    }
}

uvArray-=mesh->mNumFaces*3*2;
normalArray-=mesh->mNumFaces*3*3;
vertexArray-=mesh->mNumFaces*3*3;

[링크 : https://nickthecoder.wordpress.com/2013/01/20/mesh-loading-with-assimp/]

    [링크 : https://stackoverflow.com/questions/35111681/make-a-model-in-blender-and-load-in-opengl]

 

'Programming > openGL' 카테고리의 다른 글

opengl glortho gluperspective  (0) 2023.08.28
glReadPixels() 와 glUseProgram()  (0) 2022.11.17
openCV + openGL  (0) 2022.02.08
glMatrixMode()  (0) 2020.04.14
opengl superbible 3rd 리눅스 빌드 패키지  (0) 2020.04.08
Posted by 구차니
이론 관련/전기 전자2025. 4. 28. 15:51

M9712 라는 전자로드가 있어서 배터리 방전에 사용을 위해 찾아보는 중

Step 1. SHIFT - 8 눌러서 END TEST VOLT=0.000000V 가 뜨도록 함

초기상태에서


SHIFT 버튼을 누르면 우측에 Shift라고 뜨고



8을 누르면 OFF 라고 바뀌면서 하단에 END TEST VOLT가 뜬다.


Step 2. 숫자와 .을 이용하여 원하는 전압을 입력

9.6V 완전방전을 목표로 할거라 9.6을 입력함


Step 3. Enter를 누름(0.00W 0.00000AH 라고 아래 라인에 뜸

가장 처음 화면으로 돌아온다.


Step 4. On/Off 버튼을 눌러 시작
        상단 우측에 BATT 라고 뜨면 배터리 테스트 모드

on/off 버튼을 누르면 BATT로 바뀐다.

 

Battery Life StabilityTest
In Constant Current mode the Serial electronic load can test battery life stability Set up the load to
control voltage level. When the voltage of the battery is too low, the serial electronic load will identify the
battery being on the threshold value set or at the margin of an insecure state and will stop testing
automatically. When the load is in test mode, you can see the battery's voltage, battery discharge current,
electronic, load power and battery capability that remains. If the load is connected through PC software,
then you can see the battery discharge curve.. This test can measure the reliability and remaining life of
the battery. So it is important to perform the test before the battery is re-charged, or swapped out for a
newer battery.
Operation:
1) In standard constant current mode, adjust the load's current value to the same discharge current
value of battery needed.
2) Press both Shift+8(Battery)keys. When VFD display shows END TEST VOLT= xxxxxxxxV,
input the shut-off voltage and press Enter to start the battery life stability test. When the battery's
voltage drops to the turn-off voltage set, the load will automatically shut off.
3) Press the On/Off keys to start or pause the battery capability test.
4) Press both the Shift+8(Battery) keys to exit the battery life stability test mode.

[ : http://www.maynuo.com/downloadfile/2009102937213561.pdf]

[ : http://www.maynuo.com/english/xpro.asp?pid=52]

 

'이론 관련 > 전기 전자' 카테고리의 다른 글

ntc r/t-tol  (0) 2025.04.29
합성저항, 목표저항 계산  (0) 2025.01.07
edge detector  (0) 2024.11.15
택 스위치(TACTILE SWITCH)  (0) 2024.09.03
spi 통신 cpol cpha  (0) 2024.08.28
Posted by 구차니

멀해야지 좀 윤택하게 살까..

돈이 더 늘어난다고 여유로워 질까? 에효..

모르겠다. 어렵다..

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

일하기 싫어!!!  (0) 2025.05.09
k-pass 다자녀 혜택 적용 늦어!!  (0) 2025.04.30
뭐?  (0) 2025.04.17
먼가 대충 하나 쳐냄  (0) 2025.04.16
wow  (0) 2025.04.10
Posted by 구차니
embeded/robot2025. 4. 25. 09:05

rx ry rz 를 조작하면

공구 위치를 고정된채 로봇팔이 움직인다고 한다.

 

[링크 : https://youtu.be/QgsWCznw8Oo?si=EcLhJN2PKbRUtLBk]

'embeded > robot' 카테고리의 다른 글

로봇 좌표계, TCP ... 2?  (0) 2024.09.02
elephantrobotics Mycobot-pi atom  (0) 2024.07.11
elephant robotics cobot python api  (0) 2023.12.21
산업로봇과 협동로봇의 차이  (0) 2023.12.21
오일러 각 / 짐벌락 / 쿼터니언  (0) 2023.12.21
Posted by 구차니
게임/doom2025. 4. 24. 22:48

둠 이터널 하려니 베데스다 가입하라는데

막상 가입하려니 귀찮은데다가

엘더스크롤 4 사태로 인해서(한국광고는 했으나 한글 자막 없음, 출시 안함, 지역락)

지금 시점에 이거 가입하면 완전 흑운데? 라는 느낌이 들어서

좀 사태가 진정되면 그때 시작을 해야겠다라고 마음 먹는 중

 

[기자수첩] '토드 하워드'와 '토도키 하와도', 그 사이 어딘가

[링크 : https://www.inven.co.kr/webzine/news/?news=305243]

'게임 > doom' 카테고리의 다른 글

doom eternal 시....작?  (0) 2025.04.23
doom normal 난이도 끝  (0) 2025.04.23
doom 룬 획득  (0) 2025.04.20
doom 노트북에서 시도  (0) 2025.04.08
doom 리부트 시작  (0) 2025.04.06
Posted by 구차니
게임/doom2025. 4. 23. 22:56

어...? 가입을 해야해? 귀찮은데?!?!

 

그나저나 그냥 스샷으로는 안 잡혀서

스팀 스샷을 통해서 꺼내야 해 무지 귀찮네 -_-

'게임 > doom' 카테고리의 다른 글

베데스다... 사태?  (0) 2025.04.24
doom normal 난이도 끝  (0) 2025.04.23
doom 룬 획득  (0) 2025.04.20
doom 노트북에서 시도  (0) 2025.04.08
doom 리부트 시작  (0) 2025.04.06
Posted by 구차니
게임/doom2025. 4. 23. 22:04

빡세게(?) 끝내고 나니 난이도 변경이 가능하다는 것을 발견.. -_-

나 왜 이 고생을 했지!??!

 

 

그나저나 보스 잡으면 뜨는 도전과제가 32.2% 밖에 안된다고 해야하나

구매한 사람중 무려 32.2%는 엔딩을 봤다고 해줘야 하려나?

'게임 > doom' 카테고리의 다른 글

베데스다... 사태?  (0) 2025.04.24
doom eternal 시....작?  (0) 2025.04.23
doom 룬 획득  (0) 2025.04.20
doom 노트북에서 시도  (0) 2025.04.08
doom 리부트 시작  (0) 2025.04.06
Posted by 구차니

오전에 딸래미 참관수업이 있어서 갔는데

선생님께서 모든 학부모들이 쓴 편지를 읽게 하는 바람에

쉬는시간이 지나고 다음 수업시작 시간까지 잡아 먹어 버림(!)

 

그 와중에 프리젠테이션 16:9도 아닌 4:3 비율이고

FHD 카메라로 애들 편지 보여주는데 화질은 좋은데 딜레이가 3초 이상, 프레임도 7 프레임?

아니 머 이런 좋으면서 좋지 않은 환경이?!?! 분노중 ㅋㅋ

 

암튼 그렇게 애들 일정을 소화하고

오랫만에 아내와 오봇하게 데이트!

스타필드도 갔더니 벌룬 페스티벌이라고 별별게 다 보이고

그 와중에(!) 트레이더스 닫아서 가는 날이 장날이구나를 깨닫는 하루(!)

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

피곤  (0) 2025.05.04
여유  (0) 2025.05.02
바운스 슈퍼파크 하남 아니.. 미사?  (2) 2025.04.19
헤롱헤롱  (0) 2025.04.14
날씨가 미쳤구나  (0) 2025.04.13
Posted by 구차니