hello. I hope you all are doing well. I am trying ...
# juul-libraries
f
hello. I hope you all are doing well. I am trying to understand why you used delegation in SensorTag class. Can you give me some insight about that???
t
Kind of the decorator pattern. Wanted to add functionality to a peripheral but have that object reference also able to perform raw I/O. Didn't need to design it that way, just seemed like a simple approach.
f
nice. I got the idea.