Thank u sooooo much for detailed tutorial about how to code our peojects, i have a request plz continue making real projects in tinkercad or physically and teach us the code, nobody on youtube does this. I also have a specific request for wireless nrf modules programming, like if we want to use them for water tank monitoring where sender module will be attached with float sensor or ultrasonic sensor to measure water level and reciever will have a lcd display which will map data recieved from sensor and show in waterlevel percentage on lcd screen. Also introduce manual switch to run pump anytime we want. This will teach us a lot of things and make us able to start creating our own real projects. Looking forward.
@Linked_Frequency2 жыл бұрын
Hi Aydee Sam, Thank you for your suggestion and feedback. We are working on further tutorials and will be processing them soon. Using wireless nRF module for overhead tank monitoring is really good idea. We will consider this project in one our future content. Happy learning :)
@aydeesam17682 жыл бұрын
@@Linked_Frequency looking forward. Dont forget to add auto and manual pump control.
@Linked_Frequency2 жыл бұрын
For sure :)
@nandhinijagadeesan38352 жыл бұрын
Hello sir.. for my project i am using two sensors. I have separate code for those two sensors. How to integrate those two code into one in arduino ide?
@Linked_Frequency2 жыл бұрын
Hi Nandhini, I have explained simple process for this question in the same video. Have you watched full video? If not, please watch. However, simple thumb rule is here : 1. Create a new file in IDE and copy paste everything from Sensor 1 code into this new file. 2. Now save this new file with proper name(eg. integrated_code). 3. Copy and paste everything in above setup from Sensor 2 code to new file integrated_code. 4. Copy and paste everything inside setup from Sensor 2 code to new file integrated_code. 5. Copy and paste everything inside loop from Sensor 2 code to new file integrated_code, with your logic of flowchart. 6. Copy and paste everything after loop from Sensor 2 code to new file integrated_code, if you have created any user defined functions. That's it. Ofcourse you need to have good hold on basics of C programming to handle this integration process. Happy leaning :)