@jjlmoya/utils-hardware 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/package.json +60 -0
  2. package/src/category/i18n/en.ts +107 -0
  3. package/src/category/i18n/es.ts +107 -0
  4. package/src/category/i18n/fr.ts +107 -0
  5. package/src/category/index.ts +18 -0
  6. package/src/category/seo.astro +15 -0
  7. package/src/components/PreviewNavSidebar.astro +116 -0
  8. package/src/components/PreviewToolbar.astro +143 -0
  9. package/src/data.ts +11 -0
  10. package/src/env.d.ts +5 -0
  11. package/src/index.ts +26 -0
  12. package/src/layouts/PreviewLayout.astro +117 -0
  13. package/src/pages/[locale]/[slug].astro +146 -0
  14. package/src/pages/[locale].astro +251 -0
  15. package/src/pages/index.astro +4 -0
  16. package/src/tests/faq_count.test.ts +19 -0
  17. package/src/tests/locale_completeness.test.ts +42 -0
  18. package/src/tests/mocks/astro_mock.js +2 -0
  19. package/src/tests/no_h1_in_components.test.ts +48 -0
  20. package/src/tests/schemas_fulfillment.test.ts +23 -0
  21. package/src/tests/seo_length.test.ts +23 -0
  22. package/src/tests/title_quality.test.ts +55 -0
  23. package/src/tests/tool_validation.test.ts +17 -0
  24. package/src/tool/batteryHealthEstimator/bibliography.astro +14 -0
  25. package/src/tool/batteryHealthEstimator/component.astro +606 -0
  26. package/src/tool/batteryHealthEstimator/i18n/en.ts +158 -0
  27. package/src/tool/batteryHealthEstimator/i18n/es.ts +158 -0
  28. package/src/tool/batteryHealthEstimator/i18n/fr.ts +158 -0
  29. package/src/tool/batteryHealthEstimator/index.ts +34 -0
  30. package/src/tool/batteryHealthEstimator/seo.astro +14 -0
  31. package/src/tool/batteryHealthEstimator/ui.ts +31 -0
  32. package/src/tool/deadPixelTest/bibliography.astro +31 -0
  33. package/src/tool/deadPixelTest/component.astro +717 -0
  34. package/src/tool/deadPixelTest/i18n/en.ts +218 -0
  35. package/src/tool/deadPixelTest/i18n/es.ts +218 -0
  36. package/src/tool/deadPixelTest/i18n/fr.ts +218 -0
  37. package/src/tool/deadPixelTest/index.ts +34 -0
  38. package/src/tool/deadPixelTest/seo.astro +14 -0
  39. package/src/tool/deadPixelTest/ui.ts +20 -0
  40. package/src/tool/gamepadTest/bibliography.astro +30 -0
  41. package/src/tool/gamepadTest/component.astro +1419 -0
  42. package/src/tool/gamepadTest/i18n/en.ts +186 -0
  43. package/src/tool/gamepadTest/i18n/es.ts +186 -0
  44. package/src/tool/gamepadTest/i18n/fr.ts +186 -0
  45. package/src/tool/gamepadTest/index.ts +34 -0
  46. package/src/tool/gamepadTest/seo.astro +14 -0
  47. package/src/tool/gamepadTest/ui.ts +57 -0
  48. package/src/tool/gamepadVibrationTester/bibliography.astro +14 -0
  49. package/src/tool/gamepadVibrationTester/component.astro +694 -0
  50. package/src/tool/gamepadVibrationTester/i18n/en.ts +155 -0
  51. package/src/tool/gamepadVibrationTester/i18n/es.ts +155 -0
  52. package/src/tool/gamepadVibrationTester/i18n/fr.ts +150 -0
  53. package/src/tool/gamepadVibrationTester/index.ts +34 -0
  54. package/src/tool/gamepadVibrationTester/seo.astro +14 -0
  55. package/src/tool/gamepadVibrationTester/ui.ts +28 -0
  56. package/src/tool/keyboardTest/bibliography.astro +30 -0
  57. package/src/tool/keyboardTest/component.astro +601 -0
  58. package/src/tool/keyboardTest/i18n/en.ts +146 -0
  59. package/src/tool/keyboardTest/i18n/es.ts +146 -0
  60. package/src/tool/keyboardTest/i18n/fr.ts +146 -0
  61. package/src/tool/keyboardTest/index.ts +34 -0
  62. package/src/tool/keyboardTest/seo.astro +14 -0
  63. package/src/tool/keyboardTest/ui.ts +8 -0
  64. package/src/tool/mousePollingTest/bibliography.astro +14 -0
  65. package/src/tool/mousePollingTest/component.astro +237 -0
  66. package/src/tool/mousePollingTest/i18n/en.ts +135 -0
  67. package/src/tool/mousePollingTest/i18n/es.ts +135 -0
  68. package/src/tool/mousePollingTest/i18n/fr.ts +135 -0
  69. package/src/tool/mousePollingTest/index.ts +34 -0
  70. package/src/tool/mousePollingTest/logic/MovingAverage.ts +20 -0
  71. package/src/tool/mousePollingTest/logic/RatonManager.ts +97 -0
  72. package/src/tool/mousePollingTest/logic/StatisticalFilter.ts +48 -0
  73. package/src/tool/mousePollingTest/seo.astro +14 -0
  74. package/src/tool/mousePollingTest/ui.ts +8 -0
  75. package/src/tool/mousePollingTest/worker/mouseWorker.ts +50 -0
  76. package/src/tool/toneGenerator/bibliography.astro +14 -0
  77. package/src/tool/toneGenerator/component.astro +571 -0
  78. package/src/tool/toneGenerator/i18n/en.ts +146 -0
  79. package/src/tool/toneGenerator/i18n/es.ts +146 -0
  80. package/src/tool/toneGenerator/i18n/fr.ts +146 -0
  81. package/src/tool/toneGenerator/index.ts +34 -0
  82. package/src/tool/toneGenerator/seo.astro +14 -0
  83. package/src/tool/toneGenerator/ui.ts +19 -0
  84. package/src/tools.ts +10 -0
  85. package/src/types.ts +72 -0
