#10 MAKE and POST Programmable Air - Breathing balloon example using timing based code OR Linear actuator syringe example using timing based code OR make a working jamming gripper OR some original project using blow, suck and vent + pumps
[https://drive.google.com/file/d/1A49Bv_tKkpHo8_KAAc-CVidtztfcPrsn/view?usp=sharing](https://drive.google.com/file/d/1A49Bv_tKkpHo8_KAAc-CVidtztfcPrsn/view?usp=sharing)
[https://drive.google.com/file/d/1T0p-0DbCzMiFFC6NIDkcy--qAauVcWyW/view?usp=sharing](https://drive.google.com/file/d/1T0p-0DbCzMiFFC6NIDkcy--qAauVcWyW/view?usp=sharing)
After testing that the syringe was working using the red and blue buttons manually I uploaded the lesson timing example to test with the syringe. This example in the loop function is for switching on the pumps and blow function if the red button is pressed.
void loop() {
if (readBtn(RED)) {
switchOnPump(2);
blow(); // setValve(2, OPEN); setValve(1, CLOSED); setValve(3, CLOSED);
delayWhileReadingPressure(1000);
switchOffPumps();
vent();
delayWhileReadingPressure(1000);
}
else {
delayWhileReadingPressure(100);
}
}
[ TODO: Add Video]
In class we received the hardware for Programmable Air. This diagram was a helpful reference for what is on the board.