KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
ROS2 JETSON NANO - QUÉ CON LOS NODOS Y EL TÓPICO DE COMUNICACIÓN
3:27
Why is Python 150X slower than C?
10:45
How Much Tape To Stop A Lamborghini?
00:15
一碗水真的能端平吗?不能也得能!#四小只吖 #日常 #搞笑 #搞笑家庭 #姐弟 #家庭生活
00:19
Чистка воды совком от денег
00:32
Why no RONALDO?! 🤔⚽️
00:28
ROS2 JETSON NANO - TU PRIMER NODO PYTHON MICROROS
Рет қаралды 24
Facebook
Twitter
Жүктеу
1
Жазылу 47
Innova 3D México 2.0
Күн бұрын
Пікірлер: 2
@IN3DMEX2.0
2 ай бұрын
#include #include #include #include #include #include #include rcl_subscription_t LED_subscriber; std_msgs__msg__Int8 LED_msg; rclc_executor_t executor; rclc_support_t support; rcl_allocator_t allocator; rcl_node_t node; #define LED_PIN 2 #define RCCHECK(fn) { rcl_ret_t temp_rc = fn; if((temp_rc != RCL_RET_OK)){error_loop();}} #define RCSOFTCHECK(fn) { rcl_ret_t temp_rc = fn; if((temp_rc != RCL_RET_OK)){}} void error_loop(){ while(1){ delay(100); } } void LED_subscription_callback(const void * msgin) { const std_msgs__msg__Int8 * msg = (const std_msgs__msg__Int8 *)msgin; digitalWrite(LED_PIN, msg->data == 1 ? HIGH : LOW); } void setup() { //Nombre de su red, Contraseña de su red, IP del JETSON NANO, 8888 set_microros_wifi_transports("XXX", "XXXXXX", "192.168.XX.XXX", 8888); pinMode(LED_PIN, OUTPUT); digitalWrite(LED_PIN, LOW); allocator = rcl_get_default_allocator(); // Create init_options RCCHECK(rclc_support_init(&support, 0, NULL, &allocator)); // Create node RCCHECK(rclc_node_init_default(&node, "lineturtle_esp32", "", &support)); // Create subscriber RCCHECK(rclc_subscription_init_default( &LED_subscriber, &node, ROSIDL_GET_MSG_TYPE_SUPPORT(std_msgs, msg, Int8), "control_led")); // Create executor RCCHECK(rclc_executor_init(&executor, &support.context, 1, &allocator)); RCCHECK(rclc_executor_add_subscription(&executor, &LED_subscriber, &LED_msg, &LED_subscription_callback, ON_NEW_DATA)); } void loop() { delay(100); RCCHECK(rclc_executor_spin_some(&executor, RCL_MS_TO_NS(100))); }
@IN3DMEX2.0
2 ай бұрын
import rclpy from rclpy.node import Node from std_msgs.msg import Int8 import sys, select, termios, tty class LedController(Node): def __init__(self): super().__init__('led_controller') self.publisher_ = self.create_publisher(Int8, 'control_led', 10) self.led_state = 0 self.get_logger().info('Presiona "p" para encender el LED y "a" para apagarlo') def publish_led_state(self, state): msg = Int8() msg.data = state self.publisher_.publish(msg) self.get_logger().info('LED State: "%s"' % msg.data) def get_key(): tty.setraw(sys.stdin.fileno()) select.select([sys.stdin], [], [], 0) key = sys.stdin.read(1) termios.tcsetattr(sys.stdin, termios.TCSADRAIN, termios.tcgetattr(sys.stdin)) return key def main(args=None): rclpy.init(args=args) led_controller = LedController() try: while rclpy.ok(): key = get_key() if key == 'p': led_controller.publish_led_state(1) elif key == 'a': led_controller.publish_led_state(0) elif key == '\x03': # Ctrl+C para salir break except Exception as e: print(e) finally: led_controller.destroy_node() rclpy.shutdown() if __name__ == '__main__': main()
3:27
ROS2 JETSON NANO - QUÉ CON LOS NODOS Y EL TÓPICO DE COMUNICACIÓN
Innova 3D México 2.0
Рет қаралды 12
10:45
Why is Python 150X slower than C?
Mehul - Codedamn
Рет қаралды 30 М.
00:15
How Much Tape To Stop A Lamborghini?
MrBeast
Рет қаралды 246 МЛН
00:19
一碗水真的能端平吗?不能也得能!#四小只吖 #日常 #搞笑 #搞笑家庭 #姐弟 #家庭生活
四小只吖
Рет қаралды 7 МЛН
00:32
Чистка воды совком от денег
FD Vasya
Рет қаралды 4,1 МЛН
00:28
Why no RONALDO?! 🤔⚽️
Celine Dept
Рет қаралды 94 МЛН
6:21
NVIDIA’s New AI: Stunning Voice Generator!
Two Minute Papers
Рет қаралды 111 М.
20:44
Tu primer clasificador de imágenes con Python y Tensorflow
Ringa Tech
Рет қаралды 365 М.
8:41
Los Mejores IDES y Editores de código de Python
Fazt
Рет қаралды 90 М.
8:20
2 Years of C++ Programming
Zyger
Рет қаралды 965
18:07
IoT con MQTT + Mosquitto + Python
NullSafe Architect
Рет қаралды 67 М.
17:54
PROGRAMAR un ARDUINO con PYTHON ▶︎ COMO EMPEZAR en Arduino Lab for MicroPython
David Portilla - Programación y Electrónica
Рет қаралды 8 М.
20:43
ESP32 Tutorial al Rtos - DUAL CUORE 🚀
IoTicos
Рет қаралды 58 М.
17:00
comunicación y control con python y arduino mediante pyserial y visual code studio
Editronikx
Рет қаралды 30 М.
50:48
Git and Github | Practical Course from Scratch
Fazt
Рет қаралды 1,4 МЛН
8:51
Blender Lo Vuelve a HACER con 4.3
esperando el render
Рет қаралды 27 М.
00:15
How Much Tape To Stop A Lamborghini?
MrBeast
Рет қаралды 246 МЛН