Posts

How to use serial.write() in Arduino.

Image
-           First you have to declare it with board rate 9600 Serial.begin(9600);    -           Then we check is serial port is available. If available then we write data to it. if (Serial.available()>0) {       Serial.Write(byte data); }

How to write string in serial port in arduino.

Image
For write the string in serial port you can use . Serial.println(“YourString”)’;

How to check existing of charter in string in arduino

Image
A rduino program is develops in c++ language. For find the value from the string we use the index of function. Example:       int intIndex = rcvData.indexOf('on');     if (intIndex >0)     {      digitalWrite(7, HIGH);    // You word “On” is exit in string.     }

How to define string in arduino

Image
For defining the string in arduino syntax given below. String rcvData;

How to find value from string in arduino

Image
Arduino program is develops in c++ language. For find the value from the string we use the index of function. Example:      int intIndex = rcvData.indexOf('on');    if (intIndex >0)    {      digitalWrite(7, HIGH);    // You word “On” is exit in string.    }

How to get request page value in navision report?

Image
For getting the value whatever selected by end user on request page of report we use "GETFILTER" function. Syntax : <Table Name>.GETFILTER(<Field Name>); Example: MESSAGE(FORMAT("Bank Account Ledger Entry".GETFILTER("Posting Date"))); it will shows posting date for 'Bank Account Ledger Entry' table selected by user.

How to get request page filter in navision report.

Image
For getting the value whatever selected by end user on request page of report we use "GETFILTER" function. Syntax : <Table Name>.GETFILTER(<Field Name>); Example: MESSAGE(FORMAT("Bank Account Ledger Entry".GETFILTER("Posting Date"))); it will shows posting date for 'Bank Account Ledger Entry' table selected by user.