mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-12-26 14:09:50 -08:00
Merge branch 'master' into ha-device-trackers
This commit is contained in:
commit
5cfb4c7f73
|
@ -46,9 +46,15 @@ us on [Discord](https://discord.com/invite/ktMAKGBnBs) to add your group.
|
||||||
### Nova Scotia
|
### Nova Scotia
|
||||||
- [Mesht Nova Scotia](https://t.me/MeshtNovaScotia)
|
- [Mesht Nova Scotia](https://t.me/MeshtNovaScotia)
|
||||||
|
|
||||||
|
### Ontario
|
||||||
|
- [Mesht Ontario](https://t.me/meshtOnt)
|
||||||
|
|
||||||
### Prince Edward Island
|
### Prince Edward Island
|
||||||
- [Mesht PEI](https://t.me/MeshtPEI)
|
- [Mesht PEI](https://t.me/MeshtPEI)
|
||||||
|
|
||||||
|
### Quebec
|
||||||
|
- [Mesht Quebec](https://t.me/meshtQuebec)
|
||||||
|
|
||||||
### Saskatchewan
|
### Saskatchewan
|
||||||
- [Mesht Saskatchewan](https://t.me/MeshtSaska)
|
- [Mesht Saskatchewan](https://t.me/MeshtSaska)
|
||||||
##
|
##
|
||||||
|
|
|
@ -69,7 +69,7 @@ Further information on the RAK5005-O can be found on the [RAK Documentation Cent
|
||||||
- (x4) WisBlock Sensor Module slots
|
- (x4) WisBlock Sensor Module slots
|
||||||
- **Buttons**
|
- **Buttons**
|
||||||
- (x1) Reset Button
|
- (x1) Reset Button
|
||||||
- It may be possible to add a user button using the [13002 IO module](https://store.rakwireless.com/collections/wisblock-interface/products/adapter-module-rak13002).
|
- To add a user button, you can utilize the AIN1 pin, which is exposed as pin 31 in the firmware.
|
||||||
- **Connectors**
|
- **Connectors**
|
||||||
- Connector for 3.7v LiPo battery (with charge controller)
|
- Connector for 3.7v LiPo battery (with charge controller)
|
||||||
- Connector for 5v solar panel (max 5.5v)
|
- Connector for 5v solar panel (max 5.5v)
|
||||||
|
|
|
@ -13,12 +13,36 @@ groupId="rakmodules"
|
||||||
queryString="rakmodules"
|
queryString="rakmodules"
|
||||||
defaultValue="GPS"
|
defaultValue="GPS"
|
||||||
values={[
|
values={[
|
||||||
|
{label: 'User Button', value: 'User Button'},
|
||||||
{label: 'GPS Module', value: 'GPS'},
|
{label: 'GPS Module', value: 'GPS'},
|
||||||
{label: 'Buzzer', value: 'Buzzer'},
|
{label: 'Buzzer', value: 'Buzzer'},
|
||||||
{label: 'I/O Module', value: 'IO'},
|
{label: 'I/O Module', value: 'IO'},
|
||||||
{label: 'Environmental Sensors', value:'Sensors'},
|
{label: 'Environmental Sensors', value:'Sensors'},
|
||||||
{label: 'RTC Module', value:'RTC'}
|
{label: 'RTC Module', value:'RTC'}
|
||||||
]}>
|
]}>
|
||||||
|
<TabItem value="User Button">
|
||||||
|
|
||||||
|
## User Button
|
||||||
|
|
||||||
|
Any tactile momemtary push button is compatible as long as it is wired to the correct pins, here's a sample of a [Push Button](https://a.co/d/bPhhTxm)
|
||||||
|
|
||||||
|
|
||||||
|
The button is recommended to be used on the following base board's exposed pins or slots :
|
||||||
|
|
||||||
|
- RAK19007 on AIN1 (Pin 31) - See supporting instructions [Here](https://store.rokland.com/pages/adding-a-user-button-rak19007)
|
||||||
|
- RAK19001 on IO5 (Pin 37)
|
||||||
|
|
||||||
|
### Wiring
|
||||||
|
One side of the switch should be on GND and the other on the recommended Pin per your baseboard. The pin must be configured on the node using the app, webclient or CLI.
|
||||||
|
|
||||||
|
### Resources
|
||||||
|
For more information on the User Button functionality refer to
|
||||||
|
- [RAK WisBlock Hardware Buttons](https://meshtastic.org/docs/hardware/devices/rak/buttons/)
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<TabItem value="GPS">
|
<TabItem value="GPS">
|
||||||
|
|
||||||
## GPS Modules
|
## GPS Modules
|
||||||
|
|
Loading…
Reference in a new issue