mirror of
https://github.com/xodio/xod.git
synced 2026-03-14 20:56:52 +01:00
44 lines
1.2 KiB
Markdown
44 lines
1.2 KiB
Markdown
---
|
||
title: Fractional Numbers and PWM
|
||
---
|
||
|
||
# #04. Fractional Numbers and PWM
|
||
|
||
<div class="ui segment note">
|
||
<span class="ui ribbon label">Note</span>
|
||
This is a web-version of a tutorial chapter embedded right into the XOD IDE.
|
||
To get a better learning experience we recommend to install the
|
||
<a href="/downloads/">desktop IDE</a> or start the
|
||
<a href="/ide/">browser-based IDE</a>, and you’ll see the same tutorial there.
|
||
</div>
|
||
|
||
XOD uses fractional numbers (also known as floats) extensively. For example,
|
||
the `LUM` pin on the `led` node can take values from 0 to 1.
|
||
0 means absolute minimum of LED brightness. Basically, it means that LED is
|
||
off. 1 means full brightness. You can control LED brightness by setting
|
||
fractional values on `LUM` pin.
|
||
|
||
## Test circuit
|
||
|
||
<div class="ui segment note">
|
||
<span class="ui ribbon label">Note</span>
|
||
The circuit is the same as for the previous lesson.
|
||
</div>
|
||
|
||

|
||
|
||
[↓ Download as a Fritzing project](./circuit.fzz)
|
||
|
||
## How-to
|
||
|
||
Use Inspector to enter a value with floating point. The following notations
|
||
are supported:
|
||
|
||
* 0.4
|
||
* .4 (same as 0.4)
|
||
* 4e-6 (scientific, 4×10<sup>-6</sup> = 0.000004)
|
||
|
||

|
||
|
||
[Next lesson →](../05-wiring)
|