Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 2.41 KB

README.md

File metadata and controls

executable file
·
31 lines (22 loc) · 2.41 KB

SDC

Thumbnail ATmega 8 based self driving car.

Watch the YouTube video to develop some comprehension.

SETTING UP ATMEGA 8

The ATmega 8 is programmed using an ICSP programmer. In my case, I used an Arduino UNO as an ICSP programmer. By default, the microcontroller uses the internal 8MHz internal PC oscillator, but we want to use an external 16 MHz oscillator. So we need to make certain changes to the fuse bits of the ATmega 8. Below are the steps to do so:

  1. Download and install AVRDude. AVRDude is the program used by Arduino IDE and PlatformIO to upload your code to an AVR microcontroller.
  2. Open up the Arduino IDE, select ArduinoISP under File/Examples/ and hit upload.
  3. Wire up the Arduino and ATmega8 as shown in the schematic: ATmega8 programmer
  4. By default, the low fuse of the ATmega8 is set to 0xE1. This must be set to 0xE4 to configure the microcontroller to run at 8MHz. Type avrdude -c stk500v1 -P COM5 -p atmega8 -b 19200 -U lfuse:w:0xe4:m -U hfuse:w:0xd9:m. Alternatively, you can use an online AVR fuse bit calculator for your selected microcontroller. Changing lfuse

Note:

The -P <port>argument specifies the connection port. In my case, the arduino is connected to COM5 and hence the argument -P COM5. For -p <partno> either -p m8 or -p atmega8 can be used. Refer this guide for more information.

  1. That is all. The ATmega8 is now ready to be programmed with PlatformIO using the arduino as an ISP programmer.

PART LIST:

You can find the component list here.

The case along with the motor is available here: https://quartzcomponents.com/products/2wd-smart-robot-car-chassis-kit

MOC7811 optical encoders: https://quartzcomponents.com/products/moc-7811-encoder-sensor

Servo: https://quartzcomponents.com/products/tower-pro-sg90-servo-9-gms-mini-micro-servo-motor?_pos=1&_sid=c2dd11a64&_ss=r

HCSR04(Ultrasonic sensor): https://quartzcomponents.com/products/hc-sr04-ultrasonic-sensor-module?_pos=1&_sid=1f37cc7e0&_ss=r

Ultrasonic sensor mount: https://quartzcomponents.com/products/ultrasonic-sensor-mounting-bracket-for-hc-sr04?_pos=3&_sid=1f37cc7e0&_ss=r