13. Networking and Communications¶
For this week’s assignment we have worked as follows. Group assignment: - Send a message between two projects. - Document your work to the group work page and reflect on your individual page what you learned. Individual assignment: - Design, build and connect wired or wireless node(s) with network or bus addresses and a local interface.
Assignment Cheklist.¶
item | Activity | Status |
---|---|---|
task 1 | Linked to the group assignment page and reflected on your individual page | IN PROGRESS |
task 2 | Documented your project and what you have learned from implementing networking and/or communication protocols. | IN PROGRESS |
task 3 | Explained the programming process(es) you used. | IN PROGRESS |
task 4 | Outlined problems and how you fixed them | IN PROGRESS |
task 5 | Included design files (or linked to where they are located if you are using a board you have designed and fabricated earlier) and original source code. | IN PROGRESS |
task 6 | Included a ‘hero shot’ of your network and/or communications setup | IN PROGRESS |
Group Assignment¶
- Send a message between two projects.
- Document your work to the group work page and reflect on your individual page what you learned
Individual Assignment¶
- design, build and connect wired or wireless node(s) with network or bus addresses and a local interface
System design¶
IN PROGRESS
Assembly and samples¶
IN PROGRESS
Useful links¶
Code Example¶
Use the three backticks to separate code.
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Gallery¶
Video¶
From Youtube¶
IN PROGRESS
Last update:
July 13, 2024