template: ../media/TB4Template.pptx
- Let's learn about robots!
- Today we will learn how to use a TurtleBot 4
- One
- One A
- One B
- Two
- foo
- bar
- baz
** Here are some slide notes. Note you leave an empty line between the content - in this case a bulleted list - and the notes. **
- For help search Google.
This is highlighted code
** This is emphasis code. **
sudo apt update
sudo apt install -y python3-rosdep
sudo rosdep init
rosdep update
- This is some text describing above
- Herp
- Derp
- Slerp
- Perp
** WILL THIS TEXT SHOW UP? **
sudo apt update
sudo apt install -y python3-rosdep
sudo rosdep init
rosdep update
- This text will appear!
- So will this
- So will this?
- This text will appear!
- So will this
- So will this?
Here is some subtext
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ultrices posuere lorem, eu dictum massa efficitur ac. Aenean at risus luctus, vulputate ex non, condimentum tellus. Aenean egestas, odio eu ornare eleifend, nulla enim efficitur nunc, non luctus velit purus a urna. Pellentesque magna odio, viverra eu enim non, hendrerit pulvinar nibh. Aenean blandit lacus et ex bibendum, at finibus orci rhoncus. Integer venenatis eros in scelerisque porta. Nam ligula sem, ullamcorper nec efficitur in, commodo sit amet justo. Praesent ut nibh ultrices, euismod eros in, consectetur risus. Fusce a imperdiet justo. Cras magna massa, venenatis non lectus ac, mattis luctus est.
Phasellus varius rutrum ullamcorper. Maecenas iaculis rhoncus ipsum, id congue augue suscipit eu. Nullam varius neque non est congue tincidunt. Vestibulum a nulla ac felis consequat posuere. Ut vulputate malesuada placerat. Integer accumsan rhoncus magna sit amet laoreet. Nullam aliquet libero pharetra, suscipit felis at, faucibus enim. Sed metus massa, tincidunt vitae nunc quis, bibendum laoreet ante. Donec id egestas dui. Quisque blandit tellus augue, in cursus mauris malesuada eget.
a | b | c | d | e |
---|---|---|---|---|
1 | 2 | 3 | 3 | 4 |
a | f | g | d | s |
s | s | s | s | s |
This is a underlined under a table
def sortedNumericList(string):
return sorted(list(map(int, set(string.split()))))
def parseRGB(str):
if RGBmatch := RGBRegex.match(str):
# Matches
return (True, RGBmatch.group(1))
else:
return (False, "")