Skip to content

Commit f33ca9e

Browse files
Update index.html
Signed-off-by: abdurhamanmohammeda-a11y <abdurhamanmohammeda@gmail.com>
1 parent 564e4f0 commit f33ca9e

1 file changed

Lines changed: 51 additions & 0 deletions

File tree

index.html

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,55 @@ <h2>💳 Payment / Kaffaltii</h2>
9191
}
9292
</script>
9393

94+
<script>
95+
function getPDF() {
96+
// Barreeffama guutuu PDF keessatti mul'atu
97+
let content = `
98+
=====================================================
99+
ABDURHAMAN MECHATRONICS SOLUTIONS - TECHNICAL GUIDE
100+
=====================================================
101+
Technician: Abdurhaman Mohammed Ahamed
102+
Experience: 8+ Years (Instrumentation & Control)
103+
Location: Dire Dawa, Ethiopia
104+
Contact: +251 904 267 186
105+
-----------------------------------------------------
106+
107+
1. MECHANICAL MAINTENANCE (SBM CRUSHERS)
108+
- Inspect Jaw plates for wear every 200 hours.
109+
- Lubricate main bearings of the Cone Crusher daily.
110+
- Tighten foundation bolts to prevent excessive vibration.
111+
112+
2. ELECTRICAL SYSTEMS & CONTROL
113+
- Motors > 75kW: Always verify Star-Delta connection.
114+
- Control Panel: Check for loose wiring & dust accumulation.
115+
- Instrumentation: Calibrate sensors weekly for accuracy.
116+
117+
3. TROUBLESHOOTING GUIDE
118+
- Issue: Crusher stops under load.
119+
Solution: Check V-belt tension and motor current.
120+
- Issue: Excessive noise.
121+
Solution: Inspect bearings and internal chamber.
122+
123+
4. SERVICE & PAYMENT DETAILS
124+
- For expert online consultation, send photos via WhatsApp.
125+
- Service Fee Payments:
126+
* CBE Account: 1000347503707
127+
* Telebirr: 0988535068
128+
129+
-----------------------------------------------------
130+
© 2026 Abdurhaman Mechatronics. All Rights Reserved.
131+
=====================================================
132+
`;
133+
134+
// Fayila uumuu fi Download gochuu
135+
let blob = new Blob([content], { type: "text/plain" });
136+
let link = document.createElement("a");
137+
link.href = URL.createObjectURL(blob);
138+
link.download = "Abdurhaman_SBM_Technical_Guide.txt";
139+
link.click();
140+
141+
alert("Technical Guide-ni kee bifa Document-tiidhaan download ta'eera!");
142+
}
143+
</script>
144+
94145
</body>

0 commit comments

Comments
 (0)