C & micro & fpga
1.73K subscribers
187 photos
9 videos
98 files
39 links
Admin : فرهاد ناصری زاده
@farhad_naserizadeh
@farhad3412
آموزش زبان C و میکروکنترلرها
لینک گروه

https://t.me/joinchat/HU0aoFCv4MTCt4fz0h6AZg
کانال های مرتبط با این کانال :
@raspberry_python
@micropython_iot
@ai_dsp
Download Telegram
Rajiv_Chopra_C_Programming__A_Self.pdf
4 MB
C Programming

آموزش زبان C , کاربردی
🌟 2018

🔰 @C_micro
❇️ سینتکس nested switch

switch(ch1) {

case 'A':

printf("This A is part of outer switch" );

switch(ch2) {

case 'A':

printf("This A is part of inner switch" );

break;

case 'B': /* case code */
}
break;

case 'B': /* case code */
}

❇️ @c_micro
❇️ مثال های کاربردی برای scanf


#include <stdio.h>

int main ()
{
char str [80];
int i;

printf ("Enter your family name: ");

scanf ("%79s",str);

printf ("Enter your age: ");

scanf ("%d",&i);

printf ("Mr. %s , %d years old.\n",str,i);

printf ("Enter a hexadecimal number: ");

scanf ("%x",&i);

printf ("You have entered %#x (%d).\n",i,i);

return 0;
}

OUTPUT :

Enter your family name: Soulie

Enter your age: 29

Mr. Soulie , 29 years old.

Enter a hexadecimal number: ff

You have entered 0xff (255).

🔰 @C_micro
❇️ Calling a Function
💎 مثالی برا صدا زدن تابع

#include <stdio.h>

/* function declaration */

int max(int num1, int num2);

int main ()
{

/* local variable definition */

int a = 100;
int b = 200;
int ret;

/* calling a function to get max value */

ret = max(a, b);

printf( "Max value is : %d\n", ret );

return 0;
}

/* function returning the max between two numbers */

int max(int num1, int num2)
{

/* local variable declaration */

int result;

if (num1 > num2)

result = num1;
else

result = num2;

return result;
}

OUTPUT :

Max value is : 200


🔰 @C_micro
اندازه گیری ولتاژ آنالوگ با ADC میکروکنترلر stm32f0103c8

https://circuitdigest.com/microcontroller-projects/how-to-use-adc-in-stm32f103c8-stm32-blue-pill-board

🆔 @C_MICRO
مثالی جهت آموزش pointers

#include <stdio.h>

int main ()
{
int var = 20;

int *ip;

ip = &var;

printf("Address of var variable: %x\n", &var );

printf("Address stored in ip variable: %x\n", ip );

printf("Value of *ip variable: %d\n", *ip );

return 0;

}

OUTPUT :

Address of var variable: bffd8b3c

Address stored in ip variable: bffd8b3c

Value of *ip variable: 20

🔰 @c_micro
#آموزشی خانه هوشمند با آردوینو

@c_micro
لینک گروه زبان سی و میکروکنترلر

https://t.me/joinchat/Bi883FCv4MTG4SSQDYF62w
مدار اندازه گیری رطوبت خاک با آردینو نانو

@C_micro
کد اندازه گیری رطوبت خاک

#include <LiquidCrystal.h>

const int sensor_pin = A1;

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

void setup() {

lcd.begin(16, 2);

lcd.print("Soil Moisture");
}

void loop() {

float moisture_percentage;

int sensor_analog;

sensor_analog = analogRead(sensor_pin);

moisture_percentage = ( 100 - ( (sensor_analog/1023.00) * 100 ) );

lcd.setCursor(0, 1);

Serial.print("Moisture Percentage = ");

lcd.print(moisture_percentage);

delay(1000);
}

@c_micro
اصول کارکرد سنسور رطوبت خاک

@c_micro
نحوه خواندن مقاومت
@c_micro
Low pass filter

فیلتر پایین گذر
🔰 @c_micro
High pass filter

فیلتر بالاگذر
🔰 @c_micro