Questions tagged [basic-language]

BASIC is a family of general-purpose, high-level programming languages whose design philosophy emphasizes ease of use.

The original BASIC language was DartmouthBasic, invented by ThomasKurtz and JohnKemeny around 1964. Its TeleType-friendly editing approach is probably one of the biggest reasons for its long-standing success.

6 questions
4
votes
1 answer

Language/file format for circuit-diagram description

Is there any language/file format that can describe the block circuit diagram? For example, the following circuit diagram might be represented by something like: A { P00: VDD, P01, P02: GND, P10: GPIO output B.P00 P11: GPIO input B.P01 …
CMChang
  • 41
  • 1
1
vote
1 answer

Difference between 'high in vhdl and $high in verilog

Is there any difference between 'high in vhdl and $high in verilog??
simran
  • 21
  • 1
0
votes
1 answer

How to convert Arduino code to Mikrobasic ( Electronica Co ) For IR Thermal sensor?

I have one IR Thermal Sensor (mlx90614 with this datasheet) based on datasheet communication with sensor is in this way: Some of example is in the here: mlx90614 example arduino The code for working with arduino Base is here: #include…
Soheil Paper
  • 1
  • 1
  • 3
  • 25
0
votes
1 answer

How to control the speed of rotation of a servo using a potentiometer?

I'm trying to write a program using BASIC to turn a servo 180 degrees back and forth, and to use a potentiometer to control the speed at which the servo turns. I have a code, but when I run it, the servo freaks out and starts twitching in one spot,…
-1
votes
1 answer

used microcontroller reprogramming

I have been recently been collecting parts from various machines that I could collect few micro-controllers. I have two questions: Is it possible to take the micro-controller and reprogram it (to be somewhat similar to an arduino, and at least…
-7
votes
1 answer

please explain how this program worked

$crystal = 12000000 $regfile = "89c51cc.dat" Dim A As Byte Dim D As Byte Dim C As Byte P1 = 255 P3 = 0 P2 = 0 Main: Control: If P1 = &B11111110 Then Waitms 100 P2 = &B01111001 A = &B00000001 D = P3 C = A Xor D P3 = C Wait 1 Goto…