Page 1 of 1
Student robot project
Posted: Sun Jun 07, 2015 1:29 am
by seven_au
I thought that you may find this interesting - Bluetooth connected Arduino robot - Student project.
This one uses the Arduino Uno R3 board and the Ardafruit Motorshield with the Freetronics Bluetooth shield, but we are working on another one which uses the Freetronics Eleven with the Freetronics Dual HBridge shield
https://www.youtube.com/watch?v=abo6qfq2r4U
Re: Student robot project
Posted: Sun Jun 07, 2015 5:26 am
by andrew
Excellent work, thank you for sharing that with us

Re: Student robot project
Posted: Tue Jun 09, 2015 1:01 pm
by seven_au
Re: Student robot project
Posted: Thu Jun 11, 2015 7:02 am
by seven_au
Here is the code for the setup for the Freetronics Motorshield for anyone interested
https://github.com/Seven7au/Freetronics_Bluetooth_Robot
It took me ages to work out why this wasn't working until I realised that the default RX and TX pins on this Freetronics shield are pins 2 and 3:
SoftwareSerial bt(2,3); // RX, TX
And the default motor pins on the Freetronics Dual H Bridge shield are also pins 2 and 3:
int motorb1 = 3;
int motorb2 = 2;
A 'rookie mistake' that I should have checked first.
Re: Student robot project
Posted: Sun Jun 14, 2015 2:06 am
by seven_au
Here is the video post for the Freetronics components vehicle:
https://www.youtube.com/watch?v=cm-LZAwIhq0
Re: Student robot project
Posted: Wed Nov 18, 2015 12:14 am
by andrew
Wow, excellent. Thanks again

Re: Student robot project
Posted: Tue Nov 24, 2015 1:19 pm
by DaveMark
What stops this working with other platforms like iOS, if at all?
Re: Student robot project
Posted: Wed Dec 02, 2015 4:17 am
by angusgr
DaveMark,
Unfortunately iOS only allows Bluetooth Low Energy devices to be connected, unless they are devices approved by Apple. The BTSH is a traditional "Bluetooth Classic" device, not Bluetooth Low Energy.
Angus
Re: Student robot project
Posted: Wed Dec 02, 2015 4:18 am
by DaveMark
Thanks.