Paso 10: Haga el evento paso
Ahora pulsa "Agregar evento" agregar otro evento y seleccione el evento del paso.
Al igual que el paso anterior, arrastrar un bloque de código en las acciones del punto y agregue este código:
if(keyboard_check_pressed(vk_space))//Check if space is pressed{ buffer_seek(send_buffer, buffer_seek_start,0);//Set the buffer to the beginning buffer_write(send_buffer, buffer_text, "space pressed"); //Write the string "space pressed" to the buffer //Send the buffer to the Edison network_send_udp_raw(socket,remote_ip,remote_port,send_buffer,buffer_tell(send_buffer)); }