All Projects â†’ IBM-Swift-Sunset â†’ Aphid

IBM-Swift-Sunset / Aphid

Licence: Apache-2.0 license
🚫 This project is no longer maintained. Lightweight MQTT client in Swift 3

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Aphid

Robot Arm Write Chinese
使用uArm Swift Pro机械臂写中文-毛笔字
Stars: ✭ 57 (+1.79%)
Mutual labels:  arm
stm32f103xx
DEPRECATED
Stars: ✭ 31 (-44.64%)
Mutual labels:  arm
SHA256Hasher
SHA-256 IP core for ZedBoard (Zynq SoC)
Stars: ✭ 25 (-55.36%)
Mutual labels:  arm
Embedded-Linux-Education-Kit
Embedded Linux Education Kit
Stars: ✭ 66 (+17.86%)
Mutual labels:  arm
CorePartition
Universal Cooperative Multithread Lib with real time Scheduler that was designed to work, virtually, into any modern micro controller or Microchip and, also, for user space applications for modern OS (Mac, Linux, Windows) or on FreeRTOS as well. Supports C and C++
Stars: ✭ 18 (-67.86%)
Mutual labels:  arm
Robotic Arm
Forward and Inverse Kinematics for Robotic Manipulator
Stars: ✭ 21 (-62.5%)
Mutual labels:  arm
STM32Primer2 GNSS Tracker
GNSS Tracker For STM32 Primer2
Stars: ✭ 24 (-57.14%)
Mutual labels:  arm
discolix
distroless arm docker images
Stars: ✭ 22 (-60.71%)
Mutual labels:  arm
data-management-zone
Template to deploy the Data Management Zone of Cloud Scale Analytics (former Enterprise-Scale Analytics). The Data Management Zone provides data governance and management capabilities for the data platform of an organization.
Stars: ✭ 142 (+153.57%)
Mutual labels:  arm
asm2cfg
Python command-line tool and GDB extension to view and save x86, ARM and objdump assembly files as control-flow graph (CFG) pdf files
Stars: ✭ 42 (-25%)
Mutual labels:  arm
vscode-arm
Arm® Syntax highlighting for VSCode
Stars: ✭ 35 (-37.5%)
Mutual labels:  arm
armroper
ARM rop chain gadget searcher
Stars: ✭ 36 (-35.71%)
Mutual labels:  arm
data-product-analytics
Template to deploy a Data Product for analytics and data science use-cases into a Data Landing Zone of the Data Management & Analytics Scenario (former Enterprise-Scale Analytics). The Data Product template can be used by cross-functional teams to create insights and products for external users.
Stars: ✭ 62 (+10.71%)
Mutual labels:  arm
rsync-static
Static RSync binaries compiled for x86, ARM, and ARM64. Useful for running on Android. Built daily
Stars: ✭ 40 (-28.57%)
Mutual labels:  arm
PrntrBoardV2
32-bit 3D Printer controller board using STM32F407 and replaceable TMC2660/2209 stepper drivers.
Stars: ✭ 31 (-44.64%)
Mutual labels:  arm
makeuniversal
Tool to create a Universal Binary version of a Qt distribution.
Stars: ✭ 40 (-28.57%)
Mutual labels:  arm
ez-rtos
A micro real-time operating system supporting task switching, delay function, memory allocator and critical section. It is writen on ARM Cortex-M3 assemble language, it runs successfully on STM32F103 MCU.
Stars: ✭ 57 (+1.79%)
Mutual labels:  arm
ARMed
A terminal-based emulator of the ARM instruction set written in Golang
Stars: ✭ 64 (+14.29%)
Mutual labels:  arm
compv
Insanely fast Open Source Computer Vision library for ARM and x86 devices (Up to #50 times faster than OpenCV)
Stars: ✭ 155 (+176.79%)
Mutual labels:  arm
Tow-Boot
An opinionated distribution of U-Boot. — https://matrix.to/#/#Tow-Boot:matrix.org?via=matrix.org
Stars: ✭ 338 (+503.57%)
Mutual labels:  arm

Aphid

🚫 This project is no longer maintained.

A lightweight MQTT 3.1.1 client written in pure Swift 3

Build Status

Setup your project to use Aphid

  1. On Linux, install OpenSSL (if not already installed):

    sudo apt-get install openssl
  2. In Package.swift, add Aphid as a dependency for your project.

    import PackageDescription
    
    let package = Package(
        name: "ProjectName",
        dependencies: [
            .Package(url: "https://github.com/IBM-Swift/Aphid.git", majorVersion: 0)
        ])
  3. Create XCode project to build library (Optional)

    $ swift package generate-xcodeproj
  4. In Sources/main.swift, import the Aphid module.

    import Aphid
  5. Note: build locally with:

    swift build

Examples

Example usage can be found in our AphidClient Repository

MQTT brokers

There are several MQTT brokers you can use remotely such as the IBM IoT Foundation on Bluemix.

If testing locally, we recommend the Mosquitto broker:

- macOS: `brew install mosquitto`
- Ubuntu Linux: `apt-get install mosquitto`

Installing and using on the Raspberry Pi 3:

Applications that need to run on an ARM system must be compiled with the Swift compiler targetting the ARM platform. Here are some articles to get you started.

License

Copyright 2017 IBM

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].