Art Hanner
Advanced Emergency
Medical Technician
Certified Pharmacy Technician
Advanced Emergency
Medical Technician
Certified Pharmacy Technician
Listed below you will find my resume expanded upon. If you have questions please contact me using the contact page. A pdf version of my resume is available for download here.
Certified Pharmacy Technician
From Tender Care Training Center
Graduation date: September 2019
Advanced Emergency Medical Technician
From Central Georgia Technical College
Graduation date: December 2017
Emergency Medical Technician
From Central Georgia Technical College
Graduation date: July 2017
Studied Computer Engineering
Mercer University, Macon Ga
2012-2016
2012 Graduated Rabun Gap Nacoochee School, Rabun Gap Ga
Columbia County Water Utility Grovetown, GA
-Maintence Worker
This job consited of easment maintence. I operated light equipment such as the LV600 Green Climber and gas powered weed eaters. I assisted the crew in maintaining easment access of sewer easments by cutting the grass and trees.
Walgreens Augusta, GA
-Certified Pharmacy Technician
This job consisted of intaking prescriptions from patients, processing them through the computer system, correcting insurance errors, filling prescriptions, and then selling the prescriptions to the patients. I also became a APhA Certified Immunizer and administered COVID-19 and Flu Vaccinations to patients.
I processed the vaccinations as a prescription and ensured complete billing information was obtained to be reimbursed. I assisted with charge backs from Medicare and insurance companies due to information errors. I also obtained and processes COVID-19 test samples from patients in the drive through
line that were processed through the Abott ID Now in the pharmacy. I assisted with training technicians and pharmacist in the specifics to our store and with Walgreens in general.
Gold Cross EMS, Augusta, GA
-Advanced Emergency Medical Technician
This job consisted of being either the lead person on a basic life support ambulance or the second on an advanced life support ambulance. Both ambulance levels run 911 emergency calls, interfacility transports, and hospital discharge transports.
Augusta Fire Department, Augusta, GA
-Advanced Emergency Medical Technician
This job consisted of being either the lead person on a basic life support ambulance or the second on an advanced life support ambulance. Both ambulance levels run 911 emergency calls. I left this job due to changes in company structure and my job position being removed.
Community Ambulance, Macon, GA
-Advanced Emergency Medical Technician
This job consisted of being either the lead person on a basic life support ambulance or the second on an advanced life support ambulance. Both ambulance levels run 911 emergency calls, interfacility transports, and hospital discharge transports.
-Emergency Medical Technician
This job consisted of being either the lead person on a basic life support ambulance or the second on an advanced life support ambulance. Both ambulance levels run 911 emergency calls, interfacility transports, and hospital discharge transports.
I left this job due to moving to Evans, Ga.
Mercer University Student Worker, Macon, GA
-Assistant for the electronics fabrication laboratory
This job consisted of assisting people with various personal and academic projects. I did a great deal of work with 3D scanning, 3D printing, circuit board design and fabrication work in this job.
-Lab instructor for Freshman programming class
This job consisted of teaching 2 classes of 15 students the basics of programming in C++ with a robot. I developed the Robotics Assistive Learning Platform (RALPh) for this class.
I also wrote lesson plans and student lab instructions to guide them through the class.
-Lab administrator for the Machine Intelligence Robotics Laboratory (MIRL)
This job consisted of managing the day to day administrative tasks that were needed to keep the lab running smoothly.
Many of the tasks were restocking inventory from online merchants and filing finance paperwork.
I left this job because I medically withdrew from Mercer University.
Grill Worker, Rabun Gap Nacoochee School, Rabun Gap, Ga
This was a line cook food service job.
I left this job because I graduated high school.
I will post links here to all the files throughout my web page. There will also be some other files on here that I have found to be useful.
Welcome to my Ham radio reference and projects page. Listed below you will find the links, files, and information that I have found to be useful in my time on the air.
I am always looking forward to new opportunities to learn and help the local community.
I have currently completed the training listed below and the certificates are linked on my files page.
This page goes into further detail about the Robotics Assistive Learning Platform (RALPh) that I tested in a class during spring semester 2016 at Mercer University.
I designed, created and revised RALPh over about 4 years. I handed the project off to a professor when I left Mercer University in late 2016. RALPh is being implemented into the Freshman Programming for Engineers Class. I successfully taught this class as a lab instructor for the spring semester of 2016.
The idea behind the project was to add a physical real world component to coding in C++. Many things can be done with just a computer screen, but for many students it is difficult to really grasp the critical thinking skills required for programming and engineering. With that in mind, I set about looking into making coding fun and accessible to more students. I started by examining at what LEGO has done with their Mindstorms program. They had a modular reprogrammable robotics system that was easy to work with and fun. I talked with Dean Wade H. Shaw, Ph.D., P.E. at the Mercer University School of Engineering to understand what he would like for in the freshman introduction to C++ class. Dean Shaw wanted to refocus the class on critical thinking in engineering. This meant getting the students to problem solve, think linearly, and be creative with what they were learning. So from there I began the design process of the robot.
The robot started out mechanically close to the final design undergoing just minor changes. It is roughly 5 inches wide by 7 inches long hardboard frame. Attached to this are two roughly 4 inch wheels driven by two modified HS311 servos and a single pivot point. I removed the circuit board and mechanical stops from the servos to allow them to be continuous rotation geared motors. I chose this route because the servos are cheaper than a regular motor with gearbox in a similar form factor and strength. This design was modified several times over the course of the next four years. The main changes were to the box that houses the circuitry. It sits on top of the robot and changed size to accommodate the changes in circuitry. The circuitry progressed a long way from the initial design.
I started out the circuit design proof of concept with an lm239 motor driver and an Atmel ATTiny 2313 8 bit microprocessor. The first several versions kept these 2 chips and adjusted the layout and peripheral components. These first versions were two sided single board systems with integrated linear regulators and breakouts for the programming header and unused input/output (IO) pins. As I built the system and talked to some professors I decided to add a second motor driver that would allow for two auxiliary motors to be driven from the same board. At this point I was unable to keep the design hand solderable and small enough to fit on one board in the robot, so I created a stacked mother-daughter board system with the motor drivers, linear regulator, and other higher voltage parts on the lower board and put the processor on the top board. This design worked well enough but I was quickly running out of IO pins. After doing more research, I settled on the Atmel ATMega 8 microprocessor as my replacement.
I chose the ATMega 8 because it gave me more pins, a faster internal clock, and was the cheapest of the options. This upgrade allowed me to broaden the capabilities of RALPh. I was now able to add in serial communication as well as analogue inputs. The analogue inputs were a great boost to RALPh, allowing for line following and distance measurement sensors to be developed and added on. The ATMega 8 also gave me a larger code storage capacity and more communication options.
I worked out the wireless controller option using a Bluetooth to serial adaptor and the hardware serial pins on the ATMega 8. This allowed the students to use their phones to connect to the robot and control it. The bidirectional serial stream allowed the students to create a 'dashboard' that they could use to get feedback from the robot. The stream also gave the students a good feedback option when they were debugging their code allowing for print to serial stream markers to locate hang-ups in code.
Once I had the hardware and circuitry mostly settled I began work on the lab exercises for the students. I adjusted what I was thinking because after working on the low level backend code I had to
remember that these students are freshman learning C++ or coding in general. This led to some challenges when writing the lessons plans as I had to think back to when I was learning
to write code and what issues I ran into. One of the objectives of the class was to promote problem solving, so I did not solve all the problems the students could run into during the lab. I have attached
the finalized pdf lesson plans that I wrote