20240520机械臂

#include <stdio.h>
#include <string.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>
#include <netdb.h>

#define SER_PORT 8888
#define SER_IP "192.168.117.156"
#define CLI_PORT 6668
#define CLI_IP "192.168.117.87"
int main(int argc, char const *argv[])
{
int cfd = socket(AF_INET, SOCK_STREAM, 0);//套接字
    if(cfd == -1){
        perror("socket");
        return 1;
    }
    printf("cfd = %d\n",cfd);
        struct sockaddr_in cin;
cin.sin_family = AF_INET;
cin.sin_port = htons(CLI_PORT);
cin.sin_addr.s_addr = inet_addr(CLI_IP);
    if(bind(cfd,(struct sockadrr*)&cin, sizeof(cin)) == -1){
        perror("bind");
        return -1;
    };
    printf("bind success\n");
    struct sockaddr_in sin;
sin.sin_family = AF_INET;
sin.sin_port = htons(SER_PORT);
sin.sin_addr.s_addr = inet_addr(SER_IP);
    if(connect(cfd, (struct sockaddr*)&sin, sizeof(sin)) == -1)
    {
        perror("connect");
        return -1;
    }
    printf("Connect success\n");
    
    long int c=0;
    long int d=0;
     char buf[102] = {0xff,0x02,0x00,c,0xff};
    unsigned char str[102] = {0xff,0x02,0x01,d,0xff};
    while(1){
      printf("请输入w/s:\n");
      int key = getchar();
      if(key == 'w'){
        send(cfd,buf,sizeof(buf),0);
        printf("请输入角度,十六进制\n");
        scanf("%ld",&c);
        while(getchar() != '\n');
      }else if(key == 's'){
        send(cfd,str,sizeof(str),0);
        printf("请输入角度,十六进制\n");
        scanf("%ld",&d);
        while(getchar() != '\n');
        
      }
    }
    close(cfd);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值