SDK-dat/RPI-SDK-dat/RPI-setup-dat/RPI-setup-dat.md
... ...
@@ -1,7 +1,7 @@
1 1
2 2
# RPI-setup-dat
3 3
4
-- [[RMP-driver-dat-setup]]
4
+- [[RMP-driver-setup-dat]]
5 5
6 6
7 7
## version check
Tech-dat/Sensor-dat/sensor-dat.md
... ...
@@ -1,15 +1,20 @@
1 1
2 2
# sensor-dat
3 3
4
-- [[Camera-dat]] - [[microphone-sensor-dat]]
4
+- [[Camera-dat]] - [[sensor-microphone-dat]]
5 5
6
-- [[motion-sensor-dat]] - [[PIR-sensor-dat]] - [[radar-sensor]] - [[3-axis-Accelerometer-dat]] - [[3-axis-gyroscope-dat]] - [[3-axis-magnetic-dat]] - [[6-axis-dat]]
6
+- [[sensor-motion-dat]] - [[sensor-PIR-dat]] - [[radar-sensor]] - [[3-axis-Accelerometer-dat]] - [[3-axis-gyroscope-dat]] - [[3-axis-magnetic-dat]] - [[6-axis-dat]]
7 7
8 8
- [[RCWL-dat]] - [[sensor-TOF-dat]] - [[angle-encoder-dat]]
9 9
10 10
- [[gas-sensor-dat]]
11 11
12
-- [[thermocouple-dat]] - [[thermostat-dat]] - [[Peltier-dat]] - [[sensor-temperature-dat]] - [[humidity-sensor]] - [[sensor-pressure-dat]] - [[temp-hum-sensor-dat]]
12
+- [[Peltier-dat]] - [[sensor-pressure-dat]]
13
+
14
+- [[sensor-temp-hum-dat]] - [[humidity-sensor]]
15
+
16
+- [[sensor-temperature-dat]] - [[thermocouple-dat]] - [[thermostat-dat]] - [[sensor-RTD-dat]]
17
+
13 18
14 19
- [[power-sensor-dat]] - [[dc-current-sensor-dat]] - [[AC-voltage-monitor-dat]] - [[dc-voltage-monitor-dat]] - [[voltage-supervisor-dat]]
15 20
... ...
@@ -38,7 +43,7 @@ Here’s a list of 30 commonly used types of sensors, categorized by their typic
38 43
### Temperature Sensors
39 44
40 45
- Thermocouples
41
-- RTDs (Resistance Temperature Detectors)
46
+- RTDs (Resistance Temperature Detectors) - [[sensor-RTD-dat]]
42 47
- Thermistors
43 48
- Infrared (IR) Temperature Sensors
44 49
Tech-dat/Sensor-dat/sensor-temp-hum-dat/sensor-temperature-dat/sensor-RTD-dat/sensor-RTD-dat.md
... ...
@@ -0,0 +1,6 @@
1
+
2
+# sensor-RTD-dat
3
+
4
+- [[MAX31865-dat]]
5
+
6
+- [[MAX6755-dat]]
... ...
\ No newline at end of file
board-series-dat/RMP-driver-dat/RMP-driver-dat-setup.md
... ...
@@ -1,41 +0,0 @@
1
-
2
-# RMP-driver-dat-setup.md
3
-
4
-
5
-## improve display update
6
-
7
-
8
-> Suggestion: to slightly improve display update, add
9
-> isolcpus=3
10
-> at the end of /boot/cmdline.txt and reboot (see README.md)
11
-
12
-nano /boot/firmware/cmdline.txt
13
-
14
-
15
-## To disable the built-in sound card (Broadcom BCM2835 ALSA) on a Raspberry Pi 3, you can follow these steps:
16
-
17
-
18
-sudo nano /boot/firmware/config.txt
19
-
20
- dtparam=audio=off
21
-
22
-After reboot, the built-in sound card should be disabled. You can verify with:
23
-
24
- aplay -l
25
-
26
-
27
- root@raspberrypi:/home/pi/rpi-rgb-led-matrix-master# aplay -l
28
- **** List of PLAYBACK Hardware Devices ****
29
- card 0: vc4hdmi [vc4-hdmi], device 0: MAI PCM i2s-hifi-0 [MAI PCM i2s-hifi-0]
30
- Subdevices: 1/1
31
- Subdevice #0: subdevice #0
32
-
33
-sudo nano /etc/modprobe.d/raspi-blacklist.conf
34
-
35
-blacklist snd_bcm2835
36
-
37
-## ref
38
-
39
-- [[RPI-setup-dat]]
40
-
41
-- [[RMP-driver-dat]] - [[RPI-dat]]
... ...
\ No newline at end of file
board-series-dat/RMP-driver-dat/RMP-driver-dat.md
... ...
@@ -1,6 +1,6 @@
1 1
# RGB Matrix Panel Driver Board
2 2
3
-- [[RMP-driver-dat-setup]] - [[RMP-driver-cmd-dat]]
3
+- [[RMP-driver-setup-dat]] - [[RMP-driver-cmd-dat]]
4 4
5 5
- [[MPC1073-test-log-dat]] - [[MPC1073-multiplexing-dat]]
6 6
board-series-dat/RMP-driver-dat/RMP-driver-setup-dat.md
... ...
@@ -0,0 +1,49 @@
1
+
2
+# RMP-driver-dat-setup.md
3
+
4
+find out more at troubleshooting section: https://github.com/hzeller/rpi-rgb-led-matrix#troubleshooting
5
+
6
+
7
+
8
+
9
+
10
+## improve display update
11
+
12
+
13
+> Suggestion: to slightly improve display update, add
14
+> isolcpus=3
15
+> at the end of /boot/cmdline.txt and reboot (see README.md)
16
+
17
+nano /boot/firmware/cmdline.txt
18
+
19
+
20
+## To disable the built-in sound card (Broadcom BCM2835 ALSA) on a Raspberry Pi 3, you can follow these steps:
21
+
22
+
23
+sudo nano /boot/firmware/config.txt
24
+
25
+ dtparam=audio=off
26
+
27
+After reboot, the built-in sound card should be disabled. You can verify with:
28
+
29
+ aplay -l
30
+
31
+
32
+ root@raspberrypi:/home/pi/rpi-rgb-led-matrix-master# aplay -l
33
+ **** List of PLAYBACK Hardware Devices ****
34
+ card 0: vc4hdmi [vc4-hdmi], device 0: MAI PCM i2s-hifi-0 [MAI PCM i2s-hifi-0]
35
+ Subdevices: 1/1
36
+ Subdevice #0: subdevice #0
37
+
38
+sudo nano /etc/modprobe.d/raspi-blacklist.conf
39
+
40
+blacklist snd_bcm2835
41
+
42
+
43
+
44
+
45
+## ref
46
+
47
+- [[RPI-setup-dat]]
48
+
49
+- [[RMP-driver-dat]] - [[RPI-dat]]
... ...
\ No newline at end of file
tools-dat/internal-resistance-meter-dat/2025-08-24-16-31-21.png
... ...
Binary files /dev/null and b/tools-dat/internal-resistance-meter-dat/2025-08-24-16-31-21.png differ
tools-dat/internal-resistance-meter-dat/2025-08-24-16-31-32.png
... ...
Binary files /dev/null and b/tools-dat/internal-resistance-meter-dat/2025-08-24-16-31-32.png differ
tools-dat/internal-resistance-meter-dat/internal-resistance-meter-dat.md
... ...
@@ -36,6 +36,17 @@ UT70A
36 36
37 37
## TS457
38 38
39
+## ED1035
40
+
41
+testing - [[18650-dat]]
42
+
43
+80m ohm is really bad
44
+
45
+![](2025-08-24-16-31-21.png)
46
+
47
+25m ohm is not bad
48
+
49
+![](2025-08-24-16-31-32.png)
39 50
40 51
41 52