关于操作机械臂的简单TCP通信实操

#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>

#define SER_PORT 8888//服务器端口
#define SER_IP "192.168.125.120"//服务器IP
#define CLI_PORT 6666//客户端端口
#define CLI_IP "192.168.125.121"//客户端IP


int main(int argc, const char *argv[])
{
	int cfd=socket(AF_INET,SOCK_STREAM,0);
	if(cfd==-1){
		perror("socket error\n");
		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 sockaddr*)&cin,sizeof(cin))==-1){
		perror("bind error\n");
		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 error\n");
		return -1;
	}
	printf("connect success\n");
	
	char rbuf[128]={0xff,0x02,0x00,0x00,0xff};
	unsigned char bbuf[128]={0xff,0x02,0x01,0x00,0xff};
		
	send(cfd,rbuf,sizeof(rbuf),0);
	sleep(3);
	send(cfd,bbuf,sizeof(bbuf),0);
	char ctl=0;
	while(1){
		printf("input red arm operate:");
		scanf("%hhx",&rbuf[3]);
		getchar();
		
		printf("input blue arm operate:");
		scanf("%hhx",&bbuf[3]);
		getchar();
		send(cfd,rbuf,sizeof(rbuf),0);
		sleep(3);
		send(cfd,bbuf,sizeof(bbuf),0);
		printf("operate成功\n");
		

	}

	close(cfd);
	return 0;
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值