so - instead of having an enum of all the methods - have methods on the driver that *do* the certain things, so you can do something like: ```rust // we're only setting 5 bytes here, look we never have a 512 byte buffer! let contents = [0xAF; 5]; sensor.write_notepad(&mut uart, &contents); ```