Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by shubham kumar

  1. S

    LCD and DFplayer working simultaneously

    thanks a lot for the help. I found out that dfplayer works on serial port so one just have to give commands to play an audio and then the main code runs as usual. I need to write the logic to see if the song has finished playing before playing another.
  2. S

    [SOLVED] Rtc ds3231 with arduino

    thank you Klaus. I have checked the data sheet and nowhere it mentions the use of EEPROM, it just need two lines for I2C. Also adafruit board doesn't use the EEPROM. Thanks for guidance. Now I am thinking why I asked a a question before giving a basic try to its datasheet. I'll write the...
  3. S

    [SOLVED] Rtc ds3231 with arduino

    I purchased a DS3231 board and its working fine with arduino. This ds3231 board has ds3231 IC and another IC which I dont know what its use was but I searched on internet that is a 32KB EEPROM Recently I searched an adafruit breakout board for DS3231 and it doesn't use that so called EEPROM and...
  4. S

    undefined reference to posix_memalign in Arm

    Thank you @FvM. Can you help me which flag do I need to include so that it'll link that code. I tried -stdlib, -stdlib=legacy_stdlib, -fno_builtin, -std=c99, -std=c11 etc .. but didnt got any success
  5. S

    undefined reference to posix_memalign in Arm

    I am running a code in Eclipse tool and using cygwin compiler and my code is running without any problem. But when I am running the same code in SDK (vivado) which has arm processor, I am getting the error "undefined reference to posix_memalign". Even when I have included the library stdlib.h...
  6. S

    Good quality sound using Microcontroller

    I have found a mp3 player. It's called DFplayer, Its communicates with arduino using serial port and plays the audios from the SD card. It is good and cheap. Now I am trying to make schematic of that pcb. thanks a lot guys. :-)
  7. S

    Good quality sound using Microcontroller

    Hi , I am not able to extract the file you have attached. Please upload it again. Thanks
  8. S

    Good quality sound using Microcontroller

    I am making a home speaker solution. Like when door opens.. it says "door is open". if door is closed it says .. "door is closed".. similarly like.. "Refrigerator is open".... "Geyser is on" .. "Television is on" ... these things I'd like to record and play on different cases. For my other...
  9. S

    Good quality sound using Microcontroller

    Thank you for the answer and the details. I am thinking that I'll record audio with 16 bits depth at 44.1KHz or 22KHz(thank you @Klaus for asking these things) and do some experiments with adafruit(thank you @bradtherad for telling about adafruit) for sound quality and store in SD card. as the...
  10. S

    Good quality sound using Microcontroller

    I am a hobbyist. Doing some experiments with sound quality. I'll pin point my problem and requirements. 1) Problem statement : I want to play audio files ( recorded in human voice, not music files, just some plain human speech files) 2) I have tried : a project with arduino microcontroller...
  11. S

    [PIC] Interfacing PIC18F and Wi-Fi

    I have a PIC18F452, MPLAB and MikroC softwares. I am currently working on sending data from Bluetooth HC05 (connected to PIC18F) and receiving in a smartphone app. Now I want to send the same data via wi-fi module to smartphone. Is this possible. Which Wi-Fi module should I purchase which is...
  12. S

    [Moved] PIC 18F452 and MPLAB

    Re: PIC 18F452 and MPLAB Here is my code #include "system.h" /* System funct/params, like osc/peripheral config */ #include "schedule.h" // #include "lcd.h" #include "display.h" #include "prim_io.h" #include "delay.h" void main(){ int i=5,p=3000 ; // char...
  13. S

    [Moved] PIC 18F452 and MPLAB

    Please give me any code, any small MPLAB code for PIC18F452. I am not able to blink a LED in MPLAB whereas I made some programs in MikroC and tested on kit. May be I did not provided correct configurations or crystal values while creating the new project for PIC18F452. Any working code (even...
  14. S

    [SOLVED] Integer to string convertor for mikroC

    sorry I forgot to post the code #define WAIT {LCD_EN=1; Delay_us(100); LCD_EN =0; Delay_us(100);} sbit LCD_RS at LATD6_bit; sbit LCD_EN at LATD7_bit; sbit LCD_D4 at LATB4_bit; sbit LCD_D5 at LATB5_bit; sbit LCD_D6 at LATB6_bit; sbit LCD_D7 at LATB7_bit; sbit LCD_RS_Direction at TRISD6_bit...
  15. S

    [SOLVED] Integer to string convertor for mikroC

    @ milan.rajik Hi. My Integer to string program is working efficiently and LCD out program is working perfectly and independently. When I tries to combine both , then it is not working. While running, in one program, for "inttostr" I used inbuilt function for LCD, in another program, for LCD I...

Part and Inventory Search

Back
Top