You need to be a member of diydrones to add comments!
This reply was deleted.
Activity
RT @Heavy02011: @diyrobocars : A Home-brew computer club* for Connected Autonomous Driving. talk at #piandmore @PiAndMore on Jan 23rd h…
RT @a1k0n: New blog post! Deep dive into my ceiling light based localization algorithm which runs in 1ms on a Raspberry Pi 3:
https://t.co/…
Great new guide to using @donkey_car
https://custom-build-robots.com/donkey-car-e-book-en
RT @chr1sa: The next @DIYRobocars virtual AI race is tomorrow morn at 9:00am PT. You can watch live on Twitch
https://www.meetup.com/DIYRobocars/events/275268196/
New version of Intel OpenBot! This resolves many of the issues with the first version, including a much smoother tr… https://twitter.com/i/web/status/1352395636369313798
RT @Heavy02011: @diyrobocars : A Home-brew computer club* for Connected Autonomous Driving on Jan 23rd, 2021 https://www.meetup.com/Connected-Autonomous-Driving/events/275728684/ #Meetu…
RT @Heavy02011: @diyrobocars Autonomous Driving Assembly at #rC3. join us at https://rc3.world/rc3/assembly/diyrobocars-f1tenth/ @f1tenth @DAVGtech @DWalmroth…
Replies
You need to make a soldering jumper from the atmega signal pin to channel mux4 pin. Many people already made this. Look the schematics.
It would be a lot easier to just fix you solder mishap. Just heat up the solder in the hole and push the pins thru.
Careful you don't burn your fingers.
int temp;
static int ch;
temp=pulseIn(2,HIGH, 2000);
ch= (temp!=0) ? temp : ch;
return (ch-rx_Ch[0]);
You would change the 2 to a 4 in the third line.
The proper thing to do would be to go to Radio Wack and buy a solder sucker. They are cheap and necessary for this kind of work. Don't mess with the code unless you really know what you are doing. I've been studying it for 3 months.
I didn't know C when I began, but i do now.