Casio BASIC

From Wikipedia the free encyclopedia

Casio BASIC is a programming language used in the Casio calculators such as the ClassPad, PRIZM Series, fx-9860G Series, fx-5800P, Algebra FX and CFX graphing calculators. It is also known as "BasicLike" in some models.

This programming language has nothing to do with the more or less standard BASIC, which incorporated from the beginning of the 80s, the so-called "Pocket computers" or "Pocket PC" from Casio, among which the FX series can be found. -702P, Series 100 (PB-100), Series 700 (PB-100), and many others. The version of BASIC of these machines is called Casio POCKETPC BASIC[1]

The language is a linear structured, BASIC-based programming language. It was devised to allow users to program in commonly performed calculations, such as the Pythagorean theorem and complex trigonometric calculations.

Output from the program can be in the form of scrolling or located text, graphs, or by writing data to lists and matrices in the calculator memory. Casio also makes label printers which can be used with rolls of paper for the Casio BASIC calculators.[2] Programs, variables, data, and other items can be exchanged from one calculator to another (via SB-62 cable) and to and from a computer (via USB cable). All new models of Casio graphing calculators have both ports and include both cables.

The Casio calculators, as with those of many of the other big three manufacturers' machines, can acquire data from instruments via a data logger to which probes for temperature, light intensity, pH, sound intensity (dBA), voltage and other electrical parameters, as well as other readings, and custom probes to attach to the data logger [3] can be built and configured for use with the data logger and calculator. Existing instruments can also be modified to interface with the calculator-data logger, in order to collect such data including such things as weather instruments and means of collecting data such as pulse, blood pressure, galvanic skin resistance, EKG and so on.

Like Tiny BASIC, the BASIC interpreter for Casio BASIC restricts variable names to the letters A-Z with just one predefined array (in Casio BASIC, Z, as compared to A in Level I BASIC and @ in Palo Alto Tiny BASIC). For Casio's graphical calculators, italic x, y, r and θ are also used as variable names for certain calculations. Therefore, extending the array size of predefined variable names from 26 to 30.

Numerical data can be stored in the lists and matrices available on Casio calculators. This data can be used to create sprites for non-text programs.[4] In this way, the language can also be used to create games, such as Pong, Monopoly and role-playing games.

Additionally, characters can be stored as strings in the string memory.[5]

Examples[edit]

Hello world program in Casio BASIC:

"Hello, world!" 

Program to calculate the Fibonacci sequence:

"Generate # of Fibonacci Sequence…" ?→N N≤0⇒Stop 0→A 1→B  For 1→J To N Step 1 A◢ A+B→C B→A C→B Next

References[edit]

  1. ^ "Historia y evolución del Casio PocketPC BASIC" (in Spanish). Retrieved 2021-09-10.
  2. ^ Casio CFX-9850 PB Users' Manual, Chapter 21
  3. ^ Casio CFX-9850 PB Users' Manual, Chapter 17
  4. ^ "Casio BASIC matrix sprite tutorial". Archived from the original on 2014-05-19. Retrieved 2014-05-19.
  5. ^ Casio fx-9860GII Software User's Guide, Version 3.50, Chapter 2

External links[edit]

See also[edit]