5-18作业

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <semaphore.h>
#include <wait.h>
#include <signal.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <semaphore.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/un.h>c
#include <sys/socket.h>
#define SER_IP "192.168.101.57"
#define SER_PORT 8888
int main(int argc, const char *argv[])
{
    //创建套接字端点返回端点描述符
    int fp=socket(AF_INET,SOCK_STREAM,0);
    if(fp==-1){
        perror("socket error");
        return -1;
    }
  
    //填写服务端信息
    struct sockaddr_in sin;
    sin.sin_family=AF_INET;//选用网络类别ipv4
    sin.sin_port=htons(SER_PORT);//写入服务端端口号
    sin.sin_addr.s_addr=inet_addr(SER_IP);//写入服务端ip
 
    //连接服务端
    if(connect(fp,(struct sockaddr *)&sin,sizeof(sin))==-1){
        perror("connect error");
        return -1;
    }
    
    //初始化机械臂
    char red[5]={0xff,0x02,0x00,0x00,0xff};
    unsigned char blue[5]={0xff,0x02,0x01,0x00,0xff};
    if(send(fp,red,sizeof(red),0)==-1){
        perror("send error");
        return -1;
    }
    printf("红色机械臂初始化成功\n");

    if(send(fp,blue,sizeof(blue),0)==-1){
        perror("send error");
        return -1;
    }
    printf("蓝色机械臂初始化成功\n");
 
    //对机械臂进行操作
    while(1){
        char x=0;
        int y=0;
        printf("选择控制的机械臂:");
        scanf("%c",&x);
        while(getchar()!=10);
        printf("选择运行的角度:");
        scanf("%d",&y);
        while(getchar()!=10);
        if(x=='w'){
            red[3]+=y;
            if(send(fp,red,sizeof(red),0)==-1){
                perror("send");
                return -1;
            }
        }
        else if(x=='s'){
            red[3]-=y;
            if(send(fp,red,sizeof(red),0)==-1){

                perror("send");
                return -1;
            }
        }
        else if(x=='d'){
            blue[3]+=y;
            if(send(fp,blue,sizeof(blue),0)==-1){
                perror("send");
                return -1;
            }
        }
        else if(x=='a'){
            blue[3]-=y;
            if(send(fp,blue,sizeof(blue),0)==-1){
                perror("send");                                                                                                                        
                return -1;
            }
        }
        else{
            printf("控制的机械臂输入错误\n");
        }
    }
    close(fp);
    return 0;
}
     
                                                                                                                                                       
                                                                                                                                                       
                                                                                                                                                       
                                                                                                                                                       

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值