Week 13 - Integration test - PLX-DAQ, Chase vehicle simulation, LoRa interface
We have finalized on the plan of integrating the system as shown in Figure 1 , and we will start working on it this week and the following weeks till completion. However, this is only a suggestion of our own design which may not be the actual design used for SunSPec 5, as we have yet to carry out further tests on practicality. Figure 1: Telemetry System Overview The main problem of interfacing wireless communication with Arduino is that due to the way the Arduino receives it, it will receive char by char per loop. So any other parts of code in between the sending and receiving part will be sent along each time a char is sent. For example, the word "test" is being sent, and there is another program to send a voltage value, per say "50". The receiving end will receive in the following order: " t ", "50", " e ", "50", " s ", "50", " t ", "50". There is a way to get around this ...
Comments
Post a Comment