Posts

Showing posts from May, 2019

Week 13_ 5/8/19

Week 12_ 5/1/19

Image
Since it is close to the end of the project term. We are deciding to dismiss the wireless capabilities and have that as a future goal for next year. The team still has a lot to get done before we are able to present the bogie. I helped with moving the poles into the room and measuring it so that the pole is ready to be cut.

Week 11_ 4/24/19

Image
To understand the NRF24L01 code, I tried to use the module functions to simply turn on an LED. The code is shown below. I believe that once the initial parameters are set up in and before the setup, the code should be relatively simple. The radio.read and radio.write functions are necessary and for the master code used for our purposes, these functions simply need to be placed in the correct locations to get data transferred from the mater bogie to the LCD screen and remote. Transmitter Code to turn on an LED: #include <SPI.h> #include "RF24.h" const int led = 43; int ledState = 0; RF24 radio (7, 8); // CE, CSN. “radio” can be renamed to anything byte address[6] = {"0"}; char text[100] = "Hi"; void setup() {  Serial.begin (9600);  delay(1000);  radio.begin();  radio.setChannel(115); // set frequency to channel 115  radio.setPALevel(RF24_PA_MAX);  radio.setDataRate (RF24_250KBPS);  radio.openWritingPip

Week 10_ 4/17/19

Image
The NRF24L01 modules have arrived and being worked on. Necessary Libraries downloaded from: https://github.com/nRF24/RF24 This week we presented our second powerpoint to the class. I worked on the wireless communication portion and a couple of the beginning slides. I also helped with correcting the titles to make sure they are descriptive statements.