From ae33d22e54140c53c4e523b0fefa9d505461321f Mon Sep 17 00:00:00 2001 From: Andy Liu Date: Sat, 30 Nov 2024 17:41:47 +0700 Subject: [PATCH] Fully compatible with the official Swift toolchain Signed-off-by: Andy Liu --- Examples/ADT7410/ReadTemp/Package.swift | 6 +++--- Examples/ADXL345/I2CReadAcceleration/Package.swift | 6 +++--- Examples/ADXL345/SPIReadAcceleration/Package.swift | 6 +++--- Examples/AHTx0/ReadValues/Package.swift | 6 +++--- Examples/AMG88xx/ReadTemperatures/Package.swift | 6 +++--- Examples/AMG88xx/ThermalImage/Package.swift | 6 +++--- Examples/APDS9960/ColorDetection/Package.swift | 6 +++--- Examples/APDS9960/GestureDetection/Package.swift | 6 +++--- Examples/APDS9960/ProximityDetection/Package.swift | 6 +++--- Examples/AS7341/ReadAll/Package.swift | 6 +++--- Examples/AS7341/ReadOneByOne/Package.swift | 6 +++--- Examples/BH1750/ReadLux/Package.swift | 6 +++--- Examples/BME680/I2CReadValues/Package.swift | 6 +++--- Examples/BME680/SPIReadValues/Package.swift | 6 +++--- Examples/BMI160/I2CReadMotion/Package.swift | 6 +++--- Examples/BMI160/SPIReadMotion/Package.swift | 6 +++--- Examples/BMP280/I2CReadValues/Package.swift | 6 +++--- Examples/BMP280/SPIReadValues/Package.swift | 6 +++--- Examples/DHTxx/ReadValues/Package.swift | 6 +++--- Examples/DS3231/Alarm/Package.swift | 6 +++--- Examples/DS3231/ReadTime/Package.swift | 6 +++--- Examples/DS3231/Timer/Package.swift | 6 +++--- Examples/ESP32ATClient/HttpGet/Package.swift | 6 +++--- Examples/ESP32ATClient/HttpPost/Package.swift | 6 +++--- Examples/ESP32ATClient/JoinWiFi/Package.swift | 6 +++--- Examples/ESP32ATClient/Prepare/Package.swift | 6 +++--- Examples/HCSR04/ReadDistance/Package.swift | 6 +++--- Examples/HTU21D/ReadHumiture/Package.swift | 6 +++--- Examples/IS31FL3731/BreathingLED/Package.swift | 6 +++--- Examples/IS31FL3731/DrawPixels/Package.swift | 6 +++--- Examples/IS31FL3731/Frame/TODO_Package.swift | 6 +++--- Examples/IS31FL3731/ScrollingText/TODO_Package.swift | 6 +++--- Examples/LCD1602/DisplayText/Package.swift | 6 +++--- Examples/LIS3DH/I2CReadAcceleration/Package.swift | 6 +++--- Examples/LIS3DH/SPIReadAcceleration/Package.swift | 6 +++--- Examples/LTR390/ReadLight/Package.swift | 6 +++--- Examples/MAG3110/ReadHeading/Package.swift | 6 +++--- Examples/MAX6675/ReadTemperature/Package.swift | 6 +++--- Examples/MCP4725/SetOutput/Package.swift | 6 +++--- Examples/MCP9808/ReadTemperature/Package.swift | 6 +++--- Examples/MLX90393/I2CReadXYZ/Package.swift | 6 +++--- Examples/MLX90393/SPIReadXYZ/Package.swift | 6 +++--- Examples/MPL3115A2/ReadValues/Package.swift | 6 +++--- Examples/MPR121/CheckTouched/Package.swift | 6 +++--- Examples/MPU6050/ReadValues/Package.swift | 6 +++--- Examples/MS5611/I2CReadPressure/Package.swift | 6 +++--- Examples/MS5611/SPIReadPressure/Package.swift | 6 +++--- Examples/PCF8523/ReadTime/Package.swift | 6 +++--- Examples/PCF8523/SecondTimer/Package.swift | 6 +++--- Examples/PCF8523/Timer/Package.swift | 6 +++--- Examples/PCF8563/ReadTime/Package.swift | 6 +++--- Examples/SGP30/ReadAirQuality/Package.swift | 6 +++--- Examples/SHT3x/ReadValues/Package.swift | 6 +++--- Examples/ST7789/DrawPixels/Package.swift | 6 +++--- Examples/ST7789/DrawUsingMadDisplay/TODO_Package.swift | 8 ++++---- Examples/TCS34725/ReadColors/Package.swift | 6 +++--- Examples/TMP102/MonitorTemp/Package.swift | 6 +++--- Examples/TMP102/ReadTemp/Package.swift | 6 +++--- Examples/TSL2591/ReadLight/Package.swift | 6 +++--- Examples/VEML6040/ReadLight/Package.swift | 6 +++--- Examples/VEML6070/ReadUVRadiation/Package.swift | 6 +++--- Examples/VEML7700/ReadLux/Package.swift | 6 +++--- Examples/VL53L0x/ReadRange/Package.swift | 6 +++--- Examples/VL53L0x/SimpleTheremin/Package.swift | 6 +++--- Package.swift | 2 +- README.md | 8 ++++---- 66 files changed, 198 insertions(+), 198 deletions(-) diff --git a/Examples/ADT7410/ReadTemp/Package.swift b/Examples/ADT7410/ReadTemp/Package.swift index ffff4be..c329867 100644 --- a/Examples/ADT7410/ReadTemp/Package.swift +++ b/Examples/ADT7410/ReadTemp/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadTemp", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/ADXL345/I2CReadAcceleration/Package.swift b/Examples/ADXL345/I2CReadAcceleration/Package.swift index a8ef396..718f3c7 100644 --- a/Examples/ADXL345/I2CReadAcceleration/Package.swift +++ b/Examples/ADXL345/I2CReadAcceleration/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "I2CReadAcceleration", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/ADXL345/SPIReadAcceleration/Package.swift b/Examples/ADXL345/SPIReadAcceleration/Package.swift index 696cdb2..4d1f7c6 100644 --- a/Examples/ADXL345/SPIReadAcceleration/Package.swift +++ b/Examples/ADXL345/SPIReadAcceleration/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SPIReadAcceleration", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/AHTx0/ReadValues/Package.swift b/Examples/AHTx0/ReadValues/Package.swift index 5f1b3c9..ddb0b2d 100644 --- a/Examples/AHTx0/ReadValues/Package.swift +++ b/Examples/AHTx0/ReadValues/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadValues", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/AMG88xx/ReadTemperatures/Package.swift b/Examples/AMG88xx/ReadTemperatures/Package.swift index 833517b..0f9661d 100644 --- a/Examples/AMG88xx/ReadTemperatures/Package.swift +++ b/Examples/AMG88xx/ReadTemperatures/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadTemperatures", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/AMG88xx/ThermalImage/Package.swift b/Examples/AMG88xx/ThermalImage/Package.swift index 3a9881d..52656d4 100644 --- a/Examples/AMG88xx/ThermalImage/Package.swift +++ b/Examples/AMG88xx/ThermalImage/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ThermalImage", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/APDS9960/ColorDetection/Package.swift b/Examples/APDS9960/ColorDetection/Package.swift index 12fd6a8..c040d05 100644 --- a/Examples/APDS9960/ColorDetection/Package.swift +++ b/Examples/APDS9960/ColorDetection/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ColorDetection", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/APDS9960/GestureDetection/Package.swift b/Examples/APDS9960/GestureDetection/Package.swift index 90337a3..00e6971 100644 --- a/Examples/APDS9960/GestureDetection/Package.swift +++ b/Examples/APDS9960/GestureDetection/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "GestureDetection", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/APDS9960/ProximityDetection/Package.swift b/Examples/APDS9960/ProximityDetection/Package.swift index f46b243..8ac9e2a 100644 --- a/Examples/APDS9960/ProximityDetection/Package.swift +++ b/Examples/APDS9960/ProximityDetection/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ProximityDetection", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/AS7341/ReadAll/Package.swift b/Examples/AS7341/ReadAll/Package.swift index 9d9d921..5ee914b 100644 --- a/Examples/AS7341/ReadAll/Package.swift +++ b/Examples/AS7341/ReadAll/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadAll", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/AS7341/ReadOneByOne/Package.swift b/Examples/AS7341/ReadOneByOne/Package.swift index 74c115a..1e7f242 100644 --- a/Examples/AS7341/ReadOneByOne/Package.swift +++ b/Examples/AS7341/ReadOneByOne/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadOneByOne", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/BH1750/ReadLux/Package.swift b/Examples/BH1750/ReadLux/Package.swift index bad0006..4413a96 100644 --- a/Examples/BH1750/ReadLux/Package.swift +++ b/Examples/BH1750/ReadLux/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadLux", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/BME680/I2CReadValues/Package.swift b/Examples/BME680/I2CReadValues/Package.swift index 68d25e6..700dcbe 100644 --- a/Examples/BME680/I2CReadValues/Package.swift +++ b/Examples/BME680/I2CReadValues/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "I2CReadValues", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/BME680/SPIReadValues/Package.swift b/Examples/BME680/SPIReadValues/Package.swift index 5d1625f..bd5e442 100644 --- a/Examples/BME680/SPIReadValues/Package.swift +++ b/Examples/BME680/SPIReadValues/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SPIReadValues", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/BMI160/I2CReadMotion/Package.swift b/Examples/BMI160/I2CReadMotion/Package.swift index a898c30..1b017df 100644 --- a/Examples/BMI160/I2CReadMotion/Package.swift +++ b/Examples/BMI160/I2CReadMotion/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "I2CReadMotion", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/BMI160/SPIReadMotion/Package.swift b/Examples/BMI160/SPIReadMotion/Package.swift index 6a7a0e9..8908b3d 100644 --- a/Examples/BMI160/SPIReadMotion/Package.swift +++ b/Examples/BMI160/SPIReadMotion/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SPIReadMotion", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/BMP280/I2CReadValues/Package.swift b/Examples/BMP280/I2CReadValues/Package.swift index 435aefd..a5e5a89 100644 --- a/Examples/BMP280/I2CReadValues/Package.swift +++ b/Examples/BMP280/I2CReadValues/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "I2CReadValues", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/BMP280/SPIReadValues/Package.swift b/Examples/BMP280/SPIReadValues/Package.swift index d655f8e..00fc849 100644 --- a/Examples/BMP280/SPIReadValues/Package.swift +++ b/Examples/BMP280/SPIReadValues/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SPIReadValues", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/DHTxx/ReadValues/Package.swift b/Examples/DHTxx/ReadValues/Package.swift index 5f7633d..6c8abfd 100644 --- a/Examples/DHTxx/ReadValues/Package.swift +++ b/Examples/DHTxx/ReadValues/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadValues", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/DS3231/Alarm/Package.swift b/Examples/DS3231/Alarm/Package.swift index 81e77dc..f78ae34 100644 --- a/Examples/DS3231/Alarm/Package.swift +++ b/Examples/DS3231/Alarm/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "Alarm", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/DS3231/ReadTime/Package.swift b/Examples/DS3231/ReadTime/Package.swift index 72b75c9..14109b2 100644 --- a/Examples/DS3231/ReadTime/Package.swift +++ b/Examples/DS3231/ReadTime/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadTime", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/DS3231/Timer/Package.swift b/Examples/DS3231/Timer/Package.swift index 1be9c1e..32e1593 100644 --- a/Examples/DS3231/Timer/Package.swift +++ b/Examples/DS3231/Timer/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "Timer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/ESP32ATClient/HttpGet/Package.swift b/Examples/ESP32ATClient/HttpGet/Package.swift index f105803..f888f3a 100644 --- a/Examples/ESP32ATClient/HttpGet/Package.swift +++ b/Examples/ESP32ATClient/HttpGet/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "HttpGet", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - //.package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + //.package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), .package(path: "../../.."), ], targets: [ diff --git a/Examples/ESP32ATClient/HttpPost/Package.swift b/Examples/ESP32ATClient/HttpPost/Package.swift index a791ac5..2313721 100644 --- a/Examples/ESP32ATClient/HttpPost/Package.swift +++ b/Examples/ESP32ATClient/HttpPost/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "HttpPost", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - //.package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + //.package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), .package(path: "../../.."), ], targets: [ diff --git a/Examples/ESP32ATClient/JoinWiFi/Package.swift b/Examples/ESP32ATClient/JoinWiFi/Package.swift index 81eddaf..9433958 100644 --- a/Examples/ESP32ATClient/JoinWiFi/Package.swift +++ b/Examples/ESP32ATClient/JoinWiFi/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "JoinWiFi", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - // .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + // .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), .package(path: "../../.."), ], targets: [ diff --git a/Examples/ESP32ATClient/Prepare/Package.swift b/Examples/ESP32ATClient/Prepare/Package.swift index 7c8fd37..d1adf4a 100644 --- a/Examples/ESP32ATClient/Prepare/Package.swift +++ b/Examples/ESP32ATClient/Prepare/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "Prepare", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - //.package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + //.package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), .package(path: "../../.."), ], targets: [ diff --git a/Examples/HCSR04/ReadDistance/Package.swift b/Examples/HCSR04/ReadDistance/Package.swift index 1aaaebb..e02a532 100644 --- a/Examples/HCSR04/ReadDistance/Package.swift +++ b/Examples/HCSR04/ReadDistance/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadDistance", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/HTU21D/ReadHumiture/Package.swift b/Examples/HTU21D/ReadHumiture/Package.swift index fd32fd1..4aadc47 100644 --- a/Examples/HTU21D/ReadHumiture/Package.swift +++ b/Examples/HTU21D/ReadHumiture/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadHumiture", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/IS31FL3731/BreathingLED/Package.swift b/Examples/IS31FL3731/BreathingLED/Package.swift index 4101b97..eeaa47e 100644 --- a/Examples/IS31FL3731/BreathingLED/Package.swift +++ b/Examples/IS31FL3731/BreathingLED/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "BreathingLED", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/IS31FL3731/DrawPixels/Package.swift b/Examples/IS31FL3731/DrawPixels/Package.swift index 04540f2..533dc05 100644 --- a/Examples/IS31FL3731/DrawPixels/Package.swift +++ b/Examples/IS31FL3731/DrawPixels/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "DrawPixels", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/IS31FL3731/Frame/TODO_Package.swift b/Examples/IS31FL3731/Frame/TODO_Package.swift index 4b10b0f..bb6bb3d 100644 --- a/Examples/IS31FL3731/Frame/TODO_Package.swift +++ b/Examples/IS31FL3731/Frame/TODO_Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "Frame", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/IS31FL3731/ScrollingText/TODO_Package.swift b/Examples/IS31FL3731/ScrollingText/TODO_Package.swift index 52cf531..b23aaf8 100644 --- a/Examples/IS31FL3731/ScrollingText/TODO_Package.swift +++ b/Examples/IS31FL3731/ScrollingText/TODO_Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ScrollingText", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/LCD1602/DisplayText/Package.swift b/Examples/LCD1602/DisplayText/Package.swift index fdb0c12..ea0d659 100644 --- a/Examples/LCD1602/DisplayText/Package.swift +++ b/Examples/LCD1602/DisplayText/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "DisplayText", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/LIS3DH/I2CReadAcceleration/Package.swift b/Examples/LIS3DH/I2CReadAcceleration/Package.swift index fb0ccbe..bd6a9e8 100644 --- a/Examples/LIS3DH/I2CReadAcceleration/Package.swift +++ b/Examples/LIS3DH/I2CReadAcceleration/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "I2CReadAcceleration", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/LIS3DH/SPIReadAcceleration/Package.swift b/Examples/LIS3DH/SPIReadAcceleration/Package.swift index ff46e5b..f190a57 100644 --- a/Examples/LIS3DH/SPIReadAcceleration/Package.swift +++ b/Examples/LIS3DH/SPIReadAcceleration/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SPIReadAcceleration", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/LTR390/ReadLight/Package.swift b/Examples/LTR390/ReadLight/Package.swift index 607d699..9354dbc 100644 --- a/Examples/LTR390/ReadLight/Package.swift +++ b/Examples/LTR390/ReadLight/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadLight", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MAG3110/ReadHeading/Package.swift b/Examples/MAG3110/ReadHeading/Package.swift index c0aaae7..bbe9aa0 100644 --- a/Examples/MAG3110/ReadHeading/Package.swift +++ b/Examples/MAG3110/ReadHeading/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadHeading", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MAX6675/ReadTemperature/Package.swift b/Examples/MAX6675/ReadTemperature/Package.swift index 97954ef..8d60b06 100644 --- a/Examples/MAX6675/ReadTemperature/Package.swift +++ b/Examples/MAX6675/ReadTemperature/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadTemperature", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MCP4725/SetOutput/Package.swift b/Examples/MCP4725/SetOutput/Package.swift index 6d14054..33d42d7 100644 --- a/Examples/MCP4725/SetOutput/Package.swift +++ b/Examples/MCP4725/SetOutput/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SetOutput", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MCP9808/ReadTemperature/Package.swift b/Examples/MCP9808/ReadTemperature/Package.swift index fb002f6..0331f5a 100644 --- a/Examples/MCP9808/ReadTemperature/Package.swift +++ b/Examples/MCP9808/ReadTemperature/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadTemperature", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MLX90393/I2CReadXYZ/Package.swift b/Examples/MLX90393/I2CReadXYZ/Package.swift index 6c395b6..c2adc5f 100644 --- a/Examples/MLX90393/I2CReadXYZ/Package.swift +++ b/Examples/MLX90393/I2CReadXYZ/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "I2CReadXYZ", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MLX90393/SPIReadXYZ/Package.swift b/Examples/MLX90393/SPIReadXYZ/Package.swift index e3dd436..5a3491e 100644 --- a/Examples/MLX90393/SPIReadXYZ/Package.swift +++ b/Examples/MLX90393/SPIReadXYZ/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SPIReadXYZ", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MPL3115A2/ReadValues/Package.swift b/Examples/MPL3115A2/ReadValues/Package.swift index cf23f55..af76b5b 100644 --- a/Examples/MPL3115A2/ReadValues/Package.swift +++ b/Examples/MPL3115A2/ReadValues/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadValues", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MPR121/CheckTouched/Package.swift b/Examples/MPR121/CheckTouched/Package.swift index 8e46e25..2821527 100644 --- a/Examples/MPR121/CheckTouched/Package.swift +++ b/Examples/MPR121/CheckTouched/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "CheckTouched", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MPU6050/ReadValues/Package.swift b/Examples/MPU6050/ReadValues/Package.swift index 47a8576..39760e7 100644 --- a/Examples/MPU6050/ReadValues/Package.swift +++ b/Examples/MPU6050/ReadValues/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadValues", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MS5611/I2CReadPressure/Package.swift b/Examples/MS5611/I2CReadPressure/Package.swift index 4ab4a1e..0c398ab 100644 --- a/Examples/MS5611/I2CReadPressure/Package.swift +++ b/Examples/MS5611/I2CReadPressure/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "I2CReadPressure", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MS5611/SPIReadPressure/Package.swift b/Examples/MS5611/SPIReadPressure/Package.swift index 73122ae..a4d1cdf 100644 --- a/Examples/MS5611/SPIReadPressure/Package.swift +++ b/Examples/MS5611/SPIReadPressure/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SPIReadPressure", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/PCF8523/ReadTime/Package.swift b/Examples/PCF8523/ReadTime/Package.swift index 384a0d6..64f605a 100644 --- a/Examples/PCF8523/ReadTime/Package.swift +++ b/Examples/PCF8523/ReadTime/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadTime", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/PCF8523/SecondTimer/Package.swift b/Examples/PCF8523/SecondTimer/Package.swift index ca51635..c49e2ef 100644 --- a/Examples/PCF8523/SecondTimer/Package.swift +++ b/Examples/PCF8523/SecondTimer/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SecondTimer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/PCF8523/Timer/Package.swift b/Examples/PCF8523/Timer/Package.swift index 4cc3063..f657b81 100644 --- a/Examples/PCF8523/Timer/Package.swift +++ b/Examples/PCF8523/Timer/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "Timer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/PCF8563/ReadTime/Package.swift b/Examples/PCF8563/ReadTime/Package.swift index ea21564..1051289 100644 --- a/Examples/PCF8563/ReadTime/Package.swift +++ b/Examples/PCF8563/ReadTime/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadTime", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/SGP30/ReadAirQuality/Package.swift b/Examples/SGP30/ReadAirQuality/Package.swift index 552a5a3..371b6b0 100644 --- a/Examples/SGP30/ReadAirQuality/Package.swift +++ b/Examples/SGP30/ReadAirQuality/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadAirQuality", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/SHT3x/ReadValues/Package.swift b/Examples/SHT3x/ReadValues/Package.swift index a2bc5f2..9ce9230 100644 --- a/Examples/SHT3x/ReadValues/Package.swift +++ b/Examples/SHT3x/ReadValues/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadValues", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/ST7789/DrawPixels/Package.swift b/Examples/ST7789/DrawPixels/Package.swift index b650977..02df45f 100644 --- a/Examples/ST7789/DrawPixels/Package.swift +++ b/Examples/ST7789/DrawPixels/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "DrawPixels", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/ST7789/DrawUsingMadDisplay/TODO_Package.swift b/Examples/ST7789/DrawUsingMadDisplay/TODO_Package.swift index 223fc2a..98e22a6 100644 --- a/Examples/ST7789/DrawUsingMadDisplay/TODO_Package.swift +++ b/Examples/ST7789/DrawUsingMadDisplay/TODO_Package.swift @@ -5,10 +5,10 @@ let package = Package( name: "DrawUsingMadDisplay", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDisplay.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDisplay.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/TCS34725/ReadColors/Package.swift b/Examples/TCS34725/ReadColors/Package.swift index dd02316..0728673 100644 --- a/Examples/TCS34725/ReadColors/Package.swift +++ b/Examples/TCS34725/ReadColors/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadColors", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/TMP102/MonitorTemp/Package.swift b/Examples/TMP102/MonitorTemp/Package.swift index 48c36f6..aa4d6e5 100644 --- a/Examples/TMP102/MonitorTemp/Package.swift +++ b/Examples/TMP102/MonitorTemp/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "MonitorTemp", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/TMP102/ReadTemp/Package.swift b/Examples/TMP102/ReadTemp/Package.swift index 91fcdc9..e63a0df 100644 --- a/Examples/TMP102/ReadTemp/Package.swift +++ b/Examples/TMP102/ReadTemp/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadTemp", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ diff --git a/Examples/TSL2591/ReadLight/Package.swift b/Examples/TSL2591/ReadLight/Package.swift index 68707bb..199e3a2 100644 --- a/Examples/TSL2591/ReadLight/Package.swift +++ b/Examples/TSL2591/ReadLight/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadLight", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/VEML6040/ReadLight/Package.swift b/Examples/VEML6040/ReadLight/Package.swift index b4ac1c8..cc527c1 100644 --- a/Examples/VEML6040/ReadLight/Package.swift +++ b/Examples/VEML6040/ReadLight/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadLight", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/VEML6070/ReadUVRadiation/Package.swift b/Examples/VEML6070/ReadUVRadiation/Package.swift index f4d768c..131c3a3 100644 --- a/Examples/VEML6070/ReadUVRadiation/Package.swift +++ b/Examples/VEML6070/ReadUVRadiation/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadUVRadiation", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/VEML7700/ReadLux/Package.swift b/Examples/VEML7700/ReadLux/Package.swift index c7e46ed..fea89e7 100644 --- a/Examples/VEML7700/ReadLux/Package.swift +++ b/Examples/VEML7700/ReadLux/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadLux", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/VL53L0x/ReadRange/Package.swift b/Examples/VL53L0x/ReadRange/Package.swift index d52fad1..f5607bb 100644 --- a/Examples/VL53L0x/ReadRange/Package.swift +++ b/Examples/VL53L0x/ReadRange/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "ReadRange", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/VL53L0x/SimpleTheremin/Package.swift b/Examples/VL53L0x/SimpleTheremin/Package.swift index a46369a..5ca77a5 100644 --- a/Examples/VL53L0x/SimpleTheremin/Package.swift +++ b/Examples/VL53L0x/SimpleTheremin/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "SimpleTheremin", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Package.swift b/Package.swift index fd72765..b94b777 100644 --- a/Package.swift +++ b/Package.swift @@ -95,7 +95,7 @@ let package = Package( dependencies: [ // Dependencies declare other packages that this package depends on. // .package(url: /* package url */, from: "1.0.0"), - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), //.package(url: "https://github.com/apple/swift-numerics", from: "1.0.0"), ], targets: [ diff --git a/README.md b/README.md index 911b6ae..e7affaf 100644 --- a/README.md +++ b/README.md @@ -247,9 +247,9 @@ let package = Package( name: "ReadSHT3x", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -413,7 +413,7 @@ let package = Package( dependencies: [ // Dependencies declare other packages that this package depends on. // .package(url: /* package url */, from: "1.0.0"), - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), .package(url: "https://github.com/apple/swift-numerics", from: "1.0.0") ], targets: [