Research and Teaching Blog
3 Posts in April Archive
ABE425 Notes
This post will serve as a location to collect miscellaneous information about the lectures.
Solution for problem shown on April 16th
ABE425 Project Report
Here is the link to the project template (MS Word .docx).
Here's a link to the grading rubric and the names of the projects.
Serial communication demo
Demo code for connecting two computers using an Arduino-mediated serial connection. Needs fixing..
// An Arduino-mediated serial communication device // Kaustubh D. Bhalerao /* Device topology: Computer1--USB--Arduino1==Serial==Arduino2--USB--Computer2 We are going to try this.... Computer --TX0---> Arduino # <--RX0--- USART0 ## SWSerTX <===| | SWSerRX <===| The computer sends a packet over USART/USB to the Arduino The arduino relays it to the SWser transmit port which is received on the SWSer RX port, which relays it back to the computer */ // Pin Layout // Pins 2 and 3 ...
