반응형 분류 전체보기248 hexa string to Floating-point value # hexa string to Floating-point value # hexa string to Floating-point value import struct # Hexadecimal string hex_string = "43663334" # Convert hexadecimal string to binary string binary_string = bin(int(hex_string, 16))[2:].zfill(32) # Split binary string into sign, exponent, and mantissa sign_bit = int(binary_string[0]) exponent = int(binary_string[1:9], 2) mantissa = int(binary_string[9:], 2.. 2024. 4. 2. [python]reactpy from sympy.plotting import plot from sympy import * x=Symbol('x') plot(x**2, line_color='red') from sympy.plotting import plot3d x,y=symbols('x y') plot3d(x*y, (x, -10,10), (y, -10,10)) 2024. 3. 19. mqtt 참고사이트 https://jeong-f.tistory.com/172 [ 파이썬 ] HiveMQ MQTT 통신 테스트 MQTT 통신 M2M, IOT를 위한 프로토콜로서, 최소한의 전력과 패킷량으로 통신하므로, IOT와 모바일 애플리케이션 등의 통신에 매우 적합한 프로토콜 PUBLISH : 발행 SUBSCRIBE : 구독(모니터링) MQTT 브로커 jeong-f.tistory.com MQTT 통신 M2M, IOT를 위한 프로토콜로서, 최소한의 전력과 패킷량으로 통신하므로, IOT와 모바일 애플리케이션 등의 통신에 매우 적합한 프로토콜 PUBLISH : 발행 SUBSCRIBE : 구독(모니터링) MQTT 브로커 구동 하기 Mosquitto HiveMQ mosca ActiveMQ RabbitMQ HiveMQ를 이용하여 테.. 2024. 3. 19. [C# console]Modbus RTU simple example using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO.Ports; namespace ModbusRTU_Float { class Program { static void Main(string[] args) { // Define serial port settings string portName = "COM6"; // Modify this with your COM port name int baudRate = 38400; // Modify this with your baud rate Parity parity = Parity.None;.. 2024. 3. 14. 이전 1 ··· 3 4 5 6 7 8 9 ··· 62 다음 반응형