Test page - SergeGit/rc-tank-platform GitHub Wiki
Circuit drawing
Circuit drawings
https://forum.arduino.cc/t/how-to-make-a-schematic-you-can-post/675103
https://forum.arduino.cc/t/how-to-make-a-schematic-you-can-post/675103/10
https://godbolt.org/
Logic gates
https://github.com/Henil-08/Pi-Car
https://community.element14.com/products/arduino/b/blog/posts/raspberry-pi-and-arduino-i2c-communication
https://stackoverflow.com/questions/24807785/raspberrypi-to-arduino-send-and-receive-string
https://www.aranacorp.com/en/communication-between-raspberry-pi-and-arduino-with-i2c/
https://arduino.stackexchange.com/questions/63488/wanted-to-control-2-servos-with-serial-read/63491#63491
https://pyshine.com/Real-time-streaming-protocol-and-opencv-in-Python/
https://github.com/banchee/pirobot
https://linuxize.com/post/how-to-use-scp-command-to-securely-transfer-files/
Github electronica website https://gillescallebaut.github.io/schoolmaterial/samenvattingen/2013_2014/elektronica_gilles_callebaut_public.pdf
Arduino Markdown
Markdown rules for Arduino code can be found as Arduino Markdown instructions
Have a look into pikchr:
oval "Start" fit; arrow; box "Hello, World!" fit; arrow; oval "Done" fit
Markdown code | Syntax Higlighting
Inline code:
This is a piece of code as nvidia-smi
Javascript:
var add2 = function(number) {
return number + 2;
}
Python:
a, b = 0, 1
while b < 10:
print(b)
a, b = a, a + b
Json:
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
C Example:
int main() {
int y = SOME_MACRO_REFERENCE;
int x = 5 + 6;
cout << "Hello World! " << x << std::endl();
}
C++ Example
int main() {
int y = SOME_MACRO_REFERENCE;
int x = 5 + 6;
cout << "Hello World! " << x << std::endl();
}
Differential code:
# /etc/modprobe.d/i915.conf
+ options i915 enable_guc=3
- options i915 enable_guc=3
Linux script (shell or bash):
$ cp /usr/share/doc/NVIDIA_GLX-1.0/samples/nvidia-persistenced-init.tar.bz2 .
$ bunzip2 nvidia-persistenced-init.tar.bz2
root@lapprox:~# ls -alh /dev/nvidia*
crw-rw-rw- 1 root root 195, 0 Dec 6 11:14 /dev/nvidia0
crw-rw-rw- 1 root root 195, 255 Dec 6 11:14 /dev/nvidiactl
crw-rw-rw- 1 root root 195, 254 Dec 6 11:14 /dev/nvidia-modeset
crw-rw-rw- 1 root root 235, 0 Dec 6 11:14 /dev/nvidia-uvm
crw-rw-rw- 1 root root 235, 1 Dec 6 11:14 /dev/nvidia-uvm-tools
/dev/nvidia-caps:
total 0
drw-rw-rw- 2 root root 80 Dec 6 11:14 .
drwxr-xr-x 21 root root 4.7K Dec 6 11:14 ..
cr-------- 1 root root 240, 1 Dec 6 11:14 nvidia-cap1
cr--r--r-- 1 root root 240, 2 Dec 6 11:14 nvidia-cap2
Tables
| Syntax | Description | Test Text |
|---|---|---|
| Header | Title | Here's this |
| Paragraph | Text | And more |
Task list
- Write the press release
- Update the website
- Contact the media
Code:
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
Headings
Link to heading
Linking to a heading can be done by linking to its heading id as Heading IDs
[Heading IDs](#Arduino-Markdown)
Internal link
The internal link is coded as:
[internal link](/SergeGit/rc-tank-platform/wiki/Track-control)