@@ -0,0 +1,218 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { PixelesPantallaUI } from '../ui';
4
+
5
+ const slug = 'dead-pixel-tester';
6
+ const title = 'Dead Pixel Test and Screen Repair Tool';
7
+ const description =
8
+ 'Check if your monitor has dead or stuck pixels and repair them with our high-frequency strobe tool online.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: 'What is the difference between a dead pixel and a stuck pixel?',
13
+ answer:
14
+ 'A dead pixel is permanently black because it receives no power (burnt transistor). A stuck pixel is usually a bright color (red, green, or blue) and can be revived by rapid strobe stimulation.',
15
+ },
16
+ {
17
+ question: 'How does the repair tool (Strobe) work?',
18
+ answer:
19
+ 'Our tool generates rapid flashing of primary colors at high speed. This can force the stuck liquid crystal pixel to unlock. It\'s recommended to let it work for 10 to 30 minutes.',
20
+ },
21
+ {
22
+ question: 'Can dead pixels appear due to temperature?',
23
+ answer:
24
+ 'Yes, extreme temperatures can affect the panel. However, the most common causes are manufacturing defects or physical impacts that damage the liquid crystal electrical contacts.',
25
+ },
26
+ {
27
+ question: 'How many dead pixels are covered by warranty?',
28
+ answer:
29
+ 'It depends on the manufacturer and ISO 9241-307 standard. Generally, brands consider up to 2 or 3 bright pixels "normal" on Class 1 panels, while Class 0 panels allow none.',
30
+ },
31
+ ];
32
+
33
+ const howToData = [
34
+ {
35
+ name: 'Clean the screen',
36
+ text: 'Before starting, thoroughly clean your monitor with a microfiber cloth to avoid confusing dust with a dead pixel.',
37
+ },
38
+ {
39
+ name: 'Enter fullscreen mode',
40
+ text: 'Press F11 or the fullscreen button so the browser interface doesn\'t interfere with defect detection.',
41
+ },
42
+ {
43
+ name: 'Alternate colors',
44
+ text: 'Switch between black, white, red, green, and blue backgrounds. Look for any spots that don\'t match the background color.',
45
+ },
46
+ {
47
+ name: 'Start the repair cycle',
48
+ text: 'If you find a bright spot, position the Strobe tool over it and let it run for at least 20 minutes.',
49
+ },
50
+ ];
51
+
52
+ const faqSchema: WithContext<FAQPage> = {
53
+ '@context': 'https://schema.org',
54
+ '@type': 'FAQPage',
55
+ mainEntity: faqData.map((item) => ({
56
+ '@type': 'Question',
57
+ name: item.question,
58
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
59
+ })),
60
+ };
61
+
62
+ const howToSchema: WithContext<HowTo> = {
63
+ '@context': 'https://schema.org',
64
+ '@type': 'HowTo',
65
+ name: title,
66
+ description,
67
+ step: howToData.map((step, i) => ({
68
+ '@type': 'HowToStep',
69
+ position: i + 1,
70
+ name: step.name,
71
+ text: step.text,
72
+ })),
73
+ };
74
+
75
+ const appSchema: WithContext<SoftwareApplication> = {
76
+ '@context': 'https://schema.org',
77
+ '@type': 'SoftwareApplication',
78
+ name: title,
79
+ description,
80
+ applicationCategory: 'UtilityApplication',
81
+ operatingSystem: 'All',
82
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD' },
83
+ inLanguage: 'en',
84
+ };
85
+
86
+ export const content: ToolLocaleContent<PixelesPantallaUI> = {
87
+ slug,
88
+ title,
89
+ description,
90
+ faqTitle: 'Frequently Asked Questions',
91
+ faq: faqData,
92
+ bibliographyTitle: 'References and Standards',
93
+ bibliography: [
94
+ {
95
+ name: 'ISO/IEC 9241-307: Display ergonomics and related equipment',
96
+ url: 'https://www.iso.org/standard/72025.html',
97
+ },
98
+ {
99
+ name: 'Dead Pixel Policy - Common Standards (VESA)',
100
+ url: 'https://www.vesa.org/',
101
+ },
102
+ ],
103
+ howTo: howToData,
104
+ schemas: [faqSchema, howToSchema, appSchema],
105
+ seo: [
106
+ {
107
+ type: 'title',
108
+ text: 'Complete Guide: Dead Pixels, Stuck Pixels, and How to Repair Them',
109
+ level: 2,
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: 'Noticed a strange spot on your screen that won\'t change color? It could be a panel defect. This tool helps you diagnose whether your monitor has <strong>dead pixels</strong> or <strong>stuck pixels</strong> and offers a solution to try to repair them.',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'What Is the Difference Between a Dead Pixel and a Stuck Pixel?',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'There are two main types of pixel defects in modern monitors, each with distinct characteristics and solutions.',
123
+ },
124
+ {
125
+ type: 'title',
126
+ text: 'Stuck Pixel',
127
+ level: 4,
128
+ },
129
+ {
130
+ type: 'paragraph',
131
+ html: 'This is the most common defect. It occurs when one or more subpixels (Red, Green, or Blue) become stuck in the "on" state. <strong>Symptom:</strong> You\'ll see a permanent bright colored dot (red, green, blue, or white) against a dark background. <strong>Often repairable.</strong> The liquid crystal still responds; it\'s simply "locked" in a specific polarization. Our Strobe repair tool attempts to unlock it with rapid voltage stimulation.',
132
+ },
133
+ {
134
+ type: 'title',
135
+ text: 'Dead Pixel',
136
+ level: 4,
137
+ },
138
+ {
139
+ type: 'paragraph',
140
+ html: 'Occurs when the transistor controlling the pixel fails completely and won\'t pass light. <strong>Symptom:</strong> A permanent black dot, especially visible against light or white backgrounds. <strong>Difficult to repair (usually permanent).</strong> The damage is at the hardware level (burnt circuit). No electrical stimulation can fix it. Usually requires panel replacement.',
141
+ },
142
+ {
143
+ type: 'title',
144
+ text: 'How Does the Strobe Repair Tool Work?',
145
+ level: 3,
146
+ },
147
+ {
148
+ type: 'paragraph',
149
+ html: 'The "Repair Pixel" function uses a technique known as <strong>Pixel Exercising</strong>. It generates a high-frequency random noise pattern (rapid color flashing) over the affected area.',
150
+ },
151
+ {
152
+ type: 'title',
153
+ text: 'The Mechanism: Liquid Crystal and Voltage',
154
+ level: 4,
155
+ },
156
+ {
157
+ type: 'paragraph',
158
+ html: 'LCD monitors use liquid crystals that change their transparency based on applied voltage. When a subpixel gets stuck, it means the crystal is "frozen" in a specific polarization. Rapid voltage changes (achieved through rapid primary color shifts) attempt to "exercise" the crystal and force it to change state.',
159
+ },
160
+ {
161
+ type: 'title',
162
+ text: 'Usage Recommendations',
163
+ level: 4,
164
+ },
165
+ {
166
+ type: 'paragraph',
167
+ html: '<ul><li>It\'s recommended to run the tool over the affected area for at least <strong>10 to 20 minutes</strong>.</li><li>If it doesn\'t work, try longer sessions (up to 1 hour) or apply very light pressure with a microfiber cloth over the pixel (at your own risk).</li><li>In some cases, gently warming the monitor with a hair dryer (on low temperature) before activating Strobe improves results.</li></ul>',
168
+ },
169
+ {
170
+ type: 'title',
171
+ text: 'Epilepsy Warning',
172
+ level: 3,
173
+ },
174
+ {
175
+ type: 'paragraph',
176
+ html: 'The repair mode uses rapidly flashing lights at high speed. If you have photosensitive epilepsy or light sensitivity, <strong>DO NOT use this function</strong>. Exposure to flashing patterns can trigger seizures in susceptible individuals.',
177
+ },
178
+ {
179
+ type: 'title',
180
+ text: 'When to Seek Warranty or Replacement',
181
+ level: 3,
182
+ },
183
+ {
184
+ type: 'paragraph',
185
+ html: 'If you confirm defective pixels (especially multiple dead pixels), you can use our test as evidence for warranty claims. Many manufacturers consider more than 2-3 bright pixels or 1 dead pixel a manufacturing defect that qualifies for replacement under ISO 9241-307 (Class 1) standard.',
186
+ },
187
+ {
188
+ type: 'title',
189
+ text: 'History of Dead Pixel Standards',
190
+ level: 3,
191
+ },
192
+ {
193
+ type: 'paragraph',
194
+ html: 'For decades, LCD monitors have suffered pixel defects due to manufacturing complexity. A Full HD panel (1920×1080) contains 6,220,800 pixels (18,662,400 subpixels). The statistical probability of defects is inevitable. That\'s why standards like ISO 9241-307 exist to define "acceptable dead pixels" based on monitor class.',
195
+ },
196
+ ],
197
+ ui: {
198
+ badge: 'Screen Utility',
199
+ title: 'Dead or Stuck Pixels?',
200
+ description:
201
+ 'Check your monitor\'s condition with pure solid colors and repair stuck pixels with our high-frequency stimulation tool.',
202
+ btnStartTest: 'Start Test',
203
+ btnStartFix: 'Repair Pixel',
204
+ kbdFullscreen: 'F11',
205
+ kbdFullscreenLabel: 'Fullscreen',
206
+ kbdSpace: 'Space',
207
+ kbdSpaceLabel: 'Change Color',
208
+ kbdEsc: 'ESC',
209
+ kbdEscLabel: 'Exit',
210
+ colorBlack: 'Black',
211
+ colorWhite: 'White',
212
+ colorRed: 'Red',
213
+ colorGreen: 'Green',
214
+ colorBlue: 'Blue',
215
+ btnToggleFixer: 'Open Repair Tool (Strobe)',
216
+ btnExit: 'Exit (ESC)',
217
+ },
218
+ };
@@ -0,0 +1,218 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { PixelesPantallaUI } from '../ui';
4
+
5
+ const slug = 'pixeles-pantalla';
6
+ const title = 'Test de Píxeles Muertos y Reparador de Pantalla';
7
+ const description =
8
+ 'Comprueba si tu monitor tiene píxeles muertos o atascados y repáralos con nuestra herramienta de parpadeo (Strobe) online.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: '¿Cuál es la diferencia entre un píxel muerto y uno atascado?',
13
+ answer:
14
+ 'Un píxel muerto es negro permanentemente porque no le llega energía (transistor fundido). Un píxel atascado suele ser de color brillante (rojo, verde o azul) y puede volver a la vida mediante estimulación por parpadeo rápido (Strobe).',
15
+ },
16
+ {
17
+ question: '¿Cómo funciona la herramienta de reparación (Strobe)?',
18
+ answer:
19
+ 'Nuestra herramienta genera un parpadeo de colores primarios a alta velocidad. Esto puede forzar al cristal líquido del píxel atascado a desbloquearse. Se recomienda dejarlo actuar entre 10 y 30 minutos.',
20
+ },
21
+ {
22
+ question: '¿Pueden aparecer píxeles muertos por la temperatura?',
23
+ answer:
24
+ 'Sí, temperaturas extremas pueden afectar al panel. Sin embargo, lo más común es por defectos de fabricación o golpes físicos que dañan los contactos eléctricos del cristal líquido.',
25
+ },
26
+ {
27
+ question: '¿Cuántos píxeles muertos cubren la garantía?',
28
+ answer:
29
+ 'Depende del fabricante y la norma ISO 9241-307. Generalmente, las marcas consideran "normal" hasta 2 o 3 píxeles brillantes en paneles Clase 1, mientras que en paneles Clase 0 no se permite ninguno.',
30
+ },
31
+ ];
32
+
33
+ const howToData = [
34
+ {
35
+ name: 'Limpiar la pantalla',
36
+ text: 'Antes de empezar, limpia bien tu monitor con un paño de microfibra para no confundir polvo con un píxel muerto.',
37
+ },
38
+ {
39
+ name: 'Entrar en modo pantalla completa',
40
+ text: 'Pulsa F11 o el botón de pantalla completa para que la interfaz del navegador no interfiera en la búsqueda de defectos.',
41
+ },
42
+ {
43
+ name: 'Alternar colores',
44
+ text: 'Cambia entre los fondos negro, blanco, rojo, verde y azul. Busca cualquier punto que no coincida con el color del fondo.',
45
+ },
46
+ {
47
+ name: 'Iniciar el ciclo de reparación',
48
+ text: 'Si encuentras un punto de color brillante, sitúa la herramienta Strobe sobre él y déjala funcionar durante al menos 20 minutos.',
49
+ },
50
+ ];
51
+
52
+ const faqSchema: WithContext<FAQPage> = {
53
+ '@context': 'https://schema.org',
54
+ '@type': 'FAQPage',
55
+ mainEntity: faqData.map((item) => ({
56
+ '@type': 'Question',
57
+ name: item.question,
58
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
59
+ })),
60
+ };
61
+
62
+ const howToSchema: WithContext<HowTo> = {
63
+ '@context': 'https://schema.org',
64
+ '@type': 'HowTo',
65
+ name: title,
66
+ description,
67
+ step: howToData.map((step, i) => ({
68
+ '@type': 'HowToStep',
69
+ position: i + 1,
70
+ name: step.name,
71
+ text: step.text,
72
+ })),
73
+ };
74
+
75
+ const appSchema: WithContext<SoftwareApplication> = {
76
+ '@context': 'https://schema.org',
77
+ '@type': 'SoftwareApplication',
78
+ name: title,
79
+ description,
80
+ applicationCategory: 'UtilityApplication',
81
+ operatingSystem: 'All',
82
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
83
+ inLanguage: 'es',
84
+ };
85
+
86
+ export const content: ToolLocaleContent<PixelesPantallaUI> = {
87
+ slug,
88
+ title,
89
+ description,
90
+ faqTitle: 'Preguntas Frecuentes',
91
+ faq: faqData,
92
+ bibliographyTitle: 'Referencias y Normas',
93
+ bibliography: [
94
+ {
95
+ name: 'ISO/IEC 9241-307: Display ergonomics and related equipment',
96
+ url: 'https://www.iso.org/standard/72025.html',
97
+ },
98
+ {
99
+ name: 'Dead Pixel Policy - Common Standards (VESA)',
100
+ url: 'https://www.vesa.org/',
101
+ },
102
+ ],
103
+ howTo: howToData,
104
+ schemas: [faqSchema, howToSchema, appSchema],
105
+ seo: [
106
+ {
107
+ type: 'title',
108
+ text: 'Guía Completa: Píxeles Muertos, Atascados y Cómo Repararlos',
109
+ level: 2,
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: '¿Has notado un punto extraño en tu pantalla que no cambia de color? Podría ser un defecto en el panel. Esta herramienta te ayuda a diagnosticar si tu monitor tiene <strong>píxeles muertos</strong> o <strong>píxeles atascados</strong> y ofrece una solución para intentar repararlos.',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: '¿Cuál es la diferencia entre un Píxel Muerto y uno Atascado?',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'Existen dos tipos principales de defectos de píxeles en los monitores modernos, cada uno con características y soluciones distintas.',
123
+ },
124
+ {
125
+ type: 'title',
126
+ text: 'Píxel Atascado (Stuck Pixel)',
127
+ level: 4,
128
+ },
129
+ {
130
+ type: 'paragraph',
131
+ html: 'Es el defecto más común. Ocurre cuando uno o más subpíxeles (Rojo, Verde o Azul) se quedan fijos en estado encendido. <strong>Síntoma:</strong> Verás un punto brillante de color rojo, verde, azul o blanco permanente sobre fondo oscuro. <strong class="text-emerald-600">A menudo reparable.</strong> El cristal líquido aún responde, simplemente está "bloqueado" en una polarización específica. Nuestro reparador Strobe intenta desbloquearlo con estimulación rápida de voltaje.',
132
+ },
133
+ {
134
+ type: 'title',
135
+ text: 'Píxel Muerto (Dead Pixel)',
136
+ level: 4,
137
+ },
138
+ {
139
+ type: 'paragraph',
140
+ html: 'Ocurre cuando el transistor que controla el píxel falla completamente y no deja pasar luz. <strong>Síntoma:</strong> Un punto negro permanente, visible sobre todo en fondos claros o blancos. <strong class="text-red-600">Difícil de reparar (normalmente permanente).</strong> El daño es a nivel de hardware (circuito quemado). No hay estimulación eléctrica que pueda repararlo. Generalmente requiere reemplazo del panel completo.',
141
+ },
142
+ {
143
+ type: 'title',
144
+ text: '¿Cómo funciona el reparador (Strobe)?',
145
+ level: 3,
146
+ },
147
+ {
148
+ type: 'paragraph',
149
+ html: 'La función de "Reparar Píxel" de esta herramienta utiliza una técnica conocida como <strong>Pixel Exercising</strong>. Genera un patrón de ruido aleatorio de alta frecuencia (parpadeo rápido de colores) en la zona afectada.',
150
+ },
151
+ {
152
+ type: 'title',
153
+ text: 'El Mecanismo: Cristal Líquido y Voltaje',
154
+ level: 4,
155
+ },
156
+ {
157
+ type: 'paragraph',
158
+ html: 'Los monitores LCD usan cristales líquidos que cambian su transparencia según el voltaje aplicado. Cuando un subpíxel queda atascado, significa que el cristal está "congelado" en una polarización específica. El cambio rápido de voltaje (conseguido mediante cambios rápidos de colores primarios) intenta "ejercitar" el cristal y forzarlo a cambiar de estado.',
159
+ },
160
+ {
161
+ type: 'title',
162
+ text: 'Recomendaciones de Uso',
163
+ level: 4,
164
+ },
165
+ {
166
+ type: 'paragraph',
167
+ html: '<ul><li>Se recomienda dejar la herramienta funcionando sobre la zona afectada durante al menos <strong>10 a 20 minutos</strong>.</li><li>Si no funciona, intenta sesiones más largas (hasta 1 hora) o aplica una presión muy suave con un paño de microfibra sobre el píxel (bajo tu propia responsabilidad).</li><li>En algunos casos, calentar ligeramente el monitor con un secador (a baja temperatura) antes de activar el Strobe mejora los resultados.</li></ul>',
168
+ },
169
+ {
170
+ type: 'title',
171
+ text: 'Advertencia de Epilepsia',
172
+ level: 3,
173
+ },
174
+ {
175
+ type: 'paragraph',
176
+ html: 'El modo de reparación utiliza luces parpadeantes a alta velocidad. Si tienes epilepsia fotosensible o sensibilidad a la luz, <strong>NO uses esa función</strong>. La exposición a patrones parpadeantes puede desencadenar convulsiones en personas susceptibles.',
177
+ },
178
+ {
179
+ type: 'title',
180
+ text: 'Cuándo Buscar Garantía o Reemplazo',
181
+ level: 3,
182
+ },
183
+ {
184
+ type: 'paragraph',
185
+ html: 'Si confirmas que tienes píxeles defectuosos (especialmente múltiples píxeles muertos), puedes usar nuestro test como evidencia para reclamaciones de garantía. Muchos fabricantes consideran que más de 2-3 píxeles brillantes o 1 píxel muerto es un defecto de fabricación que califica para reemplazo bajo la norma ISO 9241-307 (Clase 1).',
186
+ },
187
+ {
188
+ type: 'title',
189
+ text: 'Historial de Normas de Píxeles Defectuosos',
190
+ level: 3,
191
+ },
192
+ {
193
+ type: 'paragraph',
194
+ html: 'Durante décadas, los monitores LCD han sufrido defectos de píxeles debido a la complejidad de fabricación. Un panel Full HD (1920×1080) contiene 6.220.800 píxeles (18.662.400 subpíxeles). La probabilidad estadística de defectos es inevitable. Por eso existen normas como ISO 9241-307 que definen "píxeles muertos aceptables" según la clase del monitor.',
195
+ },
196
+ ],
197
+ ui: {
198
+ badge: 'Utilidad de Pantalla',
199
+ title: '¿Píxeles Muertos o Atascados?',
200
+ description:
201
+ 'Verifica el estado de tu monitor con colores sólidos puros y repara píxeles atascados con nuestra herramienta de estimulación de alta frecuencia.',
202
+ btnStartTest: 'Iniciar Test',
203
+ btnStartFix: 'Reparar Píxel',
204
+ kbdFullscreen: 'F11',
205
+ kbdFullscreenLabel: 'Pantalla Completa',
206
+ kbdSpace: 'Espacio',
207
+ kbdSpaceLabel: 'Cambiar Color',
208
+ kbdEsc: 'ESC',
209
+ kbdEscLabel: 'Salir',
210
+ colorBlack: 'Negro',
211
+ colorWhite: 'Blanco',
212
+ colorRed: 'Rojo',
213
+ colorGreen: 'Verde',
214
+ colorBlue: 'Azul',
215
+ btnToggleFixer: 'Abrir Reparador (Strobe)',
216
+ btnExit: 'Salir (ESC)',
217
+ },
218
+ };
@@ -0,0 +1,218 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { PixelesPantallaUI } from '../ui';
4
+
5
+ const slug = 'testeur-pixels-morts';
6
+ const title = 'Test de Pixels Morts et Outil de Réparation d\'Écran';
7
+ const description =
8
+ 'Vérifiez si votre moniteur a des pixels morts ou figés et réparez-les avec notre outil stroboscopique haute fréquence en ligne.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: 'Quelle est la différence entre un pixel mort et un pixel figé?',
13
+ answer:
14
+ 'Un pixel mort est noir en permanence car il ne reçoit aucune alimentation (transistor grillé). Un pixel figé est généralement d\'une couleur vive (rouge, vert ou bleu) et peut être relancé par stimulation stroboscopique rapide.',
15
+ },
16
+ {
17
+ question: 'Comment fonctionne l\'outil de réparation (Strobe)?',
18
+ answer:
19
+ 'Notre outil génère un clignotement rapide des couleurs primaires à haute vitesse. Cela peut forcer le pixel en cristal liquide coincé à se déverrouiller. Il est recommandé de le laisser fonctionner 10 à 30 minutes.',
20
+ },
21
+ {
22
+ question: 'Les pixels morts peuvent-ils apparaître en raison de la température?',
23
+ answer:
24
+ 'Oui, les températures extrêmes peuvent affecter le panneau. Cependant, les causes les plus courantes sont les défauts de fabrication ou les impacts physiques qui endommagent les contacts électriques du cristal liquide.',
25
+ },
26
+ {
27
+ question: 'Combien de pixels morts sont couverts par la garantie?',
28
+ answer:
29
+ 'Cela dépend du fabricant et de la norme ISO 9241-307. Généralement, les marques considèrent jusqu\'à 2 ou 3 pixels brillants comme "normaux" sur les panneaux de classe 1, tandis que les panneaux de classe 0 n\'en permettent aucun.',
30
+ },
31
+ ];
32
+
33
+ const howToData = [
34
+ {
35
+ name: 'Nettoyer l\'écran',
36
+ text: 'Avant de commencer, nettoyez bien votre moniteur avec un chiffon en microfibre pour éviter de confondre la poussière avec un pixel mort.',
37
+ },
38
+ {
39
+ name: 'Passer en mode plein écran',
40
+ text: 'Appuyez sur F11 ou le bouton plein écran pour que l\'interface du navigateur n\'interfère pas avec la détection des défauts.',
41
+ },
42
+ {
43
+ name: 'Alterner les couleurs',
44
+ text: 'Passez entre les arrière-plans noir, blanc, rouge, vert et bleu. Recherchez tout point qui ne correspond pas à la couleur de l\'arrière-plan.',
45
+ },
46
+ {
47
+ name: 'Démarrer le cycle de réparation',
48
+ text: 'Si vous trouvez un point brillant, positionnez l\'outil Strobe dessus et laissez-le fonctionner pendant au moins 20 minutes.',
49
+ },
50
+ ];
51
+
52
+ const faqSchema: WithContext<FAQPage> = {
53
+ '@context': 'https://schema.org',
54
+ '@type': 'FAQPage',
55
+ mainEntity: faqData.map((item) => ({
56
+ '@type': 'Question',
57
+ name: item.question,
58
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
59
+ })),
60
+ };
61
+
62
+ const howToSchema: WithContext<HowTo> = {
63
+ '@context': 'https://schema.org',
64
+ '@type': 'HowTo',
65
+ name: title,
66
+ description,
67
+ step: howToData.map((step, i) => ({
68
+ '@type': 'HowToStep',
69
+ position: i + 1,
70
+ name: step.name,
71
+ text: step.text,
72
+ })),
73
+ };
74
+
75
+ const appSchema: WithContext<SoftwareApplication> = {
76
+ '@context': 'https://schema.org',
77
+ '@type': 'SoftwareApplication',
78
+ name: title,
79
+ description,
80
+ applicationCategory: 'UtilityApplication',
81
+ operatingSystem: 'All',
82
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
83
+ inLanguage: 'fr',
84
+ };
85
+
86
+ export const content: ToolLocaleContent<PixelesPantallaUI> = {
87
+ slug,
88
+ title,
89
+ description,
90
+ faqTitle: 'Questions Fréquemment Posées',
91
+ faq: faqData,
92
+ bibliographyTitle: 'Références et Normes',
93
+ bibliography: [
94
+ {
95
+ name: 'ISO/IEC 9241-307: Ergonomie des écrans et équipements associés',
96
+ url: 'https://www.iso.org/standard/72025.html',
97
+ },
98
+ {
99
+ name: 'Politique de Pixels Morts - Normes Communes (VESA)',
100
+ url: 'https://www.vesa.org/',
101
+ },
102
+ ],
103
+ howTo: howToData,
104
+ schemas: [faqSchema, howToSchema, appSchema],
105
+ seo: [
106
+ {
107
+ type: 'title',
108
+ text: 'Guide Complet: Pixels Morts, Pixels Figés et Comment les Réparer',
109
+ level: 2,
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: 'Avez-vous remarqué une tache étrange sur votre écran qui ne change pas de couleur? Cela pourrait être un défaut du panneau. Cet outil vous aide à diagnostiquer si votre moniteur a des <strong>pixels morts</strong> ou des <strong>pixels figés</strong> et offre une solution pour tenter de les réparer.',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Quelle est la différence entre un Pixel Mort et un Pixel Figé?',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'Il existe deux principaux types de défauts de pixels sur les moniteurs modernes, chacun avec des caractéristiques et des solutions distinctes.',
123
+ },
124
+ {
125
+ type: 'title',
126
+ text: 'Pixel Figé',
127
+ level: 4,
128
+ },
129
+ {
130
+ type: 'paragraph',
131
+ html: 'C\'est le défaut le plus courant. Il se produit lorsqu\'un ou plusieurs sous-pixels (Rouge, Vert ou Bleu) se coincent à l\'état "allumé". <strong>Symptôme:</strong> Vous verrez un point de couleur vive permanent (rouge, vert, bleu ou blanc) sur un fond sombre. <strong>Souvent réparable.</strong> Le cristal liquide répond toujours; il est simplement "bloqué" dans une polarisation spécifique. Notre outil de réparation Strobe tente de le déverrouiller avec une stimulation rapide de tension.',
132
+ },
133
+ {
134
+ type: 'title',
135
+ text: 'Pixel Mort',
136
+ level: 4,
137
+ },
138
+ {
139
+ type: 'paragraph',
140
+ html: 'Se produit lorsque le transistor contrôlant le pixel défaille complètement et ne laisse pas passer la lumière. <strong>Symptôme:</strong> Un point noir permanent, particulièrement visible sur des fonds clairs ou blancs. <strong>Difficile à réparer (généralement permanent).</strong> Les dégâts sont au niveau matériel (circuit grillé). Aucune stimulation électrique ne peut le corriger. Nécessite généralement le remplacement du panneau complet.',
141
+ },
142
+ {
143
+ type: 'title',
144
+ text: 'Comment fonctionne l\'outil de réparation Strobe?',
145
+ level: 3,
146
+ },
147
+ {
148
+ type: 'paragraph',
149
+ html: 'La fonction "Réparer Pixel" utilise une technique connue sous le nom d\'<strong>Exercice des Pixels</strong>. Elle génère un motif de bruit aléatoire à haute fréquence (clignotement rapide des couleurs) sur la zone affectée.',
150
+ },
151
+ {
152
+ type: 'title',
153
+ text: 'Le Mécanisme: Cristal Liquide et Tension',
154
+ level: 4,
155
+ },
156
+ {
157
+ type: 'paragraph',
158
+ html: 'Les moniteurs LCD utilisent des cristaux liquides qui changent leur transparence selon la tension appliquée. Quand un sous-pixel se coince, cela signifie que le cristal est "gelé" dans une polarisation spécifique. Les changements de tension rapides (obtenus par des changements rapides de couleurs primaires) tentent d\'"exercer" le cristal et de le forcer à changer d\'état.',
159
+ },
160
+ {
161
+ type: 'title',
162
+ text: 'Recommandations d\'Utilisation',
163
+ level: 4,
164
+ },
165
+ {
166
+ type: 'paragraph',
167
+ html: '<ul><li>Il est recommandé de laisser fonctionner l\'outil sur la zone affectée pendant au moins <strong>10 à 20 minutes</strong>.</li><li>Si cela ne fonctionne pas, essayez des sessions plus longues (jusqu\'à 1 heure) ou appliquez une très légère pression avec un chiffon en microfibre sur le pixel (à vos risques et périls).</li><li>Dans certains cas, réchauffer légèrement le moniteur avec un sèche-cheveux (à basse température) avant d\'activer Strobe améliore les résultats.</li></ul>',
168
+ },
169
+ {
170
+ type: 'title',
171
+ text: 'Avertissement Épilepsie',
172
+ level: 3,
173
+ },
174
+ {
175
+ type: 'paragraph',
176
+ html: 'Le mode de réparation utilise des lumières clignotantes rapides à haute vitesse. Si vous avez une épilepsie photosensible ou une sensibilité à la lumière, <strong>N\'UTILISEZ PAS cette fonction</strong>. L\'exposition aux motifs clignotants peut déclencher des convulsions chez les personnes susceptibles.',
177
+ },
178
+ {
179
+ type: 'title',
180
+ text: 'Quand Chercher une Garantie ou un Remplacement',
181
+ level: 3,
182
+ },
183
+ {
184
+ type: 'paragraph',
185
+ html: 'Si vous confirmez des pixels défectueux (particulièrement plusieurs pixels morts), vous pouvez utiliser notre test comme preuve pour les réclamations de garantie. De nombreux fabricants considèrent que plus de 2-3 pixels brillants ou 1 pixel mort est un défaut de fabrication qui ouvre droit à un remplacement selon la norme ISO 9241-307 (Classe 1).',
186
+ },
187
+ {
188
+ type: 'title',
189
+ text: 'Historique des Normes de Pixels Morts',
190
+ level: 3,
191
+ },
192
+ {
193
+ type: 'paragraph',
194
+ html: 'Pendant des décennies, les moniteurs LCD ont souffert de défauts de pixels en raison de la complexité de la fabrication. Un panneau Full HD (1920×1080) contient 6 220 800 pixels (18 662 400 sous-pixels). La probabilité statistique de défauts est inévitable. C\'est pourquoi des normes comme ISO 9241-307 existent pour définir les "pixels morts acceptables" en fonction de la classe du moniteur.',
195
+ },
196
+ ],
197
+ ui: {
198
+ badge: 'Utilitaire d\'Écran',
199
+ title: 'Pixels Morts ou Figés?',
200
+ description:
201
+ 'Vérifiez l\'état de votre moniteur avec des couleurs solides pures et réparez les pixels figés avec notre outil de stimulation haute fréquence.',
202
+ btnStartTest: 'Démarrer le Test',
203
+ btnStartFix: 'Réparer le Pixel',
204
+ kbdFullscreen: 'F11',
205
+ kbdFullscreenLabel: 'Plein Écran',
206
+ kbdSpace: 'Espace',
207
+ kbdSpaceLabel: 'Changer la Couleur',
208
+ kbdEsc: 'ESC',
209
+ kbdEscLabel: 'Quitter',
210
+ colorBlack: 'Noir',
211
+ colorWhite: 'Blanc',
212
+ colorRed: 'Rouge',
213
+ colorGreen: 'Vert',
214
+ colorBlue: 'Bleu',
215
+ btnToggleFixer: 'Ouvrir l\'Outil de Réparation (Strobe)',
216
+ btnExit: 'Quitter (ESC)',
217
+ },
218
+ };