Paso 9: Añadir el código en crear evento
Ahora seleccione la pestaña "Control" a la derecha y arrastrar el bloque de código para el espacio de "Acciones" a la izquierda.
Una nueva ventana debe aparecer que pueden escribir, pero si no es así, simplemente haga doble clic en el bloque de código nuevo.
Luego agregar este código, hay comentarios de lo que explican todo es:
var type = network_socket_udp;socket = network_create_socket(type);//no port since the client doesn’t care //Server IP and port, needed to send packets remote_ip = "192.168.10.214"; //Edison's IP remote_port = 8000; //The port the Edison is on//Make a buffer to hold the message to send to the Edison var size = 1024; var type = buffer_fixed; var alignment = 1; //Make a variable to hold the buffer send_buffer = buffer_create(size,type,alignment);msg_id = "Nothing yet"; /////////////////////////////receive_ip = "";