Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
"""Programming O1.""" from PiBot import PiBot import rospy robot = PiBot() # The only global variable that this program will use. def noise_filter(value, value_buffer): av = 0 for el in value_buffer: av += el / len(value_buffer) clean_value = av del value_buffer[0] value_buffer.append(value) return clean_value, value_buffer def create_list(length: int, value=None): """ Create a list for keeping track of previous IR values and fill it with placeholder values. If value is None; start tracking and fill the list with 'length' amount of front IR sensor values. Else, fill it with the value 'length' times. Returns a tuple in the form of: (index = 0, list) """ if value is None: return (0, [robot.get_front_middle_ir() for _ in range(length)]) return (0, [value for _ in range(length)]) def update_previous_values(index: int, previous_values: list): """Update the values of front middle ir sensor and store it.""" previous_values[index] = robot.get_front_middle_ir() index = (index + 1) % len(previous_values) return index, previous_values def set_speeds(left: int, right: int) -> None: """Set the wheels speed.""" robot.set_left_wheel_speed(left) robot.set_right_wheel_speed(right) ''' def fix_speeds(left_encoder_start: int, right_encoder_start: int) -> None: """Balance the speed of the wheels to be equal.""" left_encoder = abs(robot.get_left_wheel_encoder()) - abs(left_encoder_start) right_encoder = abs(robot.get_right_wheel_encoder()) - abs(right_encoder_start) delta = left_encoder / right_encoder if delta == 1: # Wheels have moved in sync. left_speed = default_speed right_speed = default_speed elif delta < 1: # Right encoder has a higher value - needs to move a bit more to the right. left_speed = int(default_speed * delta) right_speed = int(default_speed * (2 - delta)) else: # Left encoder has a higher value - needs to move a bit more to the left. left_speed = int(default_speed * (2 - delta)) right_speed = int(default_speed * delta) set_speeds(left_speed, right_speed) ''' def find_object(previous_values: list, deviation: float) -> None: """Find the object by spinning around until a sharp jump in the front IR distance is noticed when compared to the average of the last values.""" while True: clean_value, previous_values = noise_filter(robot.get_front_middle_ir(), previous_values) result = abs(clean_value - previous_values[0]) if result > deviation: print("Object found.") break #index, previous_values = update_previous_values(index, previous_values) def refind_object(left_speed: int, right_speed: int, average: int, attempts: int, deviation: int) -> bool: """ Find the object, judged by a sharp jump in the front IR distance. Each "attempt" occurs in 0.1 second intervals. """ set_speeds(left_speed, right_speed) for attempt in range(attempts): rospy.sleep(0.1) value = robot.get_front_middle_ir() if abs(value - average) < deviation: print("Object FOUND.") return True print("Object NOT FOUND.") return False def drive_towards_object(left_speed: int, right_speed: int, index: int, previous_values: list, deviation: int) -> None: """ Drive towards the object. In case of driving forward unevenly (too much leaning to either side - front IR sensor loses object), refind the object. """ set_speeds(left_speed, right_speed) while True: value = robot.get_front_middle_ir() if value < 0.16: # Break condition - robot has reached the object. print("Object reached.") break average = sum(previous_values) / len(previous_values) if abs(value - average) > deviation: # Steered away from the object? print("Object lost.") # See if the object is to the right. print("Seeing if the object is to the right...") if not refind_object(11, -11, average, 5, deviation): # See if the object is to the left. print("Seeing if the object is to the left...") if not refind_object(-11, 11, average, 10, deviation): set_speeds(0, 0) print("Couldn't refind the object. Exiting prematurely.") exit(1) set_speeds(left_speed, right_speed) index, previous_values = update_previous_values(index, previous_values) def reverse() -> None: """ Reverse until the robot is close enough to the object to consider the objective completed. This function will also refind the object automatically, in case it is lost. """ while robot.get_rear_left_straight_ir() > 0.05: # While the robot is not close enough... while robot.get_rear_left_straight_ir() == 0.16: # If the object has been lost... set_speeds(11, -11) # Steer until the object is found again. set_speeds(-11, -11) def main(): """Main function of the program.""" default_speed = 20 deviation = 0.2 set_speeds(11, -11) index, previous_values = create_list(5) # 1. Seek a "jump" in the front IR distance (object found?). print("Attempting to find object...") find_object(previous_values, deviation) # Overwrite the list with a shorter one. index, previous_values = create_list(5, robot.get_front_middle_ir()) # 2. Drive towards the object. print("Driving towards the object...") drive_towards_object(default_speed, default_speed, index, previous_values, deviation) # 3. Move even closer using more precise back sensor. print("Reversing...") reverse() print("Done") set_speeds(0, 0) if __name__ == "__main__": main()
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
I made $15,000 in 2 days
CSS | 50 min ago | 0.23 KB
This summer smells like money
CSS | 51 min ago | 0.24 KB
API Glitch (Docs Leak)
CSS | 52 min ago | 0.24 KB
FB2600 User Handbook v0.91
1 hour ago | 6.06 KB
FB2600 Administrator & Moderator SOP
2 hours ago | 8.13 KB
Untitled
13 hours ago | 7.38 KB
c2l.puter.site
15 hours ago | 0.48 KB
Looksmaxxing
15 hours ago | 1.83 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!