Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Implementing the Arduino toolboxThe program structure | ||||||||
Line: 39 to 39 | ||||||||
The Arduino has several 10 bit ADCs on chip which can be used to read analog voltage levels. Here is the command code: Ap: reads the voltage level from analog pin p | ||||||||
Added: | ||||||||
> > | InterruptsNormally interrupts can only be generated on pins 2 and 3 on an Arduino Uno or Nano. However, there are also so-called "PinChangeInterrupts" which allow to hook up an interrupt service routine when a signal level change on a GPIO pin happens. This can be "FALLING" or "RISING" for a falling or rising edge of the signal or it can be "CHANGE" for both edges. Unfortunately there is a problem when using this with the SoftSerial library because both libraries use the same interrupt vectors. Since for our debugging port we only have to send but to not receive message I use the SendonlySoftSerial library attached to this page: https://afnog.iotworkshop.africa/pub/Embedded_Systems/ImplementingTheArduinoToolbox/SendOnlySoftwareSerial.zip These are the protocol codes sent to the Arduino: Iacup: a: attach pin p for c: change mode f: falling edge: r: rising edge, u: updown: u: up-counter, d: down-counter c: clearIdp: d: detach from interrupt on pin p Irp: r: read no of counts from interrupt counter EncoderThe rotary encoder also make use of interrupts. It uses 2 signals: clock and data to see when it is turned and in which direction it has been turned. The clock signal is connected to an interrupt and the interrupt service routine, by looking at the data signal, finds out if the encoder was turned clock-wise (a counter increments) of counter-clock-wise (a counter decrements).
| |||||||
The multi-function boardIn order to test digital read/write, analog read/write etc. we need an Arduino to which the corresponding hardware is connected, e.g. a switch to be read with digital read, a potentiometer for analog read or an LED for digital write... An easy solution is to use the multi-function board which has all these connections already done and which must simply be installed as a piggy back board onto e.g. an Arduino Uno. | ||||||||
Line: 56 to 72 | ||||||||
https://afnog.iotworkshop.africa/pub/Embedded_Systems/ImplementingTheArduinoToolbox/multiFunctionBoard.pdf | ||||||||
Changed: | ||||||||
< < | I use GPIO pin 2 as TX line for a SoftSerial port onto which I send debugging messages. There is a problem when using this with the PinChangeInterrupt library because both libraries use the same interrupt vectors. Since for our debugging port we only have to send but to not receive message I use the SendonlySoftSerial library attached to this page: https://afnog.iotworkshop.africa/pub/Embedded_Systems/ImplementingTheArduinoToolbox/SendOnlySoftwareSerial.zip | |||||||
> > | I use GPIO pin 2 as TX line for a SoftSerial port onto which I send debugging messages. | |||||||
The Arduino server program and the test procedureWith this information it is possible to develop the first version of the Arduino server. Since all it needs is input from the serial line we can write a simple C program to test the server. A program asking for the server version (and printing it) as well as the Arduino server are attached to this TWiki page. | ||||||||
Line: 84 to 98 | ||||||||
A tar archive with a Xcos toolbox containing Digital Write as well as as a basic stepper motor xcos block is attached to this page: | ||||||||
Changed: | ||||||||
< < | https://afnog.iotworkshop.africa/pub/Embedded_Systems/ImplementingTheArduinoToolbox/arduino-linux_1.5-src-v0.4.tar.gz | |||||||
> > | https://afnog.iotworkshop.africa/pub/Embedded_Systems/ImplementingTheArduinoToolbox/arduino-linux_1.6-src-6feb.tar.gz | |||||||
This is the original arduino_1.5-src![]() | ||||||||
Line: 132 to 146 | ||||||||
| ||||||||
Deleted: | ||||||||
< < |
| |||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Implementing the Arduino toolboxThe program structure | |||||||||||||
Line: 39 to 39 | |||||||||||||
The Arduino has several 10 bit ADCs on chip which can be used to read analog voltage levels. Here is the command code: Ap: reads the voltage level from analog pin p | |||||||||||||
Added: | |||||||||||||
> > | The multi-function boardIn order to test digital read/write, analog read/write etc. we need an Arduino to which the corresponding hardware is connected, e.g. a switch to be read with digital read, a potentiometer for analog read or an LED for digital write... An easy solution is to use the multi-function board which has all these connections already done and which must simply be installed as a piggy back board onto e.g. an Arduino Uno.![]()
| ||||||||||||
The Arduino server program and the test procedureWith this information it is possible to develop the first version of the Arduino server. Since all it needs is input from the serial line we can write a simple C program to test the server. A program asking for the server version (and printing it) as well as the Arduino server are attached to this TWiki page. | |||||||||||||
Line: 113 to 133 | |||||||||||||
| |||||||||||||
Added: | |||||||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Implementing the Arduino toolboxThe program structure | ||||||||
Line: 34 to 34 | ||||||||
Sm: moves the stepping motor by 1 step Sc: Clears all coil signals to low | ||||||||
Added: | ||||||||
> > | Reading analog valuesThe Arduino has several 10 bit ADCs on chip which can be used to read analog voltage levels. Here is the command code: Ap: reads the voltage level from analog pin p | |||||||
The Arduino server program and the test procedureWith this information it is possible to develop the first version of the Arduino server. Since all it needs is input from the serial line we can write a simple C program to test the server. A program asking for the server version (and printing it) as well as the Arduino server are attached to this TWiki page. | ||||||||
Line: 59 to 64 | ||||||||
A tar archive with a Xcos toolbox containing Digital Write as well as as a basic stepper motor xcos block is attached to this page: | ||||||||
Changed: | ||||||||
< < | https://afnog.iotworkshop.africa/pub/Embedded_Systems/ImplementingTheArduinoToolbox/arduino-linux_1.5-src.tar.gz | |||||||
> > | https://afnog.iotworkshop.africa/pub/Embedded_Systems/ImplementingTheArduinoToolbox/arduino-linux_1.5-src-v0.4.tar.gz | |||||||
This is the original arduino_1.5-src![]() | ||||||||
Line: 87 to 92 | ||||||||
![]() | ||||||||
Changed: | ||||||||
< < | Now you can start xcos either by typing xcos in the command window orr by clicking the Xcos icon (the one looking a bit like an oscilloscope). In the palettes box coming up you should see an Arduino entry: | |||||||
> > | Start xcos either by typing xcos in the command window or by clicking the Xcos icon (the one looking a bit like an oscilloscope). In the palettes box coming up you should see an Arduino entry: | |||||||
![]() | ||||||||
Changed: | ||||||||
< < | Now you can create a diagram using your new Arduino blocks and run it. The LED should blink or the stepper motor move. | |||||||
> > | Now you can create a diagram using your new Arduino blocks and run it. You can blink LEDs with the digital output block, read switches with the digital input block, read analog values or make a stepper motor move. | |||||||
-- ![]() | ||||||||
Line: 104 to 109 | ||||||||
| ||||||||
Deleted: | ||||||||
< < |
| |||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | |||||||||
---|---|---|---|---|---|---|---|---|---|
Implementing the Arduino toolboxThe program structure | |||||||||
Line: 32 to 32 | |||||||||
Sanp: Where "S" identifies for the stepper motor device, "a" stands for "attach" n is the GPIO pin and p is the pulse (N1 .. N4 or the stepping motor driver module) . The command also programs the GPIO pins as output. Sa21 will therefore attach GPIO pin 2 to the first stepping motor driver input (N1 on the driver card). Sm: moves the stepping motor by 1 step | |||||||||
Added: | |||||||||
> > | Sc: Clears all coil signals to low | ||||||||
The Arduino server program and the test procedureWith this information it is possible to develop the first version of the Arduino server. Since all it needs is input from the serial line we can write a simple C program to test the server. A program asking for the server version (and printing it) as well as the Arduino server are attached to this TWiki page. | |||||||||
Line: 53 to 55 | |||||||||
![]() | |||||||||
Added: | |||||||||
> > | How to bring the demo system upA tar archive with a Xcos toolbox containing Digital Write as well as as a basic stepper motor xcos block is attached to this page: https://afnog.iotworkshop.africa/pub/Embedded_Systems/ImplementingTheArduinoToolbox/arduino-linux_1.5-src.tar.gz This is the original arduino_1.5-src![]()
![]() ![]() ![]() | ||||||||
-- ![]() | |||||||||
Line: 65 to 104 | |||||||||
| |||||||||
Added: | |||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Implementing the Arduino toolboxThe program structure | ||||||||
Line: 10 to 10 | ||||||||
There is already an Xcos system reading out several sensors and controlling several actuators, mainly motors. Unfortunately this Scilab toolbox works on Windows exclusively. It is however a good starting point for our Linux version. Using the same communication protocol and only changing the OS dependent calls to the serial driver will make both toolboxes largely compatible with each other. I decided however to re-implement the Arduino server including better debugging features. | ||||||||
Added: | ||||||||
> > | The communication protocol | |||||||
Changed: | ||||||||
< < | The communication protocol must be as simple and short as possible in order to increase the speed and therefore the maximum possible sampling rate. Here is the basic protocol description:
Setting the analogue reference and getting the server version | |||||||
> > | The communication protocol must be as simple and short as possible in order to increase the speed and therefore the maximum possible sampling rate.The server itself is an Arduino sketch consisting essentially of a big switch statement. The first specifies the type of action to be taken or the device to talk to. For the moment only 2 devices are implemented:
Getting the server version | |||||||
Changed: | ||||||||
< < | R0: sets the analogue reference to default R1: sets the analogue reference to internal R2: sets the analogue reference to external R3: gets the server version code. The server answers with Vx where x is the version number e.g. V4 for version 4 | |||||||
> > | V: gets the server version code. The server answers with Vab where a is the major and b the minor version number e.g. V13 for version 1.3 | |||||||
Reading or writing a digital GPIO line | ||||||||
Changed: | ||||||||
< < | Dan0 or Dan1: attaches GPIO line n. The last character defines if the line in input (0) or output (1). n is the GPIO pin number which can be '1' (0x31) up to '9' (0x39). For higher pin numbers just take the next ASCII characters. Having a look at the ASCII table tells us the pin number 10 will correspond to the ASCII characters with code (0x3A) which is ':', 11 corresponds to ';' and so on. Drn: Read the state of GPIO line n Dwn0 or Dwn1 sets the GPIO line n to 0 or 1 respectively. | |||||||
> > | Dan0 or Dan1: attaches GPIO line n. The last character defines if the line is input (0) or output (1). n is the GPIO pin number which can be '1' (0x31) up to '9' (0x39). For higher pin numbers just take the next ASCII characters. Having a look at the ASCII table tells us the pin number 10 will correspond to the ASCII characters with code (0x3A) which is ':', 11 corresponds to ';' and so on. Drn: Read the state of GPIO line n Dwn0 or Dwn1 sets the GPIO line n to 0 or 1 respectively. | |||||||
![]() | ||||||||
Added: | ||||||||
> > | Controlling a stepper motorIn case of the stepper motor we need a means to define which GPIO pin is connected to which stepper motor coil. This is done with a command: Sanp: Where "S" identifies for the stepper motor device, "a" stands for "attach" n is the GPIO pin and p is the pulse (N1 .. N4 or the stepping motor driver module) . The command also programs the GPIO pins as output. Sa21 will therefore attach GPIO pin 2 to the first stepping motor driver input (N1 on the driver card). Sm: moves the stepping motor by 1 stepThe Arduino server program and the test procedure | |||||||
With this information it is possible to develop the first version of the Arduino server. Since all it needs is input from the serial line we can write a simple C program to test the server. A program asking for the server version (and printing it) as well as the Arduino server are attached to this TWiki page. The Arduino server uses debugging code which prints each character received as well as the interpretation in makes out of it to a Softserial port with Rx connected to GPIO pin 11 and Tx connected to pin 10. This Softserial port can be attached to a USB to serial adapter and the output observed with a serial emulator program like minicom. The communication between Scilab and the Arduino happens on /dev/ttyUSB0, the debugging port should therefore be connected to /dev/ttyUSB1 (minicom -D /dev/ttyUSB1). | ||||||||
Changed: | ||||||||
< < | Here is a screen dump of the server output when we first read the server version and then blink the builtin LED 5 times: | |||||||
> > | Both, the test programs as well as the xcos toolbox, pass through the same serial library with the following calls:
![]() ![]() ![]() | |||||||
Changed: | ||||||||
< < | ![]() | |||||||
> > | And in fact you see the motor turn when it receives the Sm commands. | |||||||
-- ![]() | ||||||||
Line: 37 to 62 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Implementing the Arduino toolboxThe program structure | ||||||||
Line: 7 to 7 | ||||||||
| ||||||||
Added: | ||||||||
> > | There is already an Xcos system reading out several sensors and controlling several actuators, mainly motors. Unfortunately this Scilab toolbox works on Windows exclusively. It is however a good starting point for our Linux version. Using the same communication protocol and only changing the OS dependent calls to the serial driver will make both toolboxes largely compatible with each other.
I decided however to re-implement the Arduino server including better debugging features.
The communication protocol must be as simple and short as possible in order to increase the speed and therefore the maximum possible sampling rate. Here is the basic protocol description:
Setting the analogue reference and getting the server versionR0: sets the analogue reference to defaultR1: sets the analogue reference to internal R2: sets the analogue reference to external R3: gets the server version code. The server answers with Vx where x is the version number e.g. V4 for version 4 Reading or writing a digital GPIO lineDan0 or Dan1: attaches GPIO line n. The last character defines if the line in input (0) or output (1). n is the GPIO pin number which can be '1' (0x31) up to '9' (0x39). For higher pin numbers just take the next ASCII characters. Having a look at the ASCII table tells us the pin number 10 will correspond to the ASCII characters with code (0x3A) which is ':', 11 corresponds to ';' and so on.Drn: Read the state of GPIO line n Dwn0 or Dwn1 sets the GPIO line n to 0 or 1 respectively. ![]() ![]() | |||||||
-- ![]() Comments | ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > |
Implementing the Arduino toolboxThe program structureAs you would probably expect, the program will consist of three parts
![]() Comments |