Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DragonDev07 authored Sep 24, 2024
1 parent 82f6a89 commit 62b90cc
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,17 @@

## Table of Contents

- [Installation (Android Studio)](#installation-android-studio)
- [Installation](#installation)
- [Full Documentation (Kotlin Docs)](#full-documentation-kotlin-docs)
- [Misc Info](#extra-tips)
- [Poor Performance Fix](#poor-performance-fix)
- [Default Bot Constraints](#default-bot-constraints)

## Installation (Android Studio)

## Installation
See [INSTALL.md](https://github.com/rh-robotics/MeepMeep/blob/master/INSTALL.md)

## Full Documentation (Kotlin Docs)

TODO!
See the full Kotlin documentation on [GitHub Sites](https://rh-robotics.github.io/MeepMeep)

## Extra Tips

Expand All @@ -30,11 +29,11 @@ following
lines of code and update the setBackground() command:

```java
Image img = null;
try{ img =ImageIO.read(new File("<PATH TO IMAGE>")); }
catch(IOException e) {}
meepMeep.setBackground(img)
Image img = null;
try{ img =ImageIO.read(new File("<PATH TO IMAGE>")); }
catch(IOException e) {}

meepMeep.setBackground(img)
```

where <PATH TO IMAGE> is your path to the image you want to use for example:
Expand Down

0 comments on commit 62b90cc

Please sign in to comment.