Salman Faris
Published Ā© CC BY-SA

RAK Wis Blocks: Build Things, One Block At A time

WisBlock is a modular approach solution developed by RAK Wireless to build IoT solutions by adding blocks together.

BeginnerProtip1 hour1,472
RAK Wis Blocks: Build Things, One Block At A time

Things used in this project

Hardware components

RAKwireless RAK Wis Block
Ɨ1
RAKwireless WisBlock Base Board
Ɨ1
RAKwireless WisBlock LPWAN Module
Ɨ1
RAKwireless WisBlock Temperature and Humidity Sensor
Ɨ1
RAKwireless WisBlock Barometric Pressure Sensor
Ɨ1
RAKwireless WisBlock Ambient Light Sensor
Ɨ1
RAKwireless WisBlock 3-axis acceleration sensor
Ɨ1
RAKwireless WisBlock Environmental Sensor
Ɨ1
RAKwireless WisBlock GNSS Location Module
Ɨ1
RAKwireless WisBlock Wi-Fi Interface Module
Ɨ1
WisBlock Sensor Adapter Module RAK1920
RAKwireless WisBlock Sensor Adapter Module RAK1920
Ɨ1
WisBlock RS485 interface Module RAK5802
RAKwireless WisBlock RS485 interface Module RAK5802
Ɨ1
Grove - Variable Color LED V1.1
Seeed Studio Grove - Variable Color LED V1.1
Ɨ1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

I/O Block

Base Block

Code

Blink

C/C++
void setup()
{
  pinMode(17, OUTPUT);
  Serial.begin(115200);
}

void loop()
{
  digitalWrite(17, HIGH);
  Serial.println("LED ON");
  delay(1000);
  digitalWrite(17, LOW);
  Serial.println("LED OFF");
  delay(1000);
}

Credits

Salman Faris
31 projects • 437 followers
Maker | Hardware Hacker | Electronics Enthusiast
Contact

Comments

Please log in or sign up to comment.