توزيع مأخذ القوى و توصيلها على الدائرة

توزيع مقابس القوى على الجدران  

1.     يجب ألا تزيد المسافة الأفقية بين مخرج المقبس والحائط العمودى عن 1.8 م وبين مخرج المقبس والمخرج الذى يلي عن 3.65 م 

2.     يكون منسوب تركيب المقابس من 20 سم إلى 45 سم من الأرضية النهائية فى الاماكن السكنية والمكاتب باستثناء المطابخ والحمامات فتكىون علىى منسىوب مىن 1.2 م إلى 1.35 م

3.      يجب أن يجهز المقبس بوسىيلة بحيث يلامىس طىرف الأرضىى فيى جسىم العلبة المعدنية التى يركب بها.4

4.     يراعى عند استخدام مقابس أو مأخذ قوى على جانبى حائط أن تترك مسىافة أفقيىة فيما بينهما مقدارها 150 مم على الأقل لتجنب انتقال الصوت من خلالها .

5.     يجب أن تكون المقابس فى الحمامات أو المطابخ أو ما يماثلها فى أماكن بحيث لا تكون فى متناول الذراع لشخص مبلل بالمياه.

6.     يجب مراعاة اختيىار درجىة الحماىة المناسىبة للمقىبس فىى الأماكن المعرضة للمياه و الاتربة.


عدد المأخذ 13 امبير على الدائرة الواحدة 

اقصى عدد مخارج يمكن ربطه على دائرة واحده بمأخذ 13 امبير  هو 8 مخارج و المفضل ( 6 مخارج )


تخدم الدائرة الواحدة مساحة لا تزيد عن 50 متر مربع او غرفتين لا تزيد مساحتها الكلية عن 30 متر مربع
يجب ان لا يقل العدد عن مأخذين اثنين لغرفة التى تقل مساحتها عن 10 متر مربع و اربعه مأخذ للغرف التى تكون مساحتها 20 متر مربع او اقل قليلا 
تحمى الدائرة بقاطع تيار 20 امبير  و سلك لا يقل عن 2.5 مم2 و يفضل 4 مم2 طبقا للمواصفات الخليجية 



 



 

ارسل رسائل باستخدام Arduino LCD


طريقة استخدام وحده الاردينو فى كتابة رسالة و اظهر على شاشة  LCD

 

المكونات

  1. Arduino uno
  2. LCD
طريقة التوصيل 

 يتم التوصيل كما هو موضوح فى الرسم 



الكود المستخدم 

#include 
#include 
#include   // F Malpartida’s NewLiquidCrystal library
#define I2C_ADDR    0x20  // Define I2C Address for controller
#define BACKLIGHT_PIN  7
#define En_pin  4
#define Rw_pin  5
#define Rs_pin  6
#define D4_pin  0
#define D5_pin  1
#define D6_pin  2
#define D7_pin  3
#define  LED_OFF  0
#define  LED_ON  1
LiquidCrystal_I2C  lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);
void setup()
{
lcd.begin (16,2);  // initialize the lcd
// Switch on the backlight
lcd.setBacklightPin(BACKLIGHT_PIN,NEGATIVE);
lcd.setBacklight(LED_ON);
}
void loop()
{
// Reset the display
lcd.clear();
delay(1000);
lcd.home();
// Print on the LCD
lcd.backlight();
lcd.setCursor(0,0);
lcd.print(“Hello, world!”);  // you can write your massage here
delay(8000);
}

LASER based Door Alarm

This door alarm is based on the interruption of Laser beam. A low cost Laser pointer is used as the source of light beam. When somebody breaks the laser path, the alarm will be generated for few seconds.

linK

Short circuit Protection

With this simple temperature to voltage converter circuit we can do a precise measurement of the temperature in a room. A NTC resistor or a thermistor is used as a sensor that has strong temperature dependence. If the NTC temperature rises then the output voltage rises with 0.5 V per 10C.
Short circuit Protection

Short circuit Protection

With this simple temperature to voltage converter circuit we can do a precise measurement of the temperature in a room. A NTC resistor or a thermistor is used as a sensor that has strong temperature dependence. If the NTC temperature rises then the output voltage rises with 0.5 V per 10C.
Short circuit Protection

Temperature to Voltage Converter

Temperature to Voltage Converter

Audio Mixer

Audio Mixer