Описание
# Create Computers : Bridge
## Adds 3 new functions for the CC:Tweaked computers
Heres what it adds:
```
GetFrequency: Returns the integer value/redstone strength of any defined ongoing frequencies
```
```
SendFrequency: Sends a redstone signal to the defined frequency with a defined duration of how long that signal will last, setting the duration to 0 or math.huge will make it last indefinitely
```
```
PulseFrequency: Similar to SendFrequency however allows you to define how many times it should fire a redstone signal like a heartbeat, and allows you to define how long those pulses should be
```
## Examples being
```
GetFrequency
Example usage:
ccbridge.getf("minecraft:stone","minecraft:redstone_block")
Base usage:
ccbridge.GetFrequency(freq1,freq2)
```
```
SendFrequency
Example usage:
ccbridge.sendf("minecraft:stone","minecraft:redstone_block",true,60)
Base usage:
ccbridge.SendFrequency(freq1,freq2, boolean, integer)
```
```
PulseFrequency
Example usage:
ccbridge.pulsef("minecraft:stone","minecraft:redstone_block",true,5,10)
Base usage:
ccbridge.PulseFrequency(freq1,freq2, boolean, pulses(integer), duration(integer) )
```
There are also shortened aliases for if you want to save a few seconds typing
## Shortened Aliases:
```
getf == GetFrequency
sendf == SendFrequency
pulsef == PulseFrequency
```
There are NO new blocks and NO new textures that this mod adds
This mod was made soley because I didnt like the texture that [This mod](https://modrinth.com/mod/cc-redstone-link-bridge) made + the fact that it adds a block