vimwiki/tech/embedded.wiki

64 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-09-23 17:54:24 +00:00
= Embedded Systems =
Systems that are in other things, and therefore the computer is hidden from the
user, sometimes so that they don't even know there is a computer
== Arduino ==
* https://www.microchip.com/en-us/product/ATmega328
* [[RISC]] Processor type
2021-10-11 03:22:53 +00:00
== Raspberry pi ==
* https://datasheets.raspberrypi.org/rpi4/raspberry-pi-4-datasheet.pdf
- Pi 4 Model B
* https://datasheets.raspberrypi.org/pico/pico-datasheet.pdf
- Pi Pico
* [[ARM]] Processor type
2021-11-20 23:45:01 +00:00
== Line of products ==
2021-09-23 17:54:24 +00:00
2021-11-13 05:51:32 +00:00
* [[ATMega328P|Arduino Nano]]
* [[ESP32]]
2021-10-11 03:22:53 +00:00
* [[raspberry_pi|Raspberry Pi]]
2021-11-13 05:51:32 +00:00
* [[RP2040|Raspberyy Pi Pico]]
2021-11-13 03:30:01 +00:00
* [[PCB]]
2021-11-05 02:00:01 +00:00
=== Components ===
2021-11-13 05:30:01 +00:00
==== Microcontrolers ====
2021-11-13 05:51:32 +00:00
* [[ATMega328P]]
* [[RP2040]]
* [[ESP32]]
2021-11-14 23:00:01 +00:00
* [[ESP8266]]
2021-11-13 05:15:01 +00:00
==== Sensors ====
2021-11-05 02:00:01 +00:00
* [[DHT11]]
2022-01-02 21:45:01 +00:00
* [[TL1838|TL1838 IR Sensor]]
2021-11-05 02:00:01 +00:00
2021-11-13 05:15:01 +00:00
==== Radio ====
2021-11-14 23:00:01 +00:00
* [[nRF24L01]]
2021-11-13 05:15:01 +00:00
2021-11-20 23:45:01 +00:00
Also see [[Ham]]
2021-11-13 05:15:01 +00:00
==== Power regulation ====
* [[TP4056]]
* [[TPS76933DBVR]]
2021-11-20 23:45:01 +00:00
== Programming ==
2021-09-23 17:54:24 +00:00
* [[../lang/C|C]]
* [[../lang/C++|C++]]
* [[arduino_techniques|Techniques]]
2021-10-11 03:22:53 +00:00
* [[cross_toolchain|Arduino Cross-Toolchain setup]]
2021-09-23 17:54:24 +00:00
2021-11-20 23:45:01 +00:00
== Communication ==
* [[SPI]]
2021-09-23 17:54:24 +00:00
[[index]]