Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

Recent content by hassanmahmoud

  1. H

    I need help again

    Thank you for this great advice, which I will always remember, and now I got another microcontroller PIC16F1509 and put the full code in it, and the problem of insufficient memory did not appear, only the data does not appear on the screen, and I am trying now to solve this problem and I will...
  2. H

    I need help again

    Thank you, my friend, for these important tips and your experiences that you give me. Indeed, I learn a lot from everyone here. I was asked about the numbers of the microcontrollers that you mentioned, and I did not find them with any electronic component seller in my country, but I found the...
  3. H

    I need help again

    I will take a look at it and make sure it is in the local market in my country. Thank you my friend
  4. H

    I need help again

    My friend, I want to put 15 more words in memory, but it does not fit, so I thought of adding an EEPROM because many people use this method and put a lot of other information and pictures in it.
  5. H

    I need help again

    I know that, but I build my projects with microcontrollers available in my country, and they are only 3 types. The best of them is 16F877, but it is large in size and has many terminals, 40 terminals, and this does not suit my projects. PIC recommended to me the number of limbs from 18 to 20...
  6. H

    I need help again

    I made a new project with the 16C73B microcontroller, but when adding the words, the random memory was not enough, so I added the EEPROM, but I had difficulty adding the words to the EEPROM 24C08B. And I use Micro C program. Thank you for all the help you give me // Lcd pinout settings sbit...
  7. H

    I need urgent help

    My code // LCD module connections sbit LCD_RS at RB2_bit; sbit LCD_EN at RB3_bit; sbit LCD_D4 at RB4_bit; sbit LCD_D5 at RB5_bit; sbit LCD_D6 at RB6_bit; sbit LCD_D7 at RB7_bit; sbit LCD_RS_Direction at TRISB2_bit; sbit LCD_EN_Direction at TRISB3_bit; sbit LCD_D4_Direction at TRISB4_bit; sbit...
  8. H

    I need urgent help

    // LCD module connections sbit LCD_RS at RB2_bit; sbit LCD_EN at RB3_bit; sbit LCD_D4 at RB4_bit; sbit LCD_D5 at RB5_bit; sbit LCD_D6 at RB6_bit; sbit LCD_D7 at RB7_bit; sbit LCD_RS_Direction at TRISB2_bit; sbit LCD_EN_Direction at TRISB3_bit; sbit LCD_D4_Direction at TRISB4_bit; sbit...
  9. H

    I need urgent help

    The program that I created must have an IF function because I have several choices. If the first choice is not fulfilled, it moves to the second until the last choice. If it does not check the conditions of all the choices, it gives me an error message and the program works very well, but I just...
  10. H

    I need urgent help

    thanks
  11. H

    I need urgent help

    I am using a 16f877a microcontroller, 2*16 LCD, and micro c software for microchip.
  12. H

    I need urgent help

    I have designed a program for the microcontroller and it works well, and I only need to put a welcome message at the start of the operation, which disappears for 2 seconds forever, and does not appear until I restart the microcontroller, and the program after that completes its functions well...

Latest threads

New Articles From Microcontroller Tips

Back
Top