This project is focused on 3D printing ( the code is pretty simple, he was explained in a previous project : "How to Communicate Using 433MHz Modules" ).
Code#include <VirtualWire.h>
void setup() {
Serial.begin(9600);
vw_setup(2000);
}
void loop() {
int values[4];
values[0] = analogRead(0);
values[1] = analogRead(1);
values[2] = analogRead(2);
values[3] = analogRead(3);
vw_send((byte *) &values, sizeof(values));
vw_wait_tx();
delay(50);
}
The
code use 433MHz radio modules to transmit radio values of the controller to the bionic hand ( that I will create soon ;) ).
Firstly, download 3D files of the bionic hand. I explain how to build the Bionic Hand Controller on files.
Connection
Comments
Please log in or sign up to comment